-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathexample_configs.py
107 lines (107 loc) · 2.72 KB
/
example_configs.py
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
dries = {
"name": "Dries",
"version": "1.0.0",
"description": "Giotto, a pipeline for integrative analysis and visualization of single-cell spatial transcriptomic data",
"public": True,
"datasets": [
{
"uid": 'dries-2019',
"name": 'Dries 2019',
"files": [
{
"type": "cells",
"fileType": "cells.json",
"url": "https://s3.amazonaws.com/vitessce-data/0.0.31/master_release/dries/dries.cells.json"
},
{
"type": "cell-sets",
"fileType": "cell-sets.json",
"url": "https://s3.amazonaws.com/vitessce-data/0.0.31/master_release/dries/dries.cell-sets.json"
}
]
}
],
"initStrategy": "auto",
"coordinationSpace": {
"embeddingType": {
"TSNE": 't-SNE',
"UMAP": 'UMAP',
},
"embeddingZoom": {
"TSNE": 3,
"UMAP": 3,
},
"spatialZoom": {
"A": -4.4,
},
"spatialTargetX": {
"A": 3800,
},
"spatialTargetY": {
"A": -900,
},
},
"layout": [
{
"component": "description",
"props": {
"description": "Giotto, a pipeline for integrative analysis and visualization of single-cell spatial transcriptomic data"
},
"x": 9,
"y": 0,
"w": 3,
"h": 4
},
{
"component": "cellSets",
"x": 9,
"y": 4,
"w": 3,
"h": 4
},
{
"component": "cellSetSizes",
"x": 5,
"y": 4,
"w": 4,
"h": 4
},
{
"component": "scatterplot",
"coordinationScopes": {
"embeddingType": 'TSNE',
"embeddingZoom": 'TSNE'
},
"x": 0,
"y": 2,
"w": 5,
"h": 4
},
{
"component": "spatial",
"props": {
"cellRadius": 50
},
"coordinationScopes": {
"spatialZoom": 'A',
"spatialTargetX": 'A',
"spatialTargetY": 'A'
},
"x": 5,
"y": 0,
"w": 4,
"h": 4
},
{
"component": "scatterplot",
"coordinationScopes": {
"embeddingType": 'UMAP',
"embeddingZoom": 'UMAP'
},
"x": 0,
"y": 0,
"w": 5,
"h": 4
}
]
}