File tree Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Expand file tree Collapse file tree 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 31
31
from urllib .request import urlretrieve # noqa: E402
32
32
33
33
notebooks_url = "https://github.com/huidongchen/simba_tutorials/raw/main/"
34
- notebooks = [
34
+ notebooks_v1_0 = [
35
35
"rna_10xpmbc_all_genes.ipynb" ,
36
36
"atac_buenrostro2018_peaks_and_sequences.ipynb" ,
37
37
"multiome_shareseq.ipynb" ,
40
40
"rna_human_pancreas.ipynb" ,
41
41
"multiome_10xpmbc10k_integration.ipynb" ,
42
42
]
43
- for nb in notebooks :
43
+ notebooks_v1_1 = [
44
+ "rna_10x_mouse_brain_1p3M.ipynb" ,
45
+ ]
46
+ for nb in notebooks_v1_0 :
44
47
try :
45
- urlretrieve (notebooks_url + nb , nb )
48
+ urlretrieve (notebooks_url + "v1.0/" + nb , nb )
46
49
except Exception :
47
50
pass
48
51
52
+ for nb in notebooks_v1_1 :
53
+ try :
54
+ urlretrieve (notebooks_url + "v1.1/" + nb , nb )
55
+ except Exception :
56
+ pass
49
57
50
58
# -- General configuration ---------------------------------------------------
51
59
Original file line number Diff line number Diff line change 1
- |Docs | |CI | |Install with conda | |Last updated | |Downloads | |License | | Codecov |
1
+ |CI | |Docs | |Install with conda | |Codecov | | Last updated | |Downloads | |License |
2
2
3
3
**SIMBA **: **SI **\ ngle-cell e\ **MB **\ edding **A **\ long with features
4
4
========================================================================
@@ -43,6 +43,7 @@ SIMBA is a method to embed cells along with their defining features such as gene
43
43
rna_mouse_atlas
44
44
rna_human_pancreas
45
45
multiome_10xpmbc10k_integration
46
+ rna_10x_mouse_brain_1p3M
46
47
47
48
48
49
.. |Docs | image :: https://readthedocs.org/projects/simba-bio/badge/?version=latest
You can’t perform that action at this time.
0 commit comments