File size: 4,232 Bytes
4e85d1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
06ae853
fcb8379
06ae853
4e85d1e
 
 
 
 
 
 
 
 
 
 
4b29966
4e85d1e
 
 
 
 
 
9fa0f37
 
 
4b29966
9fa0f37
4e85d1e
 
 
 
 
 
 
 
b0b0491
 
 
4e85d1e
 
 
 
 
 
f72c6c0
c225125
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
tags:
- biology
- rna
- gene expression
pretty_name: YolkSac Human
size_categories:
- 10K<n<100K
license: cc0-1.0
---
## Human fetal yolk sac scRNA-seq data

The yolk sac (YS) generates the first blood and immune cells and provides nutritional and metabolic support to the developing embryo. Our current understanding of its functions derives from pivotal studies in model systems, and insights from human studies are limited. Single-cell genomics technologies have facilitated the interrogation of human developmental tissues at unprecedented resolution. Atlases of blood and immune cells from multiple organs have been greatly enhanced by focused, time-resolved analyses of specific tissues.

### Project information

- **Source:** Human fetal yolk sac scRNA-seq data
  - Female donor, Carnegie Stage 17
- **Sample ID:**
  - F158 for Haniffa Lab
  - 16099 for HDBR
- **Raw file:**
  - [Array Express (E-MTAB-11673)](https://www.ebi.ac.uk/biostudies/arrayexpress/studies/E-MTAB-11673)
  - [17_04_24_YolkSacRaw_F158_WE_annots.h5ad](https://www.ebi.ac.uk/biostudies/files/E-MTAB-11673/17_04_24_YolkSacRaw_F158_WE_annots.h5ad)
- **Species**
  - Homo sapiens (Human)


### Assay details

- **Assay:** 10X 5' transcription profiling
- **Number of Cells:** 31,680
- **Number of Genes:** 37,318
### Load the data
Load the dataset using Huggingface's optimized library and create the AnnData object:

```
from datasets import load_dataset
from scipy.sparse import lil_matrix
ds = load_dataset("helical-ai/yolksac_human",trust_remote_code=True, split="train[:65%]",download_mode="reuse_cache_if_exists")
```

```
observation_columns = [obs for obs in list(ds.features.keys()) if not obs == 'raw_counts']
obs_data = pd.DataFrame(ds.select_columns(observation_columns).data.to_pandas(),columns=observation_columns)
lil = lil_matrix((len(ds),ds[0]['size']))
lil.data = np.array(ds['raw_counts'],dtype="object")
lil.rows = np.array(ds['rows'],dtype="object")
ann_data = ad.AnnData(lil.tocsr(),obs=obs_data)
ann_data.var_names = ds.features['raw_counts'].id.split(",")
```

### Cell type annotation 

There are three levels of cell annotation you can access in the data:

| Annotation Granularity Level | Cell Type Names                                                                                                                                    |
|------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Level 1 `(LVL1)`                  | ERYTHROID, LYMPHOID, MK, MYELOID, PROGENITOR, STROMA                                                                                                       |
| Level 2 `(LVL2)`                  | B_CELL, CMP, DC, ELP, ENDODERM, ENDOTHELIUM, EOSINOPHIL_BASOPHIL, ERYTHROID, FIBROBLAST, HSPC, ILC, LMPP, MACROPHAGE, MAST_CELL, MEMP, MESOTHELIUM, MK, MONO MAC DC2, MONO MAC PRE DC2, MONOCYTE, MONOCYTE_MACROPHAGE, MONOCYTE_YS_1, MOP, NEUTROPHIL_PRECURSOR, NK, PDC PRECURSOR, PROMONOCYTE, SMOOTH_MUSCLE  |
| Level 3 `(LVL3)`                  | CMP, DC2_CYCLING, DEF_HSPC_1, DEF_HSPC_2, EARLY_ERYTHROID, ELP, ENDODERM, ENDOTHELIUM_AEC, ENDOTHELIUM_PROLIF_AEC, ENDOTHELIUM_PROLIF_SINUSOIDAL_EC, ENDOTHELIUM_SINUSOIDAL, ENDOTHELIUM_VWF, EO_BASO_MAST_PRECURSOR, ERYTHROID, FIBROBLAST, HE, HSPC_1, HSPC_2, ILC_PRECURSOR, IMMATURE_ENDOTHELIUM, LMPP, LYMPHOID B LIN, MAC DC2, MACROPHAGE_IRON_RECYCLING, MACROPHAGE_KUPFFER_LIKE, MACROPHAGE_LYVE1_HIGH, MACROPHAGE_MICROGLIA, MACROPHAGE_PRE_MAC, MACROPHAGE_PROLIFERATING, MAST_CELL, MEMP, MESOTHELIUM, MID_ERYTHROID, MK, MONO MAC DC2, MONO MAC PRE DC2, MONOCYTE_0, MONOCYTE_1, MONOCYTE_MACROPHAGE, MOP, NEUTROPHIL_PRECURSOR, NK, PDC PRECURSOR, PRE DC2, PRIM_HSPC_1, PRIM_HSPC_2, PROMONOCYTE, SMOOTH_MUSCLE |


### License information

Data was published in EMBL-EBI (Array Express), CC0. 

This dataset was used in [Goh et al, Science, 2023](https://www.science.org/doi/10.1126/science.add7564) and the article is licensed under a [BY 4.0](https://creativecommons.org/licenses/by/4.0/) International license.


### Note:
This dataset contains one donor only, and it will be updated in the near future to contain more donors!