matq007 commited on
Commit
f3ed7d6
·
unverified ·
1 Parent(s): 0e1164c

release: models v1.1

Browse files
Files changed (2) hide show
  1. constants.py +1 -1
  2. pages/4_Download.py +11 -2
constants.py CHANGED
@@ -1,6 +1,6 @@
1
  # Constants
2
 
3
- MODELS = {"HUMAN": ["v1.0.1", "main"], "MOUSE": ["v1.0.1", "main"]}
4
 
5
  DEFAULT_DR = "X_draw_graph_fa"
6
  DEFAULT_META = "stage"
 
1
  # Constants
2
 
3
+ MODELS = {"HUMAN": ["v1.1", "v1.0.1", "main"], "MOUSE": ["v1.1", "v1.0.1", "main"]}
4
 
5
  DEFAULT_DR = "X_draw_graph_fa"
6
  DEFAULT_META = "stage"
pages/4_Download.py CHANGED
@@ -13,7 +13,7 @@ st.markdown(
13
 
14
  - Downloading datasets: [nf-core/fetchngs (revision 1.10.0)](https://github.com/nf-core/fetchngs)
15
  - Aligning datasets: [brickmanlab/scrnaseq (revision: feature/smartseq)](https://github.com/brickmanlab/scrnaseq)
16
- - **Ensembl Genomes (models < v1.0.1)**
17
  - Mouse: GRCm38 v102
18
  - Human: GRCh38 v110
19
 
@@ -27,7 +27,7 @@ st.markdown(
27
 
28
  Raw counts are stored in `layers['counts']` and normalized counts are stored in `.X`.
29
 
30
- - models < v1.0.1
31
  - [mouse](https://zenodo.org/records/13749348/files/01_mouse_reprocessed.h5ad)
32
  - [human](https://zenodo.org/records/13749348/files/32_human_adata.h5ad)
33
 
@@ -47,3 +47,12 @@ for specie in MODELS:
47
  text += f"[{version}]({url}), "
48
  text = text[:-2] + "\n"
49
  st.markdown(text)
 
 
 
 
 
 
 
 
 
 
13
 
14
  - Downloading datasets: [nf-core/fetchngs (revision 1.10.0)](https://github.com/nf-core/fetchngs)
15
  - Aligning datasets: [brickmanlab/scrnaseq (revision: feature/smartseq)](https://github.com/brickmanlab/scrnaseq)
16
+ - **Ensembl Genomes (models <= v1.1)**
17
  - Mouse: GRCm38 v102
18
  - Human: GRCh38 v110
19
 
 
27
 
28
  Raw counts are stored in `layers['counts']` and normalized counts are stored in `.X`.
29
 
30
+ - **models <= v1.1**
31
  - [mouse](https://zenodo.org/records/13749348/files/01_mouse_reprocessed.h5ad)
32
  - [human](https://zenodo.org/records/13749348/files/32_human_adata.h5ad)
33
 
 
47
  text += f"[{version}]({url}), "
48
  text = text[:-2] + "\n"
49
  st.markdown(text)
50
+
51
+ st.markdown(
52
+ """
53
+ ## 5. Credit
54
+
55
+ > [!TIP]
56
+ > Proks, M., Salehin, N. & Brickman, J.M. Deep learning-based models for preimplantation mouse and human embryos based on single-cell RNA sequencing. Nat Methods 22, 207–216 (2025). https://doi.org/10.1038/s41592-024-02511-3
57
+ """
58
+ )