Skip to content

Commit 0f94529

Browse files
committed
update tutorials
1 parent c3123c9 commit 0f94529

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

docs/source/conf.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
from urllib.request import urlretrieve # noqa: E402
3232

3333
notebooks_url = "https://github.com/huidongchen/simba_tutorials/raw/main/"
34-
notebooks = [
34+
notebooks_v1_0 = [
3535
"rna_10xpmbc_all_genes.ipynb",
3636
"atac_buenrostro2018_peaks_and_sequences.ipynb",
3737
"multiome_shareseq.ipynb",
@@ -40,12 +40,20 @@
4040
"rna_human_pancreas.ipynb",
4141
"multiome_10xpmbc10k_integration.ipynb",
4242
]
43-
for nb in notebooks:
43+
notebooks_v1_1 = [
44+
"rna_10x_mouse_brain_1p3M.ipynb",
45+
]
46+
for nb in notebooks_v1_0:
4447
try:
45-
urlretrieve(notebooks_url + nb, nb)
48+
urlretrieve(notebooks_url + "v1.0/" + nb, nb)
4649
except Exception:
4750
pass
4851

52+
for nb in notebooks_v1_1:
53+
try:
54+
urlretrieve(notebooks_url + "v1.1/" + nb, nb)
55+
except Exception:
56+
pass
4957

5058
# -- General configuration ---------------------------------------------------
5159

docs/source/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
|Docs| |CI| |Install with conda| |Last updated| |Downloads| |License| |Codecov|
1+
|CI| |Docs| |Install with conda| |Codecov| |Last updated| |Downloads| |License|
22

33
**SIMBA**: **SI**\ ngle-cell e\ **MB**\ edding **A**\ long with features
44
========================================================================
@@ -43,6 +43,7 @@ SIMBA is a method to embed cells along with their defining features such as gene
4343
rna_mouse_atlas
4444
rna_human_pancreas
4545
multiome_10xpmbc10k_integration
46+
rna_10x_mouse_brain_1p3M
4647

4748

4849
.. |Docs| image:: https://readthedocs.org/projects/simba-bio/badge/?version=latest

0 commit comments

Comments
 (0)