Skip to content

Commit 6b6061d

Browse files
committed
Update
1 parent 98363e5 commit 6b6061d

File tree

2 files changed

+110
-1
lines changed

2 files changed

+110
-1
lines changed
Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
dries = {
2+
"name": "Dries",
3+
"version": "1.0.0",
4+
"description": "Giotto, a pipeline for integrative analysis and visualization of single-cell spatial transcriptomic data",
5+
"public": True,
6+
"datasets": [
7+
{
8+
"uid": 'dries-2019',
9+
"name": 'Dries 2019',
10+
"files": [
11+
{
12+
"type": "cells",
13+
"fileType": "cells.json",
14+
"url": "https://s3.amazonaws.com/vitessce-data/0.0.31/master_release/dries/dries.cells.json"
15+
},
16+
{
17+
"type": "cell-sets",
18+
"fileType": "cell-sets.json",
19+
"url": "https://s3.amazonaws.com/vitessce-data/0.0.31/master_release/dries/dries.cell-sets.json"
20+
}
21+
]
22+
}
23+
],
24+
"initStrategy": "auto",
25+
"coordinationSpace": {
26+
"embeddingType": {
27+
"TSNE": 't-SNE',
28+
"UMAP": 'UMAP',
29+
},
30+
"embeddingZoom": {
31+
"TSNE": 3,
32+
"UMAP": 3,
33+
},
34+
"spatialZoom": {
35+
"A": -4.4,
36+
},
37+
"spatialTargetX": {
38+
"A": 3800,
39+
},
40+
"spatialTargetY": {
41+
"A": -900,
42+
},
43+
},
44+
"layout": [
45+
{
46+
"component": "description",
47+
"props": {
48+
"description": "Giotto, a pipeline for integrative analysis and visualization of single-cell spatial transcriptomic data"
49+
},
50+
"x": 9,
51+
"y": 0,
52+
"w": 3,
53+
"h": 4
54+
},
55+
{
56+
"component": "cellSets",
57+
"x": 9,
58+
"y": 4,
59+
"w": 3,
60+
"h": 4
61+
},
62+
{
63+
"component": "cellSetSizes",
64+
"x": 5,
65+
"y": 4,
66+
"w": 4,
67+
"h": 4
68+
},
69+
{
70+
"component": "scatterplot",
71+
"coordinationScopes": {
72+
"embeddingType": 'TSNE',
73+
"embeddingZoom": 'TSNE'
74+
},
75+
"x": 0,
76+
"y": 2,
77+
"w": 5,
78+
"h": 4
79+
},
80+
{
81+
"component": "spatial",
82+
"props": {
83+
"cellRadius": 50
84+
},
85+
"coordinationScopes": {
86+
"spatialZoom": 'A',
87+
"spatialTargetX": 'A',
88+
"spatialTargetY": 'A'
89+
},
90+
"x": 5,
91+
"y": 0,
92+
"w": 4,
93+
"h": 4
94+
},
95+
{
96+
"component": "scatterplot",
97+
"coordinationScopes": {
98+
"embeddingType": 'UMAP',
99+
"embeddingZoom": 'UMAP'
100+
},
101+
"x": 0,
102+
"y": 0,
103+
"w": 5,
104+
"h": 4
105+
}
106+
]
107+
}

scripts/convert_mo_to_ipynb.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ cd docs/notebooks
33
for file in *.mo.py; do
44
echo "Converting $file to ${file%.mo.py}.ipynb"
55
marimo export ipynb "$file" --output "__ipynb__/${file%.mo.py}.ipynb" --force
6-
done
6+
done
7+
8+
cp example_configs.py "__ipynb__/example_configs.py"

0 commit comments

Comments
 (0)