vfbquery 0.5.0__py3-none-any.whl → 0.5.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- test/readme_parser.py +29 -33
- test/term_info_queries_test.py +49 -34
- test/test_default_caching.py +86 -85
- test/test_examples_code.py +7 -0
- test/test_examples_diff.py +95 -172
- test/test_neurons_part_here.py +12 -13
- test/test_query_performance.py +3 -7
- vfbquery/__init__.py +47 -35
- vfbquery/cached_functions.py +772 -131
- vfbquery/owlery_client.py +1 -1
- vfbquery/solr_cache_integration.py +34 -30
- vfbquery/solr_result_cache.py +262 -99
- vfbquery/term_info_queries.py +1 -1
- vfbquery/vfb_queries.py +69 -20
- vfbquery-0.5.2.dist-info/METADATA +2806 -0
- {vfbquery-0.5.0.dist-info → vfbquery-0.5.2.dist-info}/RECORD +19 -18
- {vfbquery-0.5.0.dist-info → vfbquery-0.5.2.dist-info}/WHEEL +1 -1
- vfbquery-0.5.0.dist-info/METADATA +0 -2273
- {vfbquery-0.5.0.dist-info → vfbquery-0.5.2.dist-info}/LICENSE +0 -0
- {vfbquery-0.5.0.dist-info → vfbquery-0.5.2.dist-info}/top_level.txt +0 -0
|
@@ -1,2273 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: vfbquery
|
|
3
|
-
Version: 0.5.0
|
|
4
|
-
Summary: Wrapper for querying VirtualFlyBrain knowledge graph.
|
|
5
|
-
Home-page: https://github.com/VirtualFlyBrain/VFBquery
|
|
6
|
-
Author: VirtualFlyBrain
|
|
7
|
-
License: GPL-3.0 License
|
|
8
|
-
Project-URL: Bug Reports, https://github.com/VirtualFlyBrain/VFBquery/issues
|
|
9
|
-
Project-URL: Source, https://github.com/VirtualFlyBrain/VFBquery
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
12
|
-
Classifier: Operating System :: OS Independent
|
|
13
|
-
Requires-Python: >=3.7
|
|
14
|
-
Description-Content-Type: text/markdown
|
|
15
|
-
License-File: LICENSE
|
|
16
|
-
Requires-Dist: pysolr
|
|
17
|
-
Requires-Dist: pandas
|
|
18
|
-
Requires-Dist: marshmallow
|
|
19
|
-
Requires-Dist: vfb-connect
|
|
20
|
-
|
|
21
|
-
# VFBquery
|
|
22
|
-
|
|
23
|
-
to setup requirements:
|
|
24
|
-
```bash
|
|
25
|
-
pip install --upgrade vfbquery
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
To get term info for a term:
|
|
29
|
-
get_term_info(ID)
|
|
30
|
-
|
|
31
|
-
e.g.
|
|
32
|
-
```python
|
|
33
|
-
import vfbquery as vfb
|
|
34
|
-
```
|
|
35
|
-
Class example:
|
|
36
|
-
```python
|
|
37
|
-
vfb.get_term_info('FBbt_00003748', force_refresh=True)
|
|
38
|
-
```
|
|
39
|
-
```json
|
|
40
|
-
{
|
|
41
|
-
"Name": "medulla",
|
|
42
|
-
"Id": "FBbt_00003748",
|
|
43
|
-
"SuperTypes": [
|
|
44
|
-
"Entity",
|
|
45
|
-
"Class",
|
|
46
|
-
"Adult",
|
|
47
|
-
"Anatomy",
|
|
48
|
-
"Nervous_system",
|
|
49
|
-
"Synaptic_neuropil",
|
|
50
|
-
"Synaptic_neuropil_domain",
|
|
51
|
-
"Visual_system"
|
|
52
|
-
],
|
|
53
|
-
"Meta": {
|
|
54
|
-
"Name": "[medulla](FBbt_00003748)",
|
|
55
|
-
"Description": "The second optic neuropil, sandwiched between the lamina and the lobula complex. It is divided into 10 layers: 1-6 make up the outer (distal) medulla, the seventh (or serpentine) layer exhibits a distinct architecture and layers 8-10 make up the inner (proximal) medulla (Ito et al., 2014).",
|
|
56
|
-
"Comment": "Nern et al. (2025) - doi:10.1038/s41586-025-08746-0 say distal is M1-5 and M6-7 is central medulla.",
|
|
57
|
-
"Types": "[anterior ectoderm derivative](FBbt_00025991); [synaptic neuropil domain](FBbt_00040007)",
|
|
58
|
-
"Relationships": "[develops from](RO_0002202): [medulla anlage](FBbt_00001935); [is part of](BFO_0000050): [adult optic lobe](FBbt_00003701)"
|
|
59
|
-
},
|
|
60
|
-
"Tags": [
|
|
61
|
-
"Adult",
|
|
62
|
-
"Nervous_system",
|
|
63
|
-
"Synaptic_neuropil_domain",
|
|
64
|
-
"Visual_system"
|
|
65
|
-
],
|
|
66
|
-
"Queries": [
|
|
67
|
-
{
|
|
68
|
-
"query": "ListAllAvailableImages",
|
|
69
|
-
"label": "List all available images of medulla",
|
|
70
|
-
"function": "get_instances",
|
|
71
|
-
"takes": {
|
|
72
|
-
"short_form": {
|
|
73
|
-
"$and": [
|
|
74
|
-
"Class",
|
|
75
|
-
"Anatomy"
|
|
76
|
-
]
|
|
77
|
-
},
|
|
78
|
-
"default": {
|
|
79
|
-
"short_form": "FBbt_00003748"
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
"preview": 5,
|
|
83
|
-
"preview_columns": [
|
|
84
|
-
"id",
|
|
85
|
-
"label",
|
|
86
|
-
"tags",
|
|
87
|
-
"thumbnail"
|
|
88
|
-
],
|
|
89
|
-
"preview_results": {
|
|
90
|
-
"headers": {
|
|
91
|
-
"id": {
|
|
92
|
-
"title": "Add",
|
|
93
|
-
"type": "selection_id",
|
|
94
|
-
"order": -1
|
|
95
|
-
},
|
|
96
|
-
"label": {
|
|
97
|
-
"title": "Name",
|
|
98
|
-
"type": "markdown",
|
|
99
|
-
"order": 0,
|
|
100
|
-
"sort": {
|
|
101
|
-
"0": "Asc"
|
|
102
|
-
}
|
|
103
|
-
},
|
|
104
|
-
"tags": {
|
|
105
|
-
"title": "Gross Types",
|
|
106
|
-
"type": "tags",
|
|
107
|
-
"order": 3
|
|
108
|
-
},
|
|
109
|
-
"thumbnail": {
|
|
110
|
-
"title": "Thumbnail",
|
|
111
|
-
"type": "markdown",
|
|
112
|
-
"order": 9
|
|
113
|
-
}
|
|
114
|
-
},
|
|
115
|
-
"rows": [
|
|
116
|
-
{
|
|
117
|
-
"id": "VFB_00102107",
|
|
118
|
-
"label": "[ME on JRC2018Unisex adult brain](VFB_00102107)",
|
|
119
|
-
"tags": "Nervous_system|Adult|Visual_system|Synaptic_neuropil_domain",
|
|
120
|
-
"thumbnail": "[](VFB_00101567,VFB_00102107)"
|
|
121
|
-
},
|
|
122
|
-
{
|
|
123
|
-
"id": "VFB_00101385",
|
|
124
|
-
"label": "[ME(R) on JRC_FlyEM_Hemibrain](VFB_00101385)",
|
|
125
|
-
"tags": "Nervous_system|Adult|Visual_system|Synaptic_neuropil_domain",
|
|
126
|
-
"thumbnail": "[ on JRC_FlyEM_Hemibrain aligned to JRCFIB2018Fum')](VFB_00101384,VFB_00101385)"
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
"id": "VFB_00030810",
|
|
130
|
-
"label": "[medulla on adult brain template Ito2014](VFB_00030810)",
|
|
131
|
-
"tags": "Nervous_system|Visual_system|Adult|Synaptic_neuropil_domain",
|
|
132
|
-
"thumbnail": "[](VFB_00030786,VFB_00030810)"
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
"id": "VFB_00030624",
|
|
136
|
-
"label": "[medulla on adult brain template JFRC2](VFB_00030624)",
|
|
137
|
-
"tags": "Nervous_system|Visual_system|Adult|Synaptic_neuropil_domain",
|
|
138
|
-
"thumbnail": "[](VFB_00017894,VFB_00030624)"
|
|
139
|
-
}
|
|
140
|
-
]
|
|
141
|
-
},
|
|
142
|
-
"output_format": "table",
|
|
143
|
-
"count": 4
|
|
144
|
-
},
|
|
145
|
-
{
|
|
146
|
-
"query": "NeuronsPartHere",
|
|
147
|
-
"label": "Neurons with some part in medulla",
|
|
148
|
-
"function": "get_neurons_with_part_in",
|
|
149
|
-
"takes": {
|
|
150
|
-
"short_form": {
|
|
151
|
-
"$and": [
|
|
152
|
-
"Class",
|
|
153
|
-
"Anatomy"
|
|
154
|
-
]
|
|
155
|
-
},
|
|
156
|
-
"default": {
|
|
157
|
-
"short_form": "FBbt_00003748"
|
|
158
|
-
}
|
|
159
|
-
},
|
|
160
|
-
"preview": 5,
|
|
161
|
-
"preview_columns": [
|
|
162
|
-
"id",
|
|
163
|
-
"label",
|
|
164
|
-
"tags",
|
|
165
|
-
"thumbnail"
|
|
166
|
-
],
|
|
167
|
-
"preview_results": {
|
|
168
|
-
"headers": {
|
|
169
|
-
"id": {
|
|
170
|
-
"title": "Add",
|
|
171
|
-
"type": "selection_id",
|
|
172
|
-
"order": -1
|
|
173
|
-
},
|
|
174
|
-
"label": {
|
|
175
|
-
"title": "Name",
|
|
176
|
-
"type": "markdown",
|
|
177
|
-
"order": 0,
|
|
178
|
-
"sort": {
|
|
179
|
-
"0": "Asc"
|
|
180
|
-
}
|
|
181
|
-
},
|
|
182
|
-
"tags": {
|
|
183
|
-
"title": "Tags",
|
|
184
|
-
"type": "tags",
|
|
185
|
-
"order": 2
|
|
186
|
-
},
|
|
187
|
-
"thumbnail": {
|
|
188
|
-
"title": "Thumbnail",
|
|
189
|
-
"type": "markdown",
|
|
190
|
-
"order": 9
|
|
191
|
-
}
|
|
192
|
-
},
|
|
193
|
-
"rows": [
|
|
194
|
-
{
|
|
195
|
-
"id": "FBbt_20011362",
|
|
196
|
-
"label": "[Cm1](FBbt_20011362)",
|
|
197
|
-
"tags": "Adult|Cholinergic|Nervous_system|Visual_system",
|
|
198
|
-
"thumbnail": "[](FBbt_20011362)"
|
|
199
|
-
},
|
|
200
|
-
{
|
|
201
|
-
"id": "FBbt_20011363",
|
|
202
|
-
"label": "[Cm10](FBbt_20011363)",
|
|
203
|
-
"tags": "Adult|GABAergic|Nervous_system|Visual_system",
|
|
204
|
-
"thumbnail": "[](FBbt_20011363)"
|
|
205
|
-
},
|
|
206
|
-
{
|
|
207
|
-
"id": "FBbt_20011364",
|
|
208
|
-
"label": "[Cm15](FBbt_20011364)",
|
|
209
|
-
"tags": "Adult|GABAergic|Nervous_system|Visual_system",
|
|
210
|
-
"thumbnail": "[](FBbt_20011364)"
|
|
211
|
-
},
|
|
212
|
-
{
|
|
213
|
-
"id": "FBbt_20011365",
|
|
214
|
-
"label": "[Cm16](FBbt_20011365)",
|
|
215
|
-
"tags": "Adult|Glutamatergic|Nervous_system|Visual_system",
|
|
216
|
-
"thumbnail": "[](FBbt_20011365)"
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
"id": "FBbt_20011366",
|
|
220
|
-
"label": "[Cm17](FBbt_20011366)",
|
|
221
|
-
"tags": "Adult|GABAergic|Nervous_system|Visual_system",
|
|
222
|
-
"thumbnail": "[](FBbt_20011366)"
|
|
223
|
-
}
|
|
224
|
-
]
|
|
225
|
-
},
|
|
226
|
-
"output_format": "table",
|
|
227
|
-
"count": 472
|
|
228
|
-
},
|
|
229
|
-
{
|
|
230
|
-
"query": "NeuronsSynaptic",
|
|
231
|
-
"label": "Neurons with synaptic terminals in medulla",
|
|
232
|
-
"function": "get_neurons_with_synapses_in",
|
|
233
|
-
"takes": {
|
|
234
|
-
"short_form": {
|
|
235
|
-
"$and": [
|
|
236
|
-
"Class",
|
|
237
|
-
"Anatomy"
|
|
238
|
-
]
|
|
239
|
-
},
|
|
240
|
-
"default": {
|
|
241
|
-
"short_form": "FBbt_00003748"
|
|
242
|
-
}
|
|
243
|
-
},
|
|
244
|
-
"preview": 5,
|
|
245
|
-
"preview_columns": [
|
|
246
|
-
"id",
|
|
247
|
-
"label",
|
|
248
|
-
"tags",
|
|
249
|
-
"thumbnail"
|
|
250
|
-
],
|
|
251
|
-
"preview_results": {
|
|
252
|
-
"headers": {
|
|
253
|
-
"id": {
|
|
254
|
-
"title": "Add",
|
|
255
|
-
"type": "selection_id",
|
|
256
|
-
"order": -1
|
|
257
|
-
},
|
|
258
|
-
"label": {
|
|
259
|
-
"title": "Name",
|
|
260
|
-
"type": "markdown",
|
|
261
|
-
"order": 0,
|
|
262
|
-
"sort": {
|
|
263
|
-
"0": "Asc"
|
|
264
|
-
}
|
|
265
|
-
},
|
|
266
|
-
"tags": {
|
|
267
|
-
"title": "Tags",
|
|
268
|
-
"type": "tags",
|
|
269
|
-
"order": 2
|
|
270
|
-
},
|
|
271
|
-
"thumbnail": {
|
|
272
|
-
"title": "Thumbnail",
|
|
273
|
-
"type": "markdown",
|
|
274
|
-
"order": 9
|
|
275
|
-
}
|
|
276
|
-
},
|
|
277
|
-
"rows": [
|
|
278
|
-
{
|
|
279
|
-
"id": "FBbt_00053385",
|
|
280
|
-
"label": "[medulla intrinsic neuron](FBbt_00053385)",
|
|
281
|
-
"tags": "Adult|Nervous_system|Neuron|Visual_system",
|
|
282
|
-
"thumbnail": "[](FBbt_00053385)"
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
"id": "FBbt_00110033",
|
|
286
|
-
"label": "[medulla intrinsic neuron vGlutMinew1a](FBbt_00110033)",
|
|
287
|
-
"tags": "Adult|Glutamatergic|Nervous_system|Visual_system",
|
|
288
|
-
"thumbnail": ""
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
"id": "FBbt_00110142",
|
|
292
|
-
"label": "[OA-AL2i2](FBbt_00110142)",
|
|
293
|
-
"tags": "Adult|Nervous_system|Octopaminergic",
|
|
294
|
-
"thumbnail": "[](FBbt_00110142)"
|
|
295
|
-
},
|
|
296
|
-
{
|
|
297
|
-
"id": "FBbt_00110143",
|
|
298
|
-
"label": "[OA-AL2i3](FBbt_00110143)",
|
|
299
|
-
"tags": "Adult|Nervous_system|Octopaminergic|Visual_system",
|
|
300
|
-
"thumbnail": "[](FBbt_00110143)"
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
"id": "FBbt_00110144",
|
|
304
|
-
"label": "[OA-AL2i4](FBbt_00110144)",
|
|
305
|
-
"tags": "Adult|Nervous_system|Octopaminergic",
|
|
306
|
-
"thumbnail": "[ aligned to JRC2018U')](FBbt_00110144)"
|
|
307
|
-
}
|
|
308
|
-
]
|
|
309
|
-
},
|
|
310
|
-
"output_format": "table",
|
|
311
|
-
"count": 465
|
|
312
|
-
},
|
|
313
|
-
{
|
|
314
|
-
"query": "NeuronsPresynapticHere",
|
|
315
|
-
"label": "Neurons with presynaptic terminals in medulla",
|
|
316
|
-
"function": "get_neurons_with_presynaptic_terminals_in",
|
|
317
|
-
"takes": {
|
|
318
|
-
"short_form": {
|
|
319
|
-
"$and": [
|
|
320
|
-
"Class",
|
|
321
|
-
"Anatomy"
|
|
322
|
-
]
|
|
323
|
-
},
|
|
324
|
-
"default": {
|
|
325
|
-
"short_form": "FBbt_00003748"
|
|
326
|
-
}
|
|
327
|
-
},
|
|
328
|
-
"preview": 5,
|
|
329
|
-
"preview_columns": [
|
|
330
|
-
"id",
|
|
331
|
-
"label",
|
|
332
|
-
"tags",
|
|
333
|
-
"thumbnail"
|
|
334
|
-
],
|
|
335
|
-
"preview_results": {
|
|
336
|
-
"headers": {
|
|
337
|
-
"id": {
|
|
338
|
-
"title": "Add",
|
|
339
|
-
"type": "selection_id",
|
|
340
|
-
"order": -1
|
|
341
|
-
},
|
|
342
|
-
"label": {
|
|
343
|
-
"title": "Name",
|
|
344
|
-
"type": "markdown",
|
|
345
|
-
"order": 0,
|
|
346
|
-
"sort": {
|
|
347
|
-
"0": "Asc"
|
|
348
|
-
}
|
|
349
|
-
},
|
|
350
|
-
"tags": {
|
|
351
|
-
"title": "Tags",
|
|
352
|
-
"type": "tags",
|
|
353
|
-
"order": 2
|
|
354
|
-
},
|
|
355
|
-
"thumbnail": {
|
|
356
|
-
"title": "Thumbnail",
|
|
357
|
-
"type": "markdown",
|
|
358
|
-
"order": 9
|
|
359
|
-
}
|
|
360
|
-
},
|
|
361
|
-
"rows": [
|
|
362
|
-
{
|
|
363
|
-
"id": "FBbt_02000003",
|
|
364
|
-
"label": "[yR8](FBbt_02000003)",
|
|
365
|
-
"tags": "Adult|Cholinergic|Histaminergic|Nervous_system|Sensory_neuron|Visual_system",
|
|
366
|
-
"thumbnail": "[ aligned to JRC2018U')](FBbt_02000003)"
|
|
367
|
-
},
|
|
368
|
-
{
|
|
369
|
-
"id": "FBbt_20007253",
|
|
370
|
-
"label": "[CB3838](FBbt_20007253)",
|
|
371
|
-
"tags": "Adult|GABAergic|Nervous_system|Visual_system",
|
|
372
|
-
"thumbnail": "[](FBbt_20007253)"
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
"id": "FBbt_20007256",
|
|
376
|
-
"label": "[Cm31a](FBbt_20007256)",
|
|
377
|
-
"tags": "Adult|GABAergic|Nervous_system|Visual_system",
|
|
378
|
-
"thumbnail": "[](FBbt_20007256)"
|
|
379
|
-
},
|
|
380
|
-
{
|
|
381
|
-
"id": "FBbt_20007257",
|
|
382
|
-
"label": "[Mi19](FBbt_20007257)",
|
|
383
|
-
"tags": "Adult|Nervous_system|Neuron|Visual_system",
|
|
384
|
-
"thumbnail": "[](FBbt_20007257)"
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
"id": "FBbt_20007258",
|
|
388
|
-
"label": "[Cm35](FBbt_20007258)",
|
|
389
|
-
"tags": "Adult|GABAergic|Nervous_system|Visual_system",
|
|
390
|
-
"thumbnail": "[](FBbt_20007258)"
|
|
391
|
-
}
|
|
392
|
-
]
|
|
393
|
-
},
|
|
394
|
-
"output_format": "table",
|
|
395
|
-
"count": 253
|
|
396
|
-
},
|
|
397
|
-
{
|
|
398
|
-
"query": "NeuronsPostsynapticHere",
|
|
399
|
-
"label": "Neurons with postsynaptic terminals in medulla",
|
|
400
|
-
"function": "get_neurons_with_postsynaptic_terminals_in",
|
|
401
|
-
"takes": {
|
|
402
|
-
"short_form": {
|
|
403
|
-
"$and": [
|
|
404
|
-
"Class",
|
|
405
|
-
"Anatomy"
|
|
406
|
-
]
|
|
407
|
-
},
|
|
408
|
-
"default": {
|
|
409
|
-
"short_form": "FBbt_00003748"
|
|
410
|
-
}
|
|
411
|
-
},
|
|
412
|
-
"preview": 5,
|
|
413
|
-
"preview_columns": [
|
|
414
|
-
"id",
|
|
415
|
-
"label",
|
|
416
|
-
"tags",
|
|
417
|
-
"thumbnail"
|
|
418
|
-
],
|
|
419
|
-
"preview_results": {
|
|
420
|
-
"headers": {
|
|
421
|
-
"id": {
|
|
422
|
-
"title": "Add",
|
|
423
|
-
"type": "selection_id",
|
|
424
|
-
"order": -1
|
|
425
|
-
},
|
|
426
|
-
"label": {
|
|
427
|
-
"title": "Name",
|
|
428
|
-
"type": "markdown",
|
|
429
|
-
"order": 0,
|
|
430
|
-
"sort": {
|
|
431
|
-
"0": "Asc"
|
|
432
|
-
}
|
|
433
|
-
},
|
|
434
|
-
"tags": {
|
|
435
|
-
"title": "Tags",
|
|
436
|
-
"type": "tags",
|
|
437
|
-
"order": 2
|
|
438
|
-
},
|
|
439
|
-
"thumbnail": {
|
|
440
|
-
"title": "Thumbnail",
|
|
441
|
-
"type": "markdown",
|
|
442
|
-
"order": 9
|
|
443
|
-
}
|
|
444
|
-
},
|
|
445
|
-
"rows": [
|
|
446
|
-
{
|
|
447
|
-
"id": "FBbt_20007253",
|
|
448
|
-
"label": "[CB3838](FBbt_20007253)",
|
|
449
|
-
"tags": "Adult|GABAergic|Nervous_system|Visual_system",
|
|
450
|
-
"thumbnail": "[](FBbt_20007253)"
|
|
451
|
-
},
|
|
452
|
-
{
|
|
453
|
-
"id": "FBbt_20007256",
|
|
454
|
-
"label": "[Cm31a](FBbt_20007256)",
|
|
455
|
-
"tags": "Adult|GABAergic|Nervous_system|Visual_system",
|
|
456
|
-
"thumbnail": "[](FBbt_20007256)"
|
|
457
|
-
},
|
|
458
|
-
{
|
|
459
|
-
"id": "FBbt_20007257",
|
|
460
|
-
"label": "[Mi19](FBbt_20007257)",
|
|
461
|
-
"tags": "Adult|Nervous_system|Neuron|Visual_system",
|
|
462
|
-
"thumbnail": "[](FBbt_20007257)"
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
"id": "FBbt_20007258",
|
|
466
|
-
"label": "[Cm35](FBbt_20007258)",
|
|
467
|
-
"tags": "Adult|GABAergic|Nervous_system|Visual_system",
|
|
468
|
-
"thumbnail": "[](FBbt_20007258)"
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
"id": "FBbt_20007259",
|
|
472
|
-
"label": "[Cm32](FBbt_20007259)",
|
|
473
|
-
"tags": "Adult|GABAergic|Nervous_system|Visual_system",
|
|
474
|
-
"thumbnail": "[](FBbt_20007259)"
|
|
475
|
-
}
|
|
476
|
-
]
|
|
477
|
-
},
|
|
478
|
-
"output_format": "table",
|
|
479
|
-
"count": 331
|
|
480
|
-
},
|
|
481
|
-
{
|
|
482
|
-
"query": "PartsOf",
|
|
483
|
-
"label": "Parts of medulla",
|
|
484
|
-
"function": "get_parts_of",
|
|
485
|
-
"takes": {
|
|
486
|
-
"short_form": {
|
|
487
|
-
"$and": [
|
|
488
|
-
"Class"
|
|
489
|
-
]
|
|
490
|
-
},
|
|
491
|
-
"default": {
|
|
492
|
-
"short_form": "FBbt_00003748"
|
|
493
|
-
}
|
|
494
|
-
},
|
|
495
|
-
"preview": 5,
|
|
496
|
-
"preview_columns": [
|
|
497
|
-
"id",
|
|
498
|
-
"label",
|
|
499
|
-
"tags",
|
|
500
|
-
"thumbnail"
|
|
501
|
-
],
|
|
502
|
-
"preview_results": {
|
|
503
|
-
"headers": {
|
|
504
|
-
"id": {
|
|
505
|
-
"title": "Add",
|
|
506
|
-
"type": "selection_id",
|
|
507
|
-
"order": -1
|
|
508
|
-
},
|
|
509
|
-
"label": {
|
|
510
|
-
"title": "Name",
|
|
511
|
-
"type": "markdown",
|
|
512
|
-
"order": 0,
|
|
513
|
-
"sort": {
|
|
514
|
-
"0": "Asc"
|
|
515
|
-
}
|
|
516
|
-
},
|
|
517
|
-
"tags": {
|
|
518
|
-
"title": "Tags",
|
|
519
|
-
"type": "tags",
|
|
520
|
-
"order": 2
|
|
521
|
-
},
|
|
522
|
-
"thumbnail": {
|
|
523
|
-
"title": "Thumbnail",
|
|
524
|
-
"type": "markdown",
|
|
525
|
-
"order": 9
|
|
526
|
-
}
|
|
527
|
-
},
|
|
528
|
-
"rows": [
|
|
529
|
-
{
|
|
530
|
-
"id": "FBbt_00003750",
|
|
531
|
-
"label": "[medulla layer M1](FBbt_00003750)",
|
|
532
|
-
"tags": "Adult|Nervous_system|Synaptic_neuropil_subdomain|Visual_system",
|
|
533
|
-
"thumbnail": ""
|
|
534
|
-
},
|
|
535
|
-
{
|
|
536
|
-
"id": "FBbt_00003753",
|
|
537
|
-
"label": "[medulla layer M4](FBbt_00003753)",
|
|
538
|
-
"tags": "Adult|Nervous_system|Synaptic_neuropil_subdomain|Visual_system",
|
|
539
|
-
"thumbnail": ""
|
|
540
|
-
},
|
|
541
|
-
{
|
|
542
|
-
"id": "FBbt_00003754",
|
|
543
|
-
"label": "[medulla layer M5](FBbt_00003754)",
|
|
544
|
-
"tags": "Adult|Nervous_system|Synaptic_neuropil_subdomain|Visual_system",
|
|
545
|
-
"thumbnail": ""
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
"id": "FBbt_00003758",
|
|
549
|
-
"label": "[medulla layer M8](FBbt_00003758)",
|
|
550
|
-
"tags": "Adult|Nervous_system|Synaptic_neuropil_subdomain|Visual_system",
|
|
551
|
-
"thumbnail": ""
|
|
552
|
-
},
|
|
553
|
-
{
|
|
554
|
-
"id": "FBbt_00003759",
|
|
555
|
-
"label": "[medulla layer M9](FBbt_00003759)",
|
|
556
|
-
"tags": "Adult|Nervous_system|Synaptic_neuropil_subdomain|Visual_system",
|
|
557
|
-
"thumbnail": ""
|
|
558
|
-
}
|
|
559
|
-
]
|
|
560
|
-
},
|
|
561
|
-
"output_format": "table",
|
|
562
|
-
"count": 28
|
|
563
|
-
},
|
|
564
|
-
{
|
|
565
|
-
"query": "SubclassesOf",
|
|
566
|
-
"label": "Subclasses of medulla",
|
|
567
|
-
"function": "get_subclasses_of",
|
|
568
|
-
"takes": {
|
|
569
|
-
"short_form": {
|
|
570
|
-
"$and": [
|
|
571
|
-
"Class"
|
|
572
|
-
]
|
|
573
|
-
},
|
|
574
|
-
"default": {
|
|
575
|
-
"short_form": "FBbt_00003748"
|
|
576
|
-
}
|
|
577
|
-
},
|
|
578
|
-
"preview": 5,
|
|
579
|
-
"preview_columns": [
|
|
580
|
-
"id",
|
|
581
|
-
"label",
|
|
582
|
-
"tags",
|
|
583
|
-
"thumbnail"
|
|
584
|
-
],
|
|
585
|
-
"preview_results": {
|
|
586
|
-
"headers": {
|
|
587
|
-
"id": {
|
|
588
|
-
"title": "Add",
|
|
589
|
-
"type": "selection_id",
|
|
590
|
-
"order": -1
|
|
591
|
-
},
|
|
592
|
-
"label": {
|
|
593
|
-
"title": "Name",
|
|
594
|
-
"type": "markdown",
|
|
595
|
-
"order": 0,
|
|
596
|
-
"sort": {
|
|
597
|
-
"0": "Asc"
|
|
598
|
-
}
|
|
599
|
-
},
|
|
600
|
-
"tags": {
|
|
601
|
-
"title": "Tags",
|
|
602
|
-
"type": "tags",
|
|
603
|
-
"order": 2
|
|
604
|
-
},
|
|
605
|
-
"thumbnail": {
|
|
606
|
-
"title": "Thumbnail",
|
|
607
|
-
"type": "markdown",
|
|
608
|
-
"order": 9
|
|
609
|
-
}
|
|
610
|
-
}
|
|
611
|
-
},
|
|
612
|
-
"output_format": "table",
|
|
613
|
-
"count": 0
|
|
614
|
-
},
|
|
615
|
-
{
|
|
616
|
-
"query": "TractsNervesInnervatingHere",
|
|
617
|
-
"label": "Tracts/nerves innervating medulla",
|
|
618
|
-
"function": "get_tracts_nerves_innervating_here",
|
|
619
|
-
"takes": {
|
|
620
|
-
"short_form": {
|
|
621
|
-
"$or": [
|
|
622
|
-
{
|
|
623
|
-
"$and": [
|
|
624
|
-
"Class",
|
|
625
|
-
"Synaptic_neuropil"
|
|
626
|
-
]
|
|
627
|
-
},
|
|
628
|
-
{
|
|
629
|
-
"$and": [
|
|
630
|
-
"Class",
|
|
631
|
-
"Synaptic_neuropil_domain"
|
|
632
|
-
]
|
|
633
|
-
}
|
|
634
|
-
]
|
|
635
|
-
},
|
|
636
|
-
"default": {
|
|
637
|
-
"short_form": "FBbt_00003748"
|
|
638
|
-
}
|
|
639
|
-
},
|
|
640
|
-
"preview": 5,
|
|
641
|
-
"preview_columns": [
|
|
642
|
-
"id",
|
|
643
|
-
"label",
|
|
644
|
-
"tags",
|
|
645
|
-
"thumbnail"
|
|
646
|
-
],
|
|
647
|
-
"preview_results": {
|
|
648
|
-
"headers": {
|
|
649
|
-
"id": {
|
|
650
|
-
"title": "Add",
|
|
651
|
-
"type": "selection_id",
|
|
652
|
-
"order": -1
|
|
653
|
-
},
|
|
654
|
-
"label": {
|
|
655
|
-
"title": "Name",
|
|
656
|
-
"type": "markdown",
|
|
657
|
-
"order": 0,
|
|
658
|
-
"sort": {
|
|
659
|
-
"0": "Asc"
|
|
660
|
-
}
|
|
661
|
-
},
|
|
662
|
-
"tags": {
|
|
663
|
-
"title": "Tags",
|
|
664
|
-
"type": "tags",
|
|
665
|
-
"order": 2
|
|
666
|
-
},
|
|
667
|
-
"thumbnail": {
|
|
668
|
-
"title": "Thumbnail",
|
|
669
|
-
"type": "markdown",
|
|
670
|
-
"order": 9
|
|
671
|
-
}
|
|
672
|
-
},
|
|
673
|
-
"rows": [
|
|
674
|
-
{
|
|
675
|
-
"id": "FBbt_00003922",
|
|
676
|
-
"label": "[second optic chiasma](FBbt_00003922)",
|
|
677
|
-
"tags": "Adult|Nervous_system|Neuron_projection_bundle|Visual_system",
|
|
678
|
-
"thumbnail": ""
|
|
679
|
-
},
|
|
680
|
-
{
|
|
681
|
-
"id": "FBbt_00005810",
|
|
682
|
-
"label": "[first optic chiasma](FBbt_00005810)",
|
|
683
|
-
"tags": "Adult|Nervous_system|Neuron_projection_bundle|Visual_system",
|
|
684
|
-
"thumbnail": ""
|
|
685
|
-
},
|
|
686
|
-
{
|
|
687
|
-
"id": "FBbt_00007427",
|
|
688
|
-
"label": "[posterior optic commissure](FBbt_00007427)",
|
|
689
|
-
"tags": "Adult|Nervous_system|Neuron_projection_bundle",
|
|
690
|
-
"thumbnail": "[](FBbt_00007427)"
|
|
691
|
-
}
|
|
692
|
-
]
|
|
693
|
-
},
|
|
694
|
-
"output_format": "table",
|
|
695
|
-
"count": 3
|
|
696
|
-
},
|
|
697
|
-
{
|
|
698
|
-
"query": "LineageClonesIn",
|
|
699
|
-
"label": "Lineage clones found in medulla",
|
|
700
|
-
"function": "get_lineage_clones_in",
|
|
701
|
-
"takes": {
|
|
702
|
-
"short_form": {
|
|
703
|
-
"$and": [
|
|
704
|
-
"Class",
|
|
705
|
-
"Synaptic_neuropil"
|
|
706
|
-
]
|
|
707
|
-
},
|
|
708
|
-
"default": {
|
|
709
|
-
"short_form": "FBbt_00003748"
|
|
710
|
-
}
|
|
711
|
-
},
|
|
712
|
-
"preview": 5,
|
|
713
|
-
"preview_columns": [
|
|
714
|
-
"id",
|
|
715
|
-
"label",
|
|
716
|
-
"tags",
|
|
717
|
-
"thumbnail"
|
|
718
|
-
],
|
|
719
|
-
"preview_results": {
|
|
720
|
-
"headers": {
|
|
721
|
-
"id": {
|
|
722
|
-
"title": "Add",
|
|
723
|
-
"type": "selection_id",
|
|
724
|
-
"order": -1
|
|
725
|
-
},
|
|
726
|
-
"label": {
|
|
727
|
-
"title": "Name",
|
|
728
|
-
"type": "markdown",
|
|
729
|
-
"order": 0,
|
|
730
|
-
"sort": {
|
|
731
|
-
"0": "Asc"
|
|
732
|
-
}
|
|
733
|
-
},
|
|
734
|
-
"tags": {
|
|
735
|
-
"title": "Tags",
|
|
736
|
-
"type": "tags",
|
|
737
|
-
"order": 2
|
|
738
|
-
},
|
|
739
|
-
"thumbnail": {
|
|
740
|
-
"title": "Thumbnail",
|
|
741
|
-
"type": "markdown",
|
|
742
|
-
"order": 9
|
|
743
|
-
}
|
|
744
|
-
},
|
|
745
|
-
"rows": [
|
|
746
|
-
{
|
|
747
|
-
"id": "FBbt_00050013",
|
|
748
|
-
"label": "[adult VPNl&d1 lineage clone](FBbt_00050013)",
|
|
749
|
-
"tags": "Adult|Clone",
|
|
750
|
-
"thumbnail": "[](FBbt_00050013)"
|
|
751
|
-
},
|
|
752
|
-
{
|
|
753
|
-
"id": "FBbt_00050019",
|
|
754
|
-
"label": "[adult DM1 lineage clone](FBbt_00050019)",
|
|
755
|
-
"tags": "Adult|Clone|lineage_DPMm1",
|
|
756
|
-
"thumbnail": "[](FBbt_00050019)"
|
|
757
|
-
},
|
|
758
|
-
{
|
|
759
|
-
"id": "FBbt_00050051",
|
|
760
|
-
"label": "[adult VESa2 lineage clone](FBbt_00050051)",
|
|
761
|
-
"tags": "Adult|Clone|lineage_BAlp1",
|
|
762
|
-
"thumbnail": "[](FBbt_00050051)"
|
|
763
|
-
},
|
|
764
|
-
{
|
|
765
|
-
"id": "FBbt_00050167",
|
|
766
|
-
"label": "[adult LALv1 lineage clone](FBbt_00050167)",
|
|
767
|
-
"tags": "Adult|Clone|lineage_BAmv1",
|
|
768
|
-
"thumbnail": "[](FBbt_00050167)"
|
|
769
|
-
},
|
|
770
|
-
{
|
|
771
|
-
"id": "FBbt_00050229",
|
|
772
|
-
"label": "[adult SLPpl1 lineage clone](FBbt_00050229)",
|
|
773
|
-
"tags": "Adult|Clone|lineage_DPLl1",
|
|
774
|
-
"thumbnail": "[](FBbt_00050229)"
|
|
775
|
-
}
|
|
776
|
-
]
|
|
777
|
-
},
|
|
778
|
-
"output_format": "table",
|
|
779
|
-
"count": 7
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
"query": "ImagesNeurons",
|
|
783
|
-
"label": "Images of neurons with some part in medulla",
|
|
784
|
-
"function": "get_images_neurons",
|
|
785
|
-
"takes": {
|
|
786
|
-
"short_form": {
|
|
787
|
-
"$or": [
|
|
788
|
-
{
|
|
789
|
-
"$and": [
|
|
790
|
-
"Class",
|
|
791
|
-
"Synaptic_neuropil"
|
|
792
|
-
]
|
|
793
|
-
},
|
|
794
|
-
{
|
|
795
|
-
"$and": [
|
|
796
|
-
"Class",
|
|
797
|
-
"Synaptic_neuropil_domain"
|
|
798
|
-
]
|
|
799
|
-
}
|
|
800
|
-
]
|
|
801
|
-
},
|
|
802
|
-
"default": {
|
|
803
|
-
"short_form": "FBbt_00003748"
|
|
804
|
-
}
|
|
805
|
-
},
|
|
806
|
-
"preview": 5,
|
|
807
|
-
"preview_columns": [
|
|
808
|
-
"id",
|
|
809
|
-
"label",
|
|
810
|
-
"tags",
|
|
811
|
-
"thumbnail"
|
|
812
|
-
],
|
|
813
|
-
"preview_results": {
|
|
814
|
-
"headers": {
|
|
815
|
-
"id": {
|
|
816
|
-
"title": "Add",
|
|
817
|
-
"type": "selection_id",
|
|
818
|
-
"order": -1
|
|
819
|
-
},
|
|
820
|
-
"label": {
|
|
821
|
-
"title": "Name",
|
|
822
|
-
"type": "markdown",
|
|
823
|
-
"order": 0,
|
|
824
|
-
"sort": {
|
|
825
|
-
"0": "Asc"
|
|
826
|
-
}
|
|
827
|
-
},
|
|
828
|
-
"tags": {
|
|
829
|
-
"title": "Tags",
|
|
830
|
-
"type": "tags",
|
|
831
|
-
"order": 2
|
|
832
|
-
},
|
|
833
|
-
"thumbnail": {
|
|
834
|
-
"title": "Thumbnail",
|
|
835
|
-
"type": "markdown",
|
|
836
|
-
"order": 9
|
|
837
|
-
}
|
|
838
|
-
},
|
|
839
|
-
"rows": [
|
|
840
|
-
{
|
|
841
|
-
"id": "VFB_fw113167",
|
|
842
|
-
"label": "[ME.11974](VFB_fw113167)",
|
|
843
|
-
"tags": "Adult|Glutamatergic|Nervous_system|Visual_system",
|
|
844
|
-
"thumbnail": ""
|
|
845
|
-
},
|
|
846
|
-
{
|
|
847
|
-
"id": "VFB_fw113165",
|
|
848
|
-
"label": "[ME.17216](VFB_fw113165)",
|
|
849
|
-
"tags": "Adult|GABAergic|Nervous_system|Visual_system|secondary_neuron",
|
|
850
|
-
"thumbnail": ""
|
|
851
|
-
},
|
|
852
|
-
{
|
|
853
|
-
"id": "VFB_fw113168",
|
|
854
|
-
"label": "[ME.31287](VFB_fw113168)",
|
|
855
|
-
"tags": "Adult|Glutamatergic|Nervous_system|Visual_system",
|
|
856
|
-
"thumbnail": ""
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
"id": "VFB_fw113166",
|
|
860
|
-
"label": "[ME.4619](VFB_fw113166)",
|
|
861
|
-
"tags": "Adult|Cholinergic|Nervous_system|Visual_system|secondary_neuron",
|
|
862
|
-
"thumbnail": ""
|
|
863
|
-
},
|
|
864
|
-
{
|
|
865
|
-
"id": "VFB_fw113169",
|
|
866
|
-
"label": "[ME.26172](VFB_fw113169)",
|
|
867
|
-
"tags": "Adult|Cholinergic|Nervous_system|Visual_system|secondary_neuron",
|
|
868
|
-
"thumbnail": ""
|
|
869
|
-
}
|
|
870
|
-
]
|
|
871
|
-
},
|
|
872
|
-
"output_format": "table",
|
|
873
|
-
"count": 119989
|
|
874
|
-
},
|
|
875
|
-
{
|
|
876
|
-
"query": "ExpressionOverlapsHere",
|
|
877
|
-
"label": "Expression patterns overlapping medulla",
|
|
878
|
-
"function": "get_expression_overlaps_here",
|
|
879
|
-
"takes": {
|
|
880
|
-
"short_form": {
|
|
881
|
-
"$and": [
|
|
882
|
-
"Class",
|
|
883
|
-
"Anatomy"
|
|
884
|
-
]
|
|
885
|
-
},
|
|
886
|
-
"default": {
|
|
887
|
-
"short_form": "FBbt_00003748"
|
|
888
|
-
}
|
|
889
|
-
},
|
|
890
|
-
"preview": 5,
|
|
891
|
-
"preview_columns": [
|
|
892
|
-
"id",
|
|
893
|
-
"name",
|
|
894
|
-
"tags",
|
|
895
|
-
"pubs"
|
|
896
|
-
],
|
|
897
|
-
"preview_results": {
|
|
898
|
-
"headers": {
|
|
899
|
-
"id": {
|
|
900
|
-
"title": "ID",
|
|
901
|
-
"type": "selection_id",
|
|
902
|
-
"order": -1
|
|
903
|
-
},
|
|
904
|
-
"name": {
|
|
905
|
-
"title": "Expression Pattern",
|
|
906
|
-
"type": "markdown",
|
|
907
|
-
"order": 0
|
|
908
|
-
},
|
|
909
|
-
"tags": {
|
|
910
|
-
"title": "Tags",
|
|
911
|
-
"type": "tags",
|
|
912
|
-
"order": 1
|
|
913
|
-
},
|
|
914
|
-
"pubs": {
|
|
915
|
-
"title": "Publications",
|
|
916
|
-
"type": "metadata",
|
|
917
|
-
"order": 2
|
|
918
|
-
}
|
|
919
|
-
},
|
|
920
|
-
"rows": [
|
|
921
|
-
{
|
|
922
|
-
"id": "VFBexp_FBti0182065",
|
|
923
|
-
"name": "[Mi{GT-GAL4}DIP-\u03b2[MI01971-GAL4] expression pattern](VFBexp_FBti0182065)",
|
|
924
|
-
"tags": "Expression_pattern",
|
|
925
|
-
"pubs": [
|
|
926
|
-
{
|
|
927
|
-
"core": {
|
|
928
|
-
"iri": "http://flybase.org/reports/FBrf0230454",
|
|
929
|
-
"symbol": "",
|
|
930
|
-
"types": [
|
|
931
|
-
"Entity",
|
|
932
|
-
"Individual",
|
|
933
|
-
"pub"
|
|
934
|
-
],
|
|
935
|
-
"short_form": "FBrf0230454",
|
|
936
|
-
"label": "Carrillo et al., 2015, Cell 163(7): 1770--1782"
|
|
937
|
-
},
|
|
938
|
-
"FlyBase": "FBrf0230454",
|
|
939
|
-
"PubMed": "26687361",
|
|
940
|
-
"DOI": "10.1016/j.cell.2015.11.022"
|
|
941
|
-
}
|
|
942
|
-
]
|
|
943
|
-
},
|
|
944
|
-
{
|
|
945
|
-
"id": "VFBexp_FBti0145260",
|
|
946
|
-
"name": "[Mi{MIC}dpr10[MI03557] expression pattern](VFBexp_FBti0145260)",
|
|
947
|
-
"tags": "Expression_pattern",
|
|
948
|
-
"pubs": [
|
|
949
|
-
{
|
|
950
|
-
"core": {
|
|
951
|
-
"iri": "http://flybase.org/reports/FBrf0230454",
|
|
952
|
-
"symbol": "",
|
|
953
|
-
"types": [
|
|
954
|
-
"Entity",
|
|
955
|
-
"Individual",
|
|
956
|
-
"pub"
|
|
957
|
-
],
|
|
958
|
-
"short_form": "FBrf0230454",
|
|
959
|
-
"label": "Carrillo et al., 2015, Cell 163(7): 1770--1782"
|
|
960
|
-
},
|
|
961
|
-
"FlyBase": "FBrf0230454",
|
|
962
|
-
"PubMed": "26687361",
|
|
963
|
-
"DOI": "10.1016/j.cell.2015.11.022"
|
|
964
|
-
}
|
|
965
|
-
]
|
|
966
|
-
},
|
|
967
|
-
{
|
|
968
|
-
"id": "VFBexp_FBti0143533",
|
|
969
|
-
"name": "[PBac{544.SVS-1}B4[CPTI100035] expression pattern](VFBexp_FBti0143533)",
|
|
970
|
-
"tags": "Expression_pattern",
|
|
971
|
-
"pubs": [
|
|
972
|
-
{
|
|
973
|
-
"core": {
|
|
974
|
-
"iri": "http://flybase.org/reports/FBrf0215202",
|
|
975
|
-
"symbol": "",
|
|
976
|
-
"types": [
|
|
977
|
-
"Entity",
|
|
978
|
-
"Individual",
|
|
979
|
-
"pub"
|
|
980
|
-
],
|
|
981
|
-
"short_form": "FBrf0215202",
|
|
982
|
-
"label": "Knowles-Barley, 2011.8.24, BrainTrap expression curation."
|
|
983
|
-
},
|
|
984
|
-
"FlyBase": "FBrf0215202",
|
|
985
|
-
"PubMed": "",
|
|
986
|
-
"DOI": ""
|
|
987
|
-
}
|
|
988
|
-
]
|
|
989
|
-
},
|
|
990
|
-
{
|
|
991
|
-
"id": "VFBexp_FBti0143547",
|
|
992
|
-
"name": "[PBac{544.SVS-1}Fer2LCH[CPTI100064] expression pattern](VFBexp_FBti0143547)",
|
|
993
|
-
"tags": "Expression_pattern",
|
|
994
|
-
"pubs": [
|
|
995
|
-
{
|
|
996
|
-
"core": {
|
|
997
|
-
"iri": "http://flybase.org/reports/FBrf0215202",
|
|
998
|
-
"symbol": "",
|
|
999
|
-
"types": [
|
|
1000
|
-
"Entity",
|
|
1001
|
-
"Individual",
|
|
1002
|
-
"pub"
|
|
1003
|
-
],
|
|
1004
|
-
"short_form": "FBrf0215202",
|
|
1005
|
-
"label": "Knowles-Barley, 2011.8.24, BrainTrap expression curation."
|
|
1006
|
-
},
|
|
1007
|
-
"FlyBase": "FBrf0215202",
|
|
1008
|
-
"PubMed": "",
|
|
1009
|
-
"DOI": ""
|
|
1010
|
-
}
|
|
1011
|
-
]
|
|
1012
|
-
},
|
|
1013
|
-
{
|
|
1014
|
-
"id": "VFBexp_FBti0143524",
|
|
1015
|
-
"name": "[PBac{566.P.SVS-1}IA-2[CPTI100013] expression pattern](VFBexp_FBti0143524)",
|
|
1016
|
-
"tags": "Expression_pattern",
|
|
1017
|
-
"pubs": [
|
|
1018
|
-
{
|
|
1019
|
-
"core": {
|
|
1020
|
-
"iri": "http://flybase.org/reports/FBrf0215202",
|
|
1021
|
-
"symbol": "",
|
|
1022
|
-
"types": [
|
|
1023
|
-
"Entity",
|
|
1024
|
-
"Individual",
|
|
1025
|
-
"pub"
|
|
1026
|
-
],
|
|
1027
|
-
"short_form": "FBrf0215202",
|
|
1028
|
-
"label": "Knowles-Barley, 2011.8.24, BrainTrap expression curation."
|
|
1029
|
-
},
|
|
1030
|
-
"FlyBase": "FBrf0215202",
|
|
1031
|
-
"PubMed": "",
|
|
1032
|
-
"DOI": ""
|
|
1033
|
-
}
|
|
1034
|
-
]
|
|
1035
|
-
}
|
|
1036
|
-
]
|
|
1037
|
-
},
|
|
1038
|
-
"output_format": "table",
|
|
1039
|
-
"count": 2339
|
|
1040
|
-
},
|
|
1041
|
-
{
|
|
1042
|
-
"query": "TransgeneExpressionHere",
|
|
1043
|
-
"label": "Transgene expression in medulla",
|
|
1044
|
-
"function": "get_transgene_expression_here",
|
|
1045
|
-
"takes": {
|
|
1046
|
-
"short_form": {
|
|
1047
|
-
"$and": [
|
|
1048
|
-
"Class",
|
|
1049
|
-
"Nervous_system",
|
|
1050
|
-
"Anatomy"
|
|
1051
|
-
]
|
|
1052
|
-
},
|
|
1053
|
-
"default": {
|
|
1054
|
-
"short_form": "FBbt_00003748"
|
|
1055
|
-
}
|
|
1056
|
-
},
|
|
1057
|
-
"preview": 5,
|
|
1058
|
-
"preview_columns": [
|
|
1059
|
-
"id",
|
|
1060
|
-
"name",
|
|
1061
|
-
"tags"
|
|
1062
|
-
],
|
|
1063
|
-
"preview_results": {
|
|
1064
|
-
"headers": {
|
|
1065
|
-
"id": {
|
|
1066
|
-
"title": "ID",
|
|
1067
|
-
"type": "selection_id",
|
|
1068
|
-
"order": -1
|
|
1069
|
-
},
|
|
1070
|
-
"name": {
|
|
1071
|
-
"title": "Expression Pattern",
|
|
1072
|
-
"type": "markdown",
|
|
1073
|
-
"order": 0
|
|
1074
|
-
},
|
|
1075
|
-
"tags": {
|
|
1076
|
-
"title": "Tags",
|
|
1077
|
-
"type": "tags",
|
|
1078
|
-
"order": 1
|
|
1079
|
-
}
|
|
1080
|
-
},
|
|
1081
|
-
"rows": [
|
|
1082
|
-
{
|
|
1083
|
-
"id": "VFBexp_FBti0182065",
|
|
1084
|
-
"name": "[Mi{GT-GAL4}DIP-\u03b2[MI01971-GAL4] expression pattern](VFBexp_FBti0182065)",
|
|
1085
|
-
"tags": "Expression_pattern"
|
|
1086
|
-
},
|
|
1087
|
-
{
|
|
1088
|
-
"id": "VFBexp_FBti0145260",
|
|
1089
|
-
"name": "[Mi{MIC}dpr10[MI03557] expression pattern](VFBexp_FBti0145260)",
|
|
1090
|
-
"tags": "Expression_pattern"
|
|
1091
|
-
},
|
|
1092
|
-
{
|
|
1093
|
-
"id": "VFBexp_FBti0143533",
|
|
1094
|
-
"name": "[PBac{544.SVS-1}B4[CPTI100035] expression pattern](VFBexp_FBti0143533)",
|
|
1095
|
-
"tags": "Expression_pattern"
|
|
1096
|
-
},
|
|
1097
|
-
{
|
|
1098
|
-
"id": "VFBexp_FBti0143547",
|
|
1099
|
-
"name": "[PBac{544.SVS-1}Fer2LCH[CPTI100064] expression pattern](VFBexp_FBti0143547)",
|
|
1100
|
-
"tags": "Expression_pattern"
|
|
1101
|
-
},
|
|
1102
|
-
{
|
|
1103
|
-
"id": "VFBexp_FBti0143524",
|
|
1104
|
-
"name": "[PBac{566.P.SVS-1}IA-2[CPTI100013] expression pattern](VFBexp_FBti0143524)",
|
|
1105
|
-
"tags": "Expression_pattern"
|
|
1106
|
-
}
|
|
1107
|
-
]
|
|
1108
|
-
},
|
|
1109
|
-
"output_format": "table",
|
|
1110
|
-
"count": 2339
|
|
1111
|
-
}
|
|
1112
|
-
],
|
|
1113
|
-
"IsIndividual": False,
|
|
1114
|
-
"IsClass": True,
|
|
1115
|
-
"Examples": {
|
|
1116
|
-
"VFB_00101384": [
|
|
1117
|
-
{
|
|
1118
|
-
"id": "VFB_00101385",
|
|
1119
|
-
"label": "ME(R) on JRC_FlyEM_Hemibrain",
|
|
1120
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/1385/VFB_00101384/thumbnail.png",
|
|
1121
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/1385/VFB_00101384/thumbnailT.png",
|
|
1122
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/1385/VFB_00101384/volume.nrrd",
|
|
1123
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/1385/VFB_00101384/volume.wlz",
|
|
1124
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/1385/VFB_00101384/volume_man.obj"
|
|
1125
|
-
}
|
|
1126
|
-
],
|
|
1127
|
-
"VFB_00101567": [
|
|
1128
|
-
{
|
|
1129
|
-
"id": "VFB_00102107",
|
|
1130
|
-
"label": "ME on JRC2018Unisex adult brain",
|
|
1131
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2107/VFB_00101567/thumbnail.png",
|
|
1132
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2107/VFB_00101567/thumbnailT.png",
|
|
1133
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2107/VFB_00101567/volume.nrrd",
|
|
1134
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2107/VFB_00101567/volume.wlz",
|
|
1135
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2107/VFB_00101567/volume_man.obj"
|
|
1136
|
-
}
|
|
1137
|
-
],
|
|
1138
|
-
"VFB_00017894": [
|
|
1139
|
-
{
|
|
1140
|
-
"id": "VFB_00030624",
|
|
1141
|
-
"label": "medulla on adult brain template JFRC2",
|
|
1142
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0003/0624/VFB_00017894/thumbnail.png",
|
|
1143
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0003/0624/VFB_00017894/thumbnailT.png",
|
|
1144
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0003/0624/VFB_00017894/volume.nrrd",
|
|
1145
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0003/0624/VFB_00017894/volume.wlz",
|
|
1146
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0003/0624/VFB_00017894/volume_man.obj"
|
|
1147
|
-
}
|
|
1148
|
-
],
|
|
1149
|
-
"VFB_00030786": [
|
|
1150
|
-
{
|
|
1151
|
-
"id": "VFB_00030810",
|
|
1152
|
-
"label": "medulla on adult brain template Ito2014",
|
|
1153
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0003/0810/VFB_00030786/thumbnail.png",
|
|
1154
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0003/0810/VFB_00030786/thumbnailT.png",
|
|
1155
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0003/0810/VFB_00030786/volume.nrrd",
|
|
1156
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0003/0810/VFB_00030786/volume.wlz",
|
|
1157
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0003/0810/VFB_00030786/volume_man.obj"
|
|
1158
|
-
}
|
|
1159
|
-
]
|
|
1160
|
-
},
|
|
1161
|
-
"IsTemplate": False,
|
|
1162
|
-
"Synonyms": [
|
|
1163
|
-
{
|
|
1164
|
-
"label": "ME",
|
|
1165
|
-
"scope": "has_exact_synonym",
|
|
1166
|
-
"type": "",
|
|
1167
|
-
"publication": "[Ito et al., 2014](FBrf0224194)"
|
|
1168
|
-
},
|
|
1169
|
-
{
|
|
1170
|
-
"label": "Med",
|
|
1171
|
-
"scope": "has_exact_synonym",
|
|
1172
|
-
"type": "",
|
|
1173
|
-
"publication": "[Chiang et al., 2011](FBrf0212704)"
|
|
1174
|
-
},
|
|
1175
|
-
{
|
|
1176
|
-
"label": "optic medulla",
|
|
1177
|
-
"scope": "has_exact_synonym",
|
|
1178
|
-
"type": "",
|
|
1179
|
-
"publication": "[Venkatesh and Shyamala, 2010](FBrf0212889)"
|
|
1180
|
-
},
|
|
1181
|
-
{
|
|
1182
|
-
"label": "m",
|
|
1183
|
-
"scope": "has_related_synonym",
|
|
1184
|
-
"type": "",
|
|
1185
|
-
"publication": ""
|
|
1186
|
-
}
|
|
1187
|
-
]
|
|
1188
|
-
}
|
|
1189
|
-
```
|
|
1190
|
-
|
|
1191
|
-
Individual example:
|
|
1192
|
-
```python
|
|
1193
|
-
vfb.get_term_info('VFB_00000001')
|
|
1194
|
-
```
|
|
1195
|
-
```json
|
|
1196
|
-
{
|
|
1197
|
-
"Name": "fru-M-200266",
|
|
1198
|
-
"Id": "VFB_00000001",
|
|
1199
|
-
"SuperTypes": [
|
|
1200
|
-
"Entity",
|
|
1201
|
-
"Individual",
|
|
1202
|
-
"VFB",
|
|
1203
|
-
"Neuron",
|
|
1204
|
-
"Adult",
|
|
1205
|
-
"Anatomy",
|
|
1206
|
-
"Cell",
|
|
1207
|
-
"Expression_pattern_fragment",
|
|
1208
|
-
"Nervous_system",
|
|
1209
|
-
"has_image",
|
|
1210
|
-
"lineage_CM3",
|
|
1211
|
-
"lineage_DM6",
|
|
1212
|
-
"FlyCircuit",
|
|
1213
|
-
"NBLAST"
|
|
1214
|
-
],
|
|
1215
|
-
"Meta": {
|
|
1216
|
-
"Name": "[fru-M-200266](VFB_00000001)",
|
|
1217
|
-
"Description": "",
|
|
1218
|
-
"Comment": "OutAge: Adult 5~15 days",
|
|
1219
|
-
"Types": "[adult DM6 lineage neuron](FBbt_00050144); [expression pattern fragment](VFBext_0000004)",
|
|
1220
|
-
"Relationships": "[expresses](RO_0002292): [Scer\\GAL4%5Bfru.P1.D%5D](FBal0276838); [is part of](BFO_0000050): [Scer\\GAL4%5Bfru.P1.D%5D expression pattern](VFBexp_FBal0276838), [adult brain](FBbt_00003624), [male organism](FBbt_00007004); [overlaps](RO_0002131): [adult antennal lobe](FBbt_00007401), [adult crepine](FBbt_00045037), [adult lateral accessory lobe](FBbt_00003681), [superior posterior slope](FBbt_00045040), [vest](FBbt_00040041)"
|
|
1221
|
-
},
|
|
1222
|
-
"Tags": [
|
|
1223
|
-
"Adult",
|
|
1224
|
-
"Expression_pattern_fragment",
|
|
1225
|
-
"Neuron",
|
|
1226
|
-
"lineage_CM3"
|
|
1227
|
-
],
|
|
1228
|
-
"Queries": [
|
|
1229
|
-
{
|
|
1230
|
-
"query": "SimilarMorphologyTo",
|
|
1231
|
-
"label": "Find similar neurons to fru-M-200266",
|
|
1232
|
-
"function": "get_similar_neurons",
|
|
1233
|
-
"takes": {
|
|
1234
|
-
"short_form": {
|
|
1235
|
-
"$and": [
|
|
1236
|
-
"Individual",
|
|
1237
|
-
"Neuron"
|
|
1238
|
-
]
|
|
1239
|
-
},
|
|
1240
|
-
"default": {
|
|
1241
|
-
"neuron": "VFB_00000001",
|
|
1242
|
-
"similarity_score": "NBLAST_score"
|
|
1243
|
-
}
|
|
1244
|
-
},
|
|
1245
|
-
"preview": 5,
|
|
1246
|
-
"preview_columns": [
|
|
1247
|
-
"id",
|
|
1248
|
-
"score",
|
|
1249
|
-
"name",
|
|
1250
|
-
"tags",
|
|
1251
|
-
"thumbnail"
|
|
1252
|
-
],
|
|
1253
|
-
"preview_results": {
|
|
1254
|
-
"headers": {
|
|
1255
|
-
"id": {
|
|
1256
|
-
"title": "Add",
|
|
1257
|
-
"type": "selection_id",
|
|
1258
|
-
"order": -1
|
|
1259
|
-
},
|
|
1260
|
-
"score": {
|
|
1261
|
-
"title": "Score",
|
|
1262
|
-
"type": "numeric",
|
|
1263
|
-
"order": 1,
|
|
1264
|
-
"sort": {
|
|
1265
|
-
"0": "Desc"
|
|
1266
|
-
}
|
|
1267
|
-
},
|
|
1268
|
-
"name": {
|
|
1269
|
-
"title": "Name",
|
|
1270
|
-
"type": "markdown",
|
|
1271
|
-
"order": 1,
|
|
1272
|
-
"sort": {
|
|
1273
|
-
"1": "Asc"
|
|
1274
|
-
}
|
|
1275
|
-
},
|
|
1276
|
-
"tags": {
|
|
1277
|
-
"title": "Tags",
|
|
1278
|
-
"type": "tags",
|
|
1279
|
-
"order": 2
|
|
1280
|
-
},
|
|
1281
|
-
"thumbnail": {
|
|
1282
|
-
"title": "Thumbnail",
|
|
1283
|
-
"type": "markdown",
|
|
1284
|
-
"order": 9
|
|
1285
|
-
}
|
|
1286
|
-
},
|
|
1287
|
-
"rows": [
|
|
1288
|
-
{
|
|
1289
|
-
"id": "VFB_00000333",
|
|
1290
|
-
"score": "0.61",
|
|
1291
|
-
"name": "[fru-M-000204](VFB_00000333)",
|
|
1292
|
-
"tags": "Expression_pattern_fragment|Neuron|Adult|lineage_CM3",
|
|
1293
|
-
"thumbnail": "[](VFB_00017894,VFB_00000333)"
|
|
1294
|
-
},
|
|
1295
|
-
{
|
|
1296
|
-
"id": "VFB_00000333",
|
|
1297
|
-
"score": "0.61",
|
|
1298
|
-
"name": "[fru-M-000204](VFB_00000333)",
|
|
1299
|
-
"tags": "Expression_pattern_fragment|Neuron|Adult|lineage_CM3",
|
|
1300
|
-
"thumbnail": "[](VFB_00101567,VFB_00000333)"
|
|
1301
|
-
},
|
|
1302
|
-
{
|
|
1303
|
-
"id": "VFB_00002439",
|
|
1304
|
-
"score": "0.6",
|
|
1305
|
-
"name": "[fru-M-900020](VFB_00002439)",
|
|
1306
|
-
"tags": "Expression_pattern_fragment|Neuron|Adult|lineage_CM3",
|
|
1307
|
-
"thumbnail": "[](VFB_00101567,VFB_00002439)"
|
|
1308
|
-
},
|
|
1309
|
-
{
|
|
1310
|
-
"id": "VFB_00002439",
|
|
1311
|
-
"score": "0.6",
|
|
1312
|
-
"name": "[fru-M-900020](VFB_00002439)",
|
|
1313
|
-
"tags": "Expression_pattern_fragment|Neuron|Adult|lineage_CM3",
|
|
1314
|
-
"thumbnail": "[](VFB_00017894,VFB_00002439)"
|
|
1315
|
-
},
|
|
1316
|
-
{
|
|
1317
|
-
"id": "VFB_00000845",
|
|
1318
|
-
"score": "0.59",
|
|
1319
|
-
"name": "[fru-M-100191](VFB_00000845)",
|
|
1320
|
-
"tags": "Expression_pattern_fragment|Neuron|Adult|lineage_CM3",
|
|
1321
|
-
"thumbnail": "[](VFB_00101567,VFB_00000845)"
|
|
1322
|
-
}
|
|
1323
|
-
]
|
|
1324
|
-
},
|
|
1325
|
-
"output_format": "table",
|
|
1326
|
-
"count": 60
|
|
1327
|
-
}
|
|
1328
|
-
],
|
|
1329
|
-
"IsIndividual": True,
|
|
1330
|
-
"Images": {
|
|
1331
|
-
"VFB_00017894": [
|
|
1332
|
-
{
|
|
1333
|
-
"id": "VFB_00000001",
|
|
1334
|
-
"label": "fru-M-200266",
|
|
1335
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00017894/thumbnail.png",
|
|
1336
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00017894/thumbnailT.png",
|
|
1337
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00017894/volume.nrrd",
|
|
1338
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00017894/volume.wlz",
|
|
1339
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00017894/volume.obj",
|
|
1340
|
-
"swc": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00017894/volume.swc"
|
|
1341
|
-
}
|
|
1342
|
-
],
|
|
1343
|
-
"VFB_00101567": [
|
|
1344
|
-
{
|
|
1345
|
-
"id": "VFB_00000001",
|
|
1346
|
-
"label": "fru-M-200266",
|
|
1347
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00101567/thumbnail.png",
|
|
1348
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00101567/thumbnailT.png",
|
|
1349
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00101567/volume.nrrd",
|
|
1350
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00101567/volume.wlz",
|
|
1351
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00101567/volume.obj",
|
|
1352
|
-
"swc": "https://www.virtualflybrain.org/data/VFB/i/0000/0001/VFB_00101567/volume.swc"
|
|
1353
|
-
}
|
|
1354
|
-
]
|
|
1355
|
-
},
|
|
1356
|
-
"IsClass": False,
|
|
1357
|
-
"IsTemplate": False,
|
|
1358
|
-
"Licenses": {
|
|
1359
|
-
"0": {
|
|
1360
|
-
"iri": "http://virtualflybrain.org/reports/VFBlicense_FlyCircuit_License",
|
|
1361
|
-
"short_form": "VFBlicense_FlyCircuit_License",
|
|
1362
|
-
"label": "FlyCircuit License",
|
|
1363
|
-
"icon": "",
|
|
1364
|
-
"source": "FlyCircuit 1.0 - single neurons (Chiang2010)",
|
|
1365
|
-
"source_iri": "http://virtualflybrain.org/reports/Chiang2010"
|
|
1366
|
-
}
|
|
1367
|
-
}
|
|
1368
|
-
}
|
|
1369
|
-
```
|
|
1370
|
-
|
|
1371
|
-
Template example:
|
|
1372
|
-
```python
|
|
1373
|
-
vfb.get_term_info('VFB_00101567')
|
|
1374
|
-
```
|
|
1375
|
-
```json
|
|
1376
|
-
{
|
|
1377
|
-
"Name": "JRC2018U",
|
|
1378
|
-
"Id": "VFB_00101567",
|
|
1379
|
-
"SuperTypes": [
|
|
1380
|
-
"Entity",
|
|
1381
|
-
"Individual",
|
|
1382
|
-
"VFB",
|
|
1383
|
-
"Adult",
|
|
1384
|
-
"Anatomy",
|
|
1385
|
-
"Nervous_system",
|
|
1386
|
-
"Template",
|
|
1387
|
-
"has_image"
|
|
1388
|
-
],
|
|
1389
|
-
"Meta": {
|
|
1390
|
-
"Name": "[JRC2018Unisex](VFB_00101567)",
|
|
1391
|
-
"Symbol": "[JRC2018U](VFB_00101567)",
|
|
1392
|
-
"Description": "Janelia 2018 unisex, averaged adult brain template",
|
|
1393
|
-
"Comment": "",
|
|
1394
|
-
"Types": "[adult brain](FBbt_00003624)"
|
|
1395
|
-
},
|
|
1396
|
-
"Tags": [
|
|
1397
|
-
"Adult",
|
|
1398
|
-
"Nervous_system"
|
|
1399
|
-
],
|
|
1400
|
-
"Queries": [],
|
|
1401
|
-
"IsIndividual": True,
|
|
1402
|
-
"Images": {
|
|
1403
|
-
"VFB_00101567": [
|
|
1404
|
-
{
|
|
1405
|
-
"id": "VFB_00101567",
|
|
1406
|
-
"label": "JRC2018Unisex",
|
|
1407
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/1567/VFB_00101567/thumbnail.png",
|
|
1408
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/1567/VFB_00101567/thumbnailT.png",
|
|
1409
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/1567/VFB_00101567/volume.nrrd",
|
|
1410
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/1567/VFB_00101567/volume.wlz",
|
|
1411
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/1567/VFB_00101567/volume_man.obj",
|
|
1412
|
-
"index": 0,
|
|
1413
|
-
"center": {
|
|
1414
|
-
"X": 605.0,
|
|
1415
|
-
"Y": 283.0,
|
|
1416
|
-
"Z": 87.0
|
|
1417
|
-
},
|
|
1418
|
-
"extent": {
|
|
1419
|
-
"X": 1211.0,
|
|
1420
|
-
"Y": 567.0,
|
|
1421
|
-
"Z": 175.0
|
|
1422
|
-
},
|
|
1423
|
-
"voxel": {
|
|
1424
|
-
"X": 0.5189161,
|
|
1425
|
-
"Y": 0.5189161,
|
|
1426
|
-
"Z": 1.0
|
|
1427
|
-
},
|
|
1428
|
-
"orientation": "LPS"
|
|
1429
|
-
}
|
|
1430
|
-
]
|
|
1431
|
-
},
|
|
1432
|
-
"IsClass": False,
|
|
1433
|
-
"Examples": {},
|
|
1434
|
-
"IsTemplate": True,
|
|
1435
|
-
"Domains": {
|
|
1436
|
-
"0": {
|
|
1437
|
-
"id": "VFB_00101567",
|
|
1438
|
-
"label": "JRC2018U",
|
|
1439
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/1567/VFB_00101567/thumbnail.png",
|
|
1440
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/1567/VFB_00101567/thumbnailT.png",
|
|
1441
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/1567/VFB_00101567/volume.nrrd",
|
|
1442
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/1567/VFB_00101567/volume.wlz",
|
|
1443
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/1567/VFB_00101567/volume_man.obj",
|
|
1444
|
-
"index": 0,
|
|
1445
|
-
"type_label": "adult brain",
|
|
1446
|
-
"type_id": "FBbt_00003624"
|
|
1447
|
-
},
|
|
1448
|
-
"3": {
|
|
1449
|
-
"id": "VFB_00102107",
|
|
1450
|
-
"label": "ME on JRC2018Unisex adult brain",
|
|
1451
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2107/VFB_00101567/thumbnail.png",
|
|
1452
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2107/VFB_00101567/thumbnailT.png",
|
|
1453
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2107/VFB_00101567/volume.nrrd",
|
|
1454
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2107/VFB_00101567/volume.wlz",
|
|
1455
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2107/VFB_00101567/volume_man.obj",
|
|
1456
|
-
"index": 3,
|
|
1457
|
-
"type_label": "medulla",
|
|
1458
|
-
"type_id": "FBbt_00003748"
|
|
1459
|
-
},
|
|
1460
|
-
"4": {
|
|
1461
|
-
"id": "VFB_00102108",
|
|
1462
|
-
"label": "AME on JRC2018Unisex adult brain",
|
|
1463
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2108/VFB_00101567/thumbnail.png",
|
|
1464
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2108/VFB_00101567/thumbnailT.png",
|
|
1465
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2108/VFB_00101567/volume.nrrd",
|
|
1466
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2108/VFB_00101567/volume.wlz",
|
|
1467
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2108/VFB_00101567/volume_man.obj",
|
|
1468
|
-
"index": 4,
|
|
1469
|
-
"type_label": "accessory medulla",
|
|
1470
|
-
"type_id": "FBbt_00045003"
|
|
1471
|
-
},
|
|
1472
|
-
"5": {
|
|
1473
|
-
"id": "VFB_00102109",
|
|
1474
|
-
"label": "LO on JRC2018Unisex adult brain",
|
|
1475
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2109/VFB_00101567/thumbnail.png",
|
|
1476
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2109/VFB_00101567/thumbnailT.png",
|
|
1477
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2109/VFB_00101567/volume.nrrd",
|
|
1478
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2109/VFB_00101567/volume.wlz",
|
|
1479
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2109/VFB_00101567/volume_man.obj",
|
|
1480
|
-
"index": 5,
|
|
1481
|
-
"type_label": "lobula",
|
|
1482
|
-
"type_id": "FBbt_00003852"
|
|
1483
|
-
},
|
|
1484
|
-
"6": {
|
|
1485
|
-
"id": "VFB_00102110",
|
|
1486
|
-
"label": "LOP on JRC2018Unisex adult brain",
|
|
1487
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2110/VFB_00101567/thumbnail.png",
|
|
1488
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2110/VFB_00101567/thumbnailT.png",
|
|
1489
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2110/VFB_00101567/volume.nrrd",
|
|
1490
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2110/VFB_00101567/volume.wlz",
|
|
1491
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2110/VFB_00101567/volume_man.obj",
|
|
1492
|
-
"index": 6,
|
|
1493
|
-
"type_label": "lobula plate",
|
|
1494
|
-
"type_id": "FBbt_00003885"
|
|
1495
|
-
},
|
|
1496
|
-
"7": {
|
|
1497
|
-
"id": "VFB_00102114",
|
|
1498
|
-
"label": "CA on JRC2018Unisex adult brain",
|
|
1499
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2114/VFB_00101567/thumbnail.png",
|
|
1500
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2114/VFB_00101567/thumbnailT.png",
|
|
1501
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2114/VFB_00101567/volume.nrrd",
|
|
1502
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2114/VFB_00101567/volume.wlz",
|
|
1503
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2114/VFB_00101567/volume_man.obj",
|
|
1504
|
-
"index": 7,
|
|
1505
|
-
"type_label": "calyx of adult mushroom body",
|
|
1506
|
-
"type_id": "FBbt_00007385"
|
|
1507
|
-
},
|
|
1508
|
-
"10": {
|
|
1509
|
-
"id": "VFB_00102118",
|
|
1510
|
-
"label": "PED on JRC2018Unisex adult brain",
|
|
1511
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2118/VFB_00101567/thumbnail.png",
|
|
1512
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2118/VFB_00101567/thumbnailT.png",
|
|
1513
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2118/VFB_00101567/volume.nrrd",
|
|
1514
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2118/VFB_00101567/volume.wlz",
|
|
1515
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2118/VFB_00101567/volume_man.obj",
|
|
1516
|
-
"index": 10,
|
|
1517
|
-
"type_label": "pedunculus of adult mushroom body",
|
|
1518
|
-
"type_id": "FBbt_00007453"
|
|
1519
|
-
},
|
|
1520
|
-
"11": {
|
|
1521
|
-
"id": "VFB_00102119",
|
|
1522
|
-
"label": "aL on JRC2018Unisex adult brain",
|
|
1523
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2119/VFB_00101567/thumbnail.png",
|
|
1524
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2119/VFB_00101567/thumbnailT.png",
|
|
1525
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2119/VFB_00101567/volume.nrrd",
|
|
1526
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2119/VFB_00101567/volume.wlz",
|
|
1527
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2119/VFB_00101567/volume_man.obj",
|
|
1528
|
-
"index": 11,
|
|
1529
|
-
"type_label": "adult mushroom body alpha-lobe",
|
|
1530
|
-
"type_id": "FBbt_00110657"
|
|
1531
|
-
},
|
|
1532
|
-
"12": {
|
|
1533
|
-
"id": "VFB_00102121",
|
|
1534
|
-
"label": "a\\'L on JRC2018Unisex adult brain",
|
|
1535
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2121/VFB_00101567/thumbnail.png",
|
|
1536
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2121/VFB_00101567/thumbnailT.png",
|
|
1537
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2121/VFB_00101567/volume.nrrd",
|
|
1538
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2121/VFB_00101567/volume.wlz",
|
|
1539
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2121/VFB_00101567/volume_man.obj",
|
|
1540
|
-
"index": 12,
|
|
1541
|
-
"type_label": "adult mushroom body alpha'-lobe",
|
|
1542
|
-
"type_id": "FBbt_00013691"
|
|
1543
|
-
},
|
|
1544
|
-
"13": {
|
|
1545
|
-
"id": "VFB_00102123",
|
|
1546
|
-
"label": "bL on JRC2018Unisex adult brain",
|
|
1547
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2123/VFB_00101567/thumbnail.png",
|
|
1548
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2123/VFB_00101567/thumbnailT.png",
|
|
1549
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2123/VFB_00101567/volume.nrrd",
|
|
1550
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2123/VFB_00101567/volume.wlz",
|
|
1551
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2123/VFB_00101567/volume_man.obj",
|
|
1552
|
-
"index": 13,
|
|
1553
|
-
"type_label": "adult mushroom body beta-lobe",
|
|
1554
|
-
"type_id": "FBbt_00110658"
|
|
1555
|
-
},
|
|
1556
|
-
"14": {
|
|
1557
|
-
"id": "VFB_00102124",
|
|
1558
|
-
"label": "b\\'L on JRC2018Unisex adult brain",
|
|
1559
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2124/VFB_00101567/thumbnail.png",
|
|
1560
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2124/VFB_00101567/thumbnailT.png",
|
|
1561
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2124/VFB_00101567/volume.nrrd",
|
|
1562
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2124/VFB_00101567/volume.wlz",
|
|
1563
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2124/VFB_00101567/volume_man.obj",
|
|
1564
|
-
"index": 14,
|
|
1565
|
-
"type_label": "adult mushroom body beta'-lobe",
|
|
1566
|
-
"type_id": "FBbt_00013694"
|
|
1567
|
-
},
|
|
1568
|
-
"15": {
|
|
1569
|
-
"id": "VFB_00102133",
|
|
1570
|
-
"label": "gL on JRC2018Unisex adult brain",
|
|
1571
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2133/VFB_00101567/thumbnail.png",
|
|
1572
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2133/VFB_00101567/thumbnailT.png",
|
|
1573
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2133/VFB_00101567/volume.nrrd",
|
|
1574
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2133/VFB_00101567/volume.wlz",
|
|
1575
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2133/VFB_00101567/volume_man.obj",
|
|
1576
|
-
"index": 15,
|
|
1577
|
-
"type_label": "adult mushroom body gamma-lobe",
|
|
1578
|
-
"type_id": "FBbt_00013695"
|
|
1579
|
-
},
|
|
1580
|
-
"16": {
|
|
1581
|
-
"id": "VFB_00102134",
|
|
1582
|
-
"label": "FB on JRC2018Unisex adult brain",
|
|
1583
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2134/VFB_00101567/thumbnail.png",
|
|
1584
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2134/VFB_00101567/thumbnailT.png",
|
|
1585
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2134/VFB_00101567/volume.nrrd",
|
|
1586
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2134/VFB_00101567/volume.wlz",
|
|
1587
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2134/VFB_00101567/volume_man.obj",
|
|
1588
|
-
"index": 16,
|
|
1589
|
-
"type_label": "fan-shaped body",
|
|
1590
|
-
"type_id": "FBbt_00003679"
|
|
1591
|
-
},
|
|
1592
|
-
"18": {
|
|
1593
|
-
"id": "VFB_00102135",
|
|
1594
|
-
"label": "EB on JRC2018Unisex adult brain",
|
|
1595
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2135/VFB_00101567/thumbnail.png",
|
|
1596
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2135/VFB_00101567/thumbnailT.png",
|
|
1597
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2135/VFB_00101567/volume.nrrd",
|
|
1598
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2135/VFB_00101567/volume.wlz",
|
|
1599
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2135/VFB_00101567/volume_man.obj",
|
|
1600
|
-
"index": 18,
|
|
1601
|
-
"type_label": "ellipsoid body",
|
|
1602
|
-
"type_id": "FBbt_00003678"
|
|
1603
|
-
},
|
|
1604
|
-
"19": {
|
|
1605
|
-
"id": "VFB_00102137",
|
|
1606
|
-
"label": "PB on JRC2018Unisex adult brain",
|
|
1607
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2137/VFB_00101567/thumbnail.png",
|
|
1608
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2137/VFB_00101567/thumbnailT.png",
|
|
1609
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2137/VFB_00101567/volume.nrrd",
|
|
1610
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2137/VFB_00101567/volume.wlz",
|
|
1611
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2137/VFB_00101567/volume_man.obj",
|
|
1612
|
-
"index": 19,
|
|
1613
|
-
"type_label": "protocerebral bridge",
|
|
1614
|
-
"type_id": "FBbt_00003668"
|
|
1615
|
-
},
|
|
1616
|
-
"21": {
|
|
1617
|
-
"id": "VFB_00102139",
|
|
1618
|
-
"label": "BU on JRC2018Unisex adult brain",
|
|
1619
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2139/VFB_00101567/thumbnail.png",
|
|
1620
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2139/VFB_00101567/thumbnailT.png",
|
|
1621
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2139/VFB_00101567/volume.nrrd",
|
|
1622
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2139/VFB_00101567/volume.wlz",
|
|
1623
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2139/VFB_00101567/volume_man.obj",
|
|
1624
|
-
"index": 21,
|
|
1625
|
-
"type_label": "bulb",
|
|
1626
|
-
"type_id": "FBbt_00003682"
|
|
1627
|
-
},
|
|
1628
|
-
"22": {
|
|
1629
|
-
"id": "VFB_00102140",
|
|
1630
|
-
"label": "LAL on JRC2018Unisex adult brain",
|
|
1631
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2140/VFB_00101567/thumbnail.png",
|
|
1632
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2140/VFB_00101567/thumbnailT.png",
|
|
1633
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2140/VFB_00101567/volume.nrrd",
|
|
1634
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2140/VFB_00101567/volume.wlz",
|
|
1635
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2140/VFB_00101567/volume_man.obj",
|
|
1636
|
-
"index": 22,
|
|
1637
|
-
"type_label": "adult lateral accessory lobe",
|
|
1638
|
-
"type_id": "FBbt_00003681"
|
|
1639
|
-
},
|
|
1640
|
-
"23": {
|
|
1641
|
-
"id": "VFB_00102141",
|
|
1642
|
-
"label": "AOTU on JRC2018Unisex adult brain",
|
|
1643
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2141/VFB_00101567/thumbnail.png",
|
|
1644
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2141/VFB_00101567/thumbnailT.png",
|
|
1645
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2141/VFB_00101567/volume.nrrd",
|
|
1646
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2141/VFB_00101567/volume.wlz",
|
|
1647
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2141/VFB_00101567/volume_man.obj",
|
|
1648
|
-
"index": 23,
|
|
1649
|
-
"type_label": "anterior optic tubercle",
|
|
1650
|
-
"type_id": "FBbt_00007059"
|
|
1651
|
-
},
|
|
1652
|
-
"24": {
|
|
1653
|
-
"id": "VFB_00102146",
|
|
1654
|
-
"label": "AVLP on JRC2018Unisex adult brain",
|
|
1655
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2146/VFB_00101567/thumbnail.png",
|
|
1656
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2146/VFB_00101567/thumbnailT.png",
|
|
1657
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2146/VFB_00101567/volume.nrrd",
|
|
1658
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2146/VFB_00101567/volume.wlz",
|
|
1659
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2146/VFB_00101567/volume_man.obj",
|
|
1660
|
-
"index": 24,
|
|
1661
|
-
"type_label": "anterior ventrolateral protocerebrum",
|
|
1662
|
-
"type_id": "FBbt_00040043"
|
|
1663
|
-
},
|
|
1664
|
-
"25": {
|
|
1665
|
-
"id": "VFB_00102148",
|
|
1666
|
-
"label": "PVLP on JRC2018Unisex adult brain",
|
|
1667
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2148/VFB_00101567/thumbnail.png",
|
|
1668
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2148/VFB_00101567/thumbnailT.png",
|
|
1669
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2148/VFB_00101567/volume.nrrd",
|
|
1670
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2148/VFB_00101567/volume.wlz",
|
|
1671
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2148/VFB_00101567/volume_man.obj",
|
|
1672
|
-
"index": 25,
|
|
1673
|
-
"type_label": "posterior ventrolateral protocerebrum",
|
|
1674
|
-
"type_id": "FBbt_00040042"
|
|
1675
|
-
},
|
|
1676
|
-
"26": {
|
|
1677
|
-
"id": "VFB_00102152",
|
|
1678
|
-
"label": "PLP on JRC2018Unisex adult brain",
|
|
1679
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2152/VFB_00101567/thumbnail.png",
|
|
1680
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2152/VFB_00101567/thumbnailT.png",
|
|
1681
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2152/VFB_00101567/volume.nrrd",
|
|
1682
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2152/VFB_00101567/volume.wlz",
|
|
1683
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2152/VFB_00101567/volume_man.obj",
|
|
1684
|
-
"index": 26,
|
|
1685
|
-
"type_label": "posterior lateral protocerebrum",
|
|
1686
|
-
"type_id": "FBbt_00040044"
|
|
1687
|
-
},
|
|
1688
|
-
"27": {
|
|
1689
|
-
"id": "VFB_00102154",
|
|
1690
|
-
"label": "WED on JRC2018Unisex adult brain",
|
|
1691
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2154/VFB_00101567/thumbnail.png",
|
|
1692
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2154/VFB_00101567/thumbnailT.png",
|
|
1693
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2154/VFB_00101567/volume.nrrd",
|
|
1694
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2154/VFB_00101567/volume.wlz",
|
|
1695
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2154/VFB_00101567/volume_man.obj",
|
|
1696
|
-
"index": 27,
|
|
1697
|
-
"type_label": "wedge",
|
|
1698
|
-
"type_id": "FBbt_00045027"
|
|
1699
|
-
},
|
|
1700
|
-
"28": {
|
|
1701
|
-
"id": "VFB_00102159",
|
|
1702
|
-
"label": "LH on JRC2018Unisex adult brain",
|
|
1703
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2159/VFB_00101567/thumbnail.png",
|
|
1704
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2159/VFB_00101567/thumbnailT.png",
|
|
1705
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2159/VFB_00101567/volume.nrrd",
|
|
1706
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2159/VFB_00101567/volume.wlz",
|
|
1707
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2159/VFB_00101567/volume_man.obj",
|
|
1708
|
-
"index": 28,
|
|
1709
|
-
"type_label": "adult lateral horn",
|
|
1710
|
-
"type_id": "FBbt_00007053"
|
|
1711
|
-
},
|
|
1712
|
-
"29": {
|
|
1713
|
-
"id": "VFB_00102162",
|
|
1714
|
-
"label": "SLP on JRC2018Unisex adult brain",
|
|
1715
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2162/VFB_00101567/thumbnail.png",
|
|
1716
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2162/VFB_00101567/thumbnailT.png",
|
|
1717
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2162/VFB_00101567/volume.nrrd",
|
|
1718
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2162/VFB_00101567/volume.wlz",
|
|
1719
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2162/VFB_00101567/volume_man.obj",
|
|
1720
|
-
"index": 29,
|
|
1721
|
-
"type_label": "superior lateral protocerebrum",
|
|
1722
|
-
"type_id": "FBbt_00007054"
|
|
1723
|
-
},
|
|
1724
|
-
"30": {
|
|
1725
|
-
"id": "VFB_00102164",
|
|
1726
|
-
"label": "SIP on JRC2018Unisex adult brain",
|
|
1727
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2164/VFB_00101567/thumbnail.png",
|
|
1728
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2164/VFB_00101567/thumbnailT.png",
|
|
1729
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2164/VFB_00101567/volume.nrrd",
|
|
1730
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2164/VFB_00101567/volume.wlz",
|
|
1731
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2164/VFB_00101567/volume_man.obj",
|
|
1732
|
-
"index": 30,
|
|
1733
|
-
"type_label": "superior intermediate protocerebrum",
|
|
1734
|
-
"type_id": "FBbt_00045032"
|
|
1735
|
-
},
|
|
1736
|
-
"31": {
|
|
1737
|
-
"id": "VFB_00102170",
|
|
1738
|
-
"label": "SMP on JRC2018Unisex adult brain",
|
|
1739
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2170/VFB_00101567/thumbnail.png",
|
|
1740
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2170/VFB_00101567/thumbnailT.png",
|
|
1741
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2170/VFB_00101567/volume.nrrd",
|
|
1742
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2170/VFB_00101567/volume.wlz",
|
|
1743
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2170/VFB_00101567/volume_man.obj",
|
|
1744
|
-
"index": 31,
|
|
1745
|
-
"type_label": "superior medial protocerebrum",
|
|
1746
|
-
"type_id": "FBbt_00007055"
|
|
1747
|
-
},
|
|
1748
|
-
"32": {
|
|
1749
|
-
"id": "VFB_00102171",
|
|
1750
|
-
"label": "CRE on JRC2018Unisex adult brain",
|
|
1751
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2171/VFB_00101567/thumbnail.png",
|
|
1752
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2171/VFB_00101567/thumbnailT.png",
|
|
1753
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2171/VFB_00101567/volume.nrrd",
|
|
1754
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2171/VFB_00101567/volume.wlz",
|
|
1755
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2171/VFB_00101567/volume_man.obj",
|
|
1756
|
-
"index": 32,
|
|
1757
|
-
"type_label": "adult crepine",
|
|
1758
|
-
"type_id": "FBbt_00045037"
|
|
1759
|
-
},
|
|
1760
|
-
"33": {
|
|
1761
|
-
"id": "VFB_00102174",
|
|
1762
|
-
"label": "ROB on JRC2018Unisex adult brain",
|
|
1763
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2174/VFB_00101567/thumbnail.png",
|
|
1764
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2174/VFB_00101567/thumbnailT.png",
|
|
1765
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2174/VFB_00101567/volume.nrrd",
|
|
1766
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2174/VFB_00101567/volume.wlz",
|
|
1767
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2174/VFB_00101567/volume_man.obj",
|
|
1768
|
-
"index": 33,
|
|
1769
|
-
"type_label": "adult round body",
|
|
1770
|
-
"type_id": "FBbt_00048509"
|
|
1771
|
-
},
|
|
1772
|
-
"34": {
|
|
1773
|
-
"id": "VFB_00102175",
|
|
1774
|
-
"label": "RUB on JRC2018Unisex adult brain",
|
|
1775
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2175/VFB_00101567/thumbnail.png",
|
|
1776
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2175/VFB_00101567/thumbnailT.png",
|
|
1777
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2175/VFB_00101567/volume.nrrd",
|
|
1778
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2175/VFB_00101567/volume.wlz",
|
|
1779
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2175/VFB_00101567/volume_man.obj",
|
|
1780
|
-
"index": 34,
|
|
1781
|
-
"type_label": "rubus",
|
|
1782
|
-
"type_id": "FBbt_00040038"
|
|
1783
|
-
},
|
|
1784
|
-
"35": {
|
|
1785
|
-
"id": "VFB_00102176",
|
|
1786
|
-
"label": "SCL on JRC2018Unisex adult brain",
|
|
1787
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2176/VFB_00101567/thumbnail.png",
|
|
1788
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2176/VFB_00101567/thumbnailT.png",
|
|
1789
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2176/VFB_00101567/volume.nrrd",
|
|
1790
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2176/VFB_00101567/volume.wlz",
|
|
1791
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2176/VFB_00101567/volume_man.obj",
|
|
1792
|
-
"index": 35,
|
|
1793
|
-
"type_label": "superior clamp",
|
|
1794
|
-
"type_id": "FBbt_00040048"
|
|
1795
|
-
},
|
|
1796
|
-
"36": {
|
|
1797
|
-
"id": "VFB_00102179",
|
|
1798
|
-
"label": "ICL on JRC2018Unisex adult brain",
|
|
1799
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2179/VFB_00101567/thumbnail.png",
|
|
1800
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2179/VFB_00101567/thumbnailT.png",
|
|
1801
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2179/VFB_00101567/volume.nrrd",
|
|
1802
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2179/VFB_00101567/volume.wlz",
|
|
1803
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2179/VFB_00101567/volume_man.obj",
|
|
1804
|
-
"index": 36,
|
|
1805
|
-
"type_label": "inferior clamp",
|
|
1806
|
-
"type_id": "FBbt_00040049"
|
|
1807
|
-
},
|
|
1808
|
-
"37": {
|
|
1809
|
-
"id": "VFB_00102185",
|
|
1810
|
-
"label": "IB on JRC2018Unisex adult brain",
|
|
1811
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2185/VFB_00101567/thumbnail.png",
|
|
1812
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2185/VFB_00101567/thumbnailT.png",
|
|
1813
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2185/VFB_00101567/volume.nrrd",
|
|
1814
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2185/VFB_00101567/volume.wlz",
|
|
1815
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2185/VFB_00101567/volume_man.obj",
|
|
1816
|
-
"index": 37,
|
|
1817
|
-
"type_label": "inferior bridge",
|
|
1818
|
-
"type_id": "FBbt_00040050"
|
|
1819
|
-
},
|
|
1820
|
-
"38": {
|
|
1821
|
-
"id": "VFB_00102190",
|
|
1822
|
-
"label": "ATL on JRC2018Unisex adult brain",
|
|
1823
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2190/VFB_00101567/thumbnail.png",
|
|
1824
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2190/VFB_00101567/thumbnailT.png",
|
|
1825
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2190/VFB_00101567/volume.nrrd",
|
|
1826
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2190/VFB_00101567/volume.wlz",
|
|
1827
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2190/VFB_00101567/volume_man.obj",
|
|
1828
|
-
"index": 38,
|
|
1829
|
-
"type_label": "antler",
|
|
1830
|
-
"type_id": "FBbt_00045039"
|
|
1831
|
-
},
|
|
1832
|
-
"39": {
|
|
1833
|
-
"id": "VFB_00102201",
|
|
1834
|
-
"label": "AL on JRC2018Unisex adult brain",
|
|
1835
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2201/VFB_00101567/thumbnail.png",
|
|
1836
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2201/VFB_00101567/thumbnailT.png",
|
|
1837
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2201/VFB_00101567/volume.nrrd",
|
|
1838
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2201/VFB_00101567/volume.wlz",
|
|
1839
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2201/VFB_00101567/volume_man.obj",
|
|
1840
|
-
"index": 39,
|
|
1841
|
-
"type_label": "adult antennal lobe",
|
|
1842
|
-
"type_id": "FBbt_00007401"
|
|
1843
|
-
},
|
|
1844
|
-
"40": {
|
|
1845
|
-
"id": "VFB_00102212",
|
|
1846
|
-
"label": "VES on JRC2018Unisex adult brain",
|
|
1847
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2212/VFB_00101567/thumbnail.png",
|
|
1848
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2212/VFB_00101567/thumbnailT.png",
|
|
1849
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2212/VFB_00101567/volume.nrrd",
|
|
1850
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2212/VFB_00101567/volume.wlz",
|
|
1851
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2212/VFB_00101567/volume_man.obj",
|
|
1852
|
-
"index": 40,
|
|
1853
|
-
"type_label": "vest",
|
|
1854
|
-
"type_id": "FBbt_00040041"
|
|
1855
|
-
},
|
|
1856
|
-
"41": {
|
|
1857
|
-
"id": "VFB_00102213",
|
|
1858
|
-
"label": "EPA on JRC2018Unisex adult brain",
|
|
1859
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2213/VFB_00101567/thumbnail.png",
|
|
1860
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2213/VFB_00101567/thumbnailT.png",
|
|
1861
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2213/VFB_00101567/volume.nrrd",
|
|
1862
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2213/VFB_00101567/volume.wlz",
|
|
1863
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2213/VFB_00101567/volume_man.obj",
|
|
1864
|
-
"index": 41,
|
|
1865
|
-
"type_label": "epaulette",
|
|
1866
|
-
"type_id": "FBbt_00040040"
|
|
1867
|
-
},
|
|
1868
|
-
"42": {
|
|
1869
|
-
"id": "VFB_00102214",
|
|
1870
|
-
"label": "GOR on JRC2018Unisex adult brain",
|
|
1871
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2214/VFB_00101567/thumbnail.png",
|
|
1872
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2214/VFB_00101567/thumbnailT.png",
|
|
1873
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2214/VFB_00101567/volume.nrrd",
|
|
1874
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2214/VFB_00101567/volume.wlz",
|
|
1875
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2214/VFB_00101567/volume_man.obj",
|
|
1876
|
-
"index": 42,
|
|
1877
|
-
"type_label": "gorget",
|
|
1878
|
-
"type_id": "FBbt_00040039"
|
|
1879
|
-
},
|
|
1880
|
-
"43": {
|
|
1881
|
-
"id": "VFB_00102215",
|
|
1882
|
-
"label": "SPS on JRC2018Unisex adult brain",
|
|
1883
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2215/VFB_00101567/thumbnail.png",
|
|
1884
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2215/VFB_00101567/thumbnailT.png",
|
|
1885
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2215/VFB_00101567/volume.nrrd",
|
|
1886
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2215/VFB_00101567/volume.wlz",
|
|
1887
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2215/VFB_00101567/volume_man.obj",
|
|
1888
|
-
"index": 43,
|
|
1889
|
-
"type_label": "superior posterior slope",
|
|
1890
|
-
"type_id": "FBbt_00045040"
|
|
1891
|
-
},
|
|
1892
|
-
"44": {
|
|
1893
|
-
"id": "VFB_00102218",
|
|
1894
|
-
"label": "IPS on JRC2018Unisex adult brain",
|
|
1895
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2218/VFB_00101567/thumbnail.png",
|
|
1896
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2218/VFB_00101567/thumbnailT.png",
|
|
1897
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2218/VFB_00101567/volume.nrrd",
|
|
1898
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2218/VFB_00101567/volume.wlz",
|
|
1899
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2218/VFB_00101567/volume_man.obj",
|
|
1900
|
-
"index": 44,
|
|
1901
|
-
"type_label": "inferior posterior slope",
|
|
1902
|
-
"type_id": "FBbt_00045046"
|
|
1903
|
-
},
|
|
1904
|
-
"45": {
|
|
1905
|
-
"id": "VFB_00102271",
|
|
1906
|
-
"label": "SAD on JRC2018Unisex adult brain",
|
|
1907
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2271/VFB_00101567/thumbnail.png",
|
|
1908
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2271/VFB_00101567/thumbnailT.png",
|
|
1909
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2271/VFB_00101567/volume.nrrd",
|
|
1910
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2271/VFB_00101567/volume.wlz",
|
|
1911
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2271/VFB_00101567/volume_man.obj",
|
|
1912
|
-
"index": 45,
|
|
1913
|
-
"type_label": "saddle",
|
|
1914
|
-
"type_id": "FBbt_00045048"
|
|
1915
|
-
},
|
|
1916
|
-
"46": {
|
|
1917
|
-
"id": "VFB_00102273",
|
|
1918
|
-
"label": "AMMC on JRC2018Unisex adult brain",
|
|
1919
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2273/VFB_00101567/thumbnail.png",
|
|
1920
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2273/VFB_00101567/thumbnailT.png",
|
|
1921
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2273/VFB_00101567/volume.nrrd",
|
|
1922
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2273/VFB_00101567/volume.wlz",
|
|
1923
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2273/VFB_00101567/volume_man.obj",
|
|
1924
|
-
"index": 46,
|
|
1925
|
-
"type_label": "antennal mechanosensory and motor center",
|
|
1926
|
-
"type_id": "FBbt_00003982"
|
|
1927
|
-
},
|
|
1928
|
-
"47": {
|
|
1929
|
-
"id": "VFB_00102274",
|
|
1930
|
-
"label": "FLA on JRC2018Unisex adult brain",
|
|
1931
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2274/VFB_00101567/thumbnail.png",
|
|
1932
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2274/VFB_00101567/thumbnailT.png",
|
|
1933
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2274/VFB_00101567/volume.nrrd",
|
|
1934
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2274/VFB_00101567/volume.wlz",
|
|
1935
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2274/VFB_00101567/volume_man.obj",
|
|
1936
|
-
"index": 47,
|
|
1937
|
-
"type_label": "flange",
|
|
1938
|
-
"type_id": "FBbt_00045050"
|
|
1939
|
-
},
|
|
1940
|
-
"48": {
|
|
1941
|
-
"id": "VFB_00102275",
|
|
1942
|
-
"label": "CAN on JRC2018Unisex adult brain",
|
|
1943
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2275/VFB_00101567/thumbnail.png",
|
|
1944
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2275/VFB_00101567/thumbnailT.png",
|
|
1945
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2275/VFB_00101567/volume.nrrd",
|
|
1946
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2275/VFB_00101567/volume.wlz",
|
|
1947
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2275/VFB_00101567/volume_man.obj",
|
|
1948
|
-
"index": 48,
|
|
1949
|
-
"type_label": "cantle",
|
|
1950
|
-
"type_id": "FBbt_00045051"
|
|
1951
|
-
},
|
|
1952
|
-
"49": {
|
|
1953
|
-
"id": "VFB_00102276",
|
|
1954
|
-
"label": "PRW on JRC2018Unisex adult brain",
|
|
1955
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2276/VFB_00101567/thumbnail.png",
|
|
1956
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2276/VFB_00101567/thumbnailT.png",
|
|
1957
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2276/VFB_00101567/volume.nrrd",
|
|
1958
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2276/VFB_00101567/volume.wlz",
|
|
1959
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2276/VFB_00101567/volume_man.obj",
|
|
1960
|
-
"index": 49,
|
|
1961
|
-
"type_label": "prow",
|
|
1962
|
-
"type_id": "FBbt_00040051"
|
|
1963
|
-
},
|
|
1964
|
-
"50": {
|
|
1965
|
-
"id": "VFB_00102280",
|
|
1966
|
-
"label": "GNG on JRC2018Unisex adult brain",
|
|
1967
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2280/VFB_00101567/thumbnail.png",
|
|
1968
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2280/VFB_00101567/thumbnailT.png",
|
|
1969
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2280/VFB_00101567/volume.nrrd",
|
|
1970
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2280/VFB_00101567/volume.wlz",
|
|
1971
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2280/VFB_00101567/volume_man.obj",
|
|
1972
|
-
"index": 50,
|
|
1973
|
-
"type_label": "adult gnathal ganglion",
|
|
1974
|
-
"type_id": "FBbt_00014013"
|
|
1975
|
-
},
|
|
1976
|
-
"59": {
|
|
1977
|
-
"id": "VFB_00102281",
|
|
1978
|
-
"label": "GA on JRC2018Unisex adult brain",
|
|
1979
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2281/VFB_00101567/thumbnail.png",
|
|
1980
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2281/VFB_00101567/thumbnailT.png",
|
|
1981
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2281/VFB_00101567/volume.nrrd",
|
|
1982
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2281/VFB_00101567/volume.wlz",
|
|
1983
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2281/VFB_00101567/volume_man.obj",
|
|
1984
|
-
"index": 59,
|
|
1985
|
-
"type_label": "gall",
|
|
1986
|
-
"type_id": "FBbt_00040060"
|
|
1987
|
-
},
|
|
1988
|
-
"94": {
|
|
1989
|
-
"id": "VFB_00102282",
|
|
1990
|
-
"label": "NO on JRC2018Unisex adult brain",
|
|
1991
|
-
"thumbnail": "https://www.virtualflybrain.org/data/VFB/i/0010/2282/VFB_00101567/thumbnail.png",
|
|
1992
|
-
"thumbnail_transparent": "https://www.virtualflybrain.org/data/VFB/i/0010/2282/VFB_00101567/thumbnailT.png",
|
|
1993
|
-
"nrrd": "https://www.virtualflybrain.org/data/VFB/i/0010/2282/VFB_00101567/volume.nrrd",
|
|
1994
|
-
"wlz": "https://www.virtualflybrain.org/data/VFB/i/0010/2282/VFB_00101567/volume.wlz",
|
|
1995
|
-
"obj": "https://www.virtualflybrain.org/data/VFB/i/0010/2282/VFB_00101567/volume_man.obj",
|
|
1996
|
-
"index": 94,
|
|
1997
|
-
"type_label": "nodulus",
|
|
1998
|
-
"type_id": "FBbt_00003680"
|
|
1999
|
-
}
|
|
2000
|
-
},
|
|
2001
|
-
"Licenses": {
|
|
2002
|
-
"0": {
|
|
2003
|
-
"iri": "http://virtualflybrain.org/reports/VFBlicense_CC_BY_NC_SA_4_0",
|
|
2004
|
-
"short_form": "VFBlicense_CC_BY_NC_SA_4_0",
|
|
2005
|
-
"label": "CC-BY-NC-SA_4.0",
|
|
2006
|
-
"icon": "http://mirrors.creativecommons.org/presskit/buttons/88x31/png/by-nc-sa.png",
|
|
2007
|
-
"source": "JRC 2018 templates & ROIs",
|
|
2008
|
-
"source_iri": "http://virtualflybrain.org/reports/JRC2018"
|
|
2009
|
-
}
|
|
2010
|
-
},
|
|
2011
|
-
"Publications": [],
|
|
2012
|
-
"Synonyms": []
|
|
2013
|
-
}
|
|
2014
|
-
```
|
|
2015
|
-
|
|
2016
|
-
Queries:
|
|
2017
|
-
```python
|
|
2018
|
-
vfb.get_instances('FBbt_00003748', return_dataframe=False)
|
|
2019
|
-
```
|
|
2020
|
-
```json
|
|
2021
|
-
{
|
|
2022
|
-
"headers": {
|
|
2023
|
-
"id": {
|
|
2024
|
-
"title": "Add",
|
|
2025
|
-
"type": "selection_id",
|
|
2026
|
-
"order": -1
|
|
2027
|
-
},
|
|
2028
|
-
"label": {
|
|
2029
|
-
"title": "Name",
|
|
2030
|
-
"type": "markdown",
|
|
2031
|
-
"order": 0,
|
|
2032
|
-
"sort": {
|
|
2033
|
-
"0": "Asc"
|
|
2034
|
-
}
|
|
2035
|
-
},
|
|
2036
|
-
"parent": {
|
|
2037
|
-
"title": "Parent Type",
|
|
2038
|
-
"type": "markdown",
|
|
2039
|
-
"order": 1
|
|
2040
|
-
},
|
|
2041
|
-
"template": {
|
|
2042
|
-
"title": "Template",
|
|
2043
|
-
"type": "markdown",
|
|
2044
|
-
"order": 4
|
|
2045
|
-
},
|
|
2046
|
-
"tags": {
|
|
2047
|
-
"title": "Gross Types",
|
|
2048
|
-
"type": "tags",
|
|
2049
|
-
"order": 3
|
|
2050
|
-
},
|
|
2051
|
-
"source": {
|
|
2052
|
-
"title": "Data Source",
|
|
2053
|
-
"type": "markdown",
|
|
2054
|
-
"order": 5
|
|
2055
|
-
},
|
|
2056
|
-
"source_id": {
|
|
2057
|
-
"title": "Data Source",
|
|
2058
|
-
"type": "markdown",
|
|
2059
|
-
"order": 6
|
|
2060
|
-
},
|
|
2061
|
-
"dataset": {
|
|
2062
|
-
"title": "Dataset",
|
|
2063
|
-
"type": "markdown",
|
|
2064
|
-
"order": 7
|
|
2065
|
-
},
|
|
2066
|
-
"license": {
|
|
2067
|
-
"title": "License",
|
|
2068
|
-
"type": "markdown",
|
|
2069
|
-
"order": 8
|
|
2070
|
-
},
|
|
2071
|
-
"thumbnail": {
|
|
2072
|
-
"title": "Thumbnail",
|
|
2073
|
-
"type": "markdown",
|
|
2074
|
-
"order": 9
|
|
2075
|
-
}
|
|
2076
|
-
},
|
|
2077
|
-
"rows": [
|
|
2078
|
-
{
|
|
2079
|
-
"id": "VFB_00102107",
|
|
2080
|
-
"label": "[ME on JRC2018Unisex adult brain](VFB_00102107)",
|
|
2081
|
-
"tags": "Nervous_system|Adult|Visual_system|Synaptic_neuropil_domain",
|
|
2082
|
-
"parent": "[medulla](FBbt_00003748)",
|
|
2083
|
-
"source": "",
|
|
2084
|
-
"source_id": "",
|
|
2085
|
-
"template": "[JRC2018U](VFB_00101567)",
|
|
2086
|
-
"dataset": "[JRC 2018 templates & ROIs](JRC2018)",
|
|
2087
|
-
"license": "",
|
|
2088
|
-
"thumbnail": "[](VFB_00101567,VFB_00102107)"
|
|
2089
|
-
},
|
|
2090
|
-
{
|
|
2091
|
-
"id": "VFB_00101385",
|
|
2092
|
-
"label": "[ME(R) on JRC_FlyEM_Hemibrain](VFB_00101385)",
|
|
2093
|
-
"tags": "Nervous_system|Adult|Visual_system|Synaptic_neuropil_domain",
|
|
2094
|
-
"parent": "[medulla](FBbt_00003748)",
|
|
2095
|
-
"source": "",
|
|
2096
|
-
"source_id": "",
|
|
2097
|
-
"template": "[JRCFIB2018Fum](VFB_00101384)",
|
|
2098
|
-
"dataset": "[JRC_FlyEM_Hemibrain painted domains](Xu2020roi)",
|
|
2099
|
-
"license": "",
|
|
2100
|
-
"thumbnail": "[ on JRC_FlyEM_Hemibrain aligned to JRCFIB2018Fum')](VFB_00101384,VFB_00101385)"
|
|
2101
|
-
},
|
|
2102
|
-
{
|
|
2103
|
-
"id": "VFB_00030810",
|
|
2104
|
-
"label": "[medulla on adult brain template Ito2014](VFB_00030810)",
|
|
2105
|
-
"tags": "Nervous_system|Visual_system|Adult|Synaptic_neuropil_domain",
|
|
2106
|
-
"parent": "[medulla](FBbt_00003748)",
|
|
2107
|
-
"source": "",
|
|
2108
|
-
"source_id": "",
|
|
2109
|
-
"template": "[adult brain template Ito2014](VFB_00030786)",
|
|
2110
|
-
"dataset": "[BrainName neuropils and tracts - Ito half-brain](BrainName_Ito_half_brain)",
|
|
2111
|
-
"license": "",
|
|
2112
|
-
"thumbnail": "[](VFB_00030786,VFB_00030810)"
|
|
2113
|
-
},
|
|
2114
|
-
{
|
|
2115
|
-
"id": "VFB_00030624",
|
|
2116
|
-
"label": "[medulla on adult brain template JFRC2](VFB_00030624)",
|
|
2117
|
-
"tags": "Nervous_system|Visual_system|Adult|Synaptic_neuropil_domain",
|
|
2118
|
-
"parent": "[medulla](FBbt_00003748)",
|
|
2119
|
-
"source": "",
|
|
2120
|
-
"source_id": "",
|
|
2121
|
-
"template": "[JFRC2](VFB_00017894)",
|
|
2122
|
-
"dataset": "[BrainName neuropils on adult brain JFRC2 (Jenett, Shinomya)](JenettShinomya_BrainName)",
|
|
2123
|
-
"license": "",
|
|
2124
|
-
"thumbnail": "[](VFB_00017894,VFB_00030624)"
|
|
2125
|
-
}
|
|
2126
|
-
],
|
|
2127
|
-
"count": 4
|
|
2128
|
-
}
|
|
2129
|
-
```
|
|
2130
|
-
|
|
2131
|
-
```python
|
|
2132
|
-
vfb.get_templates(return_dataframe=False)
|
|
2133
|
-
```
|
|
2134
|
-
```json
|
|
2135
|
-
{
|
|
2136
|
-
"headers": {
|
|
2137
|
-
"id": {
|
|
2138
|
-
"title": "Add",
|
|
2139
|
-
"type": "selection_id",
|
|
2140
|
-
"order": -1
|
|
2141
|
-
},
|
|
2142
|
-
"order": {
|
|
2143
|
-
"title": "Order",
|
|
2144
|
-
"type": "numeric",
|
|
2145
|
-
"order": 1,
|
|
2146
|
-
"sort": {
|
|
2147
|
-
"0": "Asc"
|
|
2148
|
-
}
|
|
2149
|
-
},
|
|
2150
|
-
"name": {
|
|
2151
|
-
"title": "Name",
|
|
2152
|
-
"type": "markdown",
|
|
2153
|
-
"order": 1,
|
|
2154
|
-
"sort": {
|
|
2155
|
-
"1": "Asc"
|
|
2156
|
-
}
|
|
2157
|
-
},
|
|
2158
|
-
"tags": {
|
|
2159
|
-
"title": "Tags",
|
|
2160
|
-
"type": "tags",
|
|
2161
|
-
"order": 2
|
|
2162
|
-
},
|
|
2163
|
-
"thumbnail": {
|
|
2164
|
-
"title": "Thumbnail",
|
|
2165
|
-
"type": "markdown",
|
|
2166
|
-
"order": 9
|
|
2167
|
-
},
|
|
2168
|
-
"dataset": {
|
|
2169
|
-
"title": "Dataset",
|
|
2170
|
-
"type": "metadata",
|
|
2171
|
-
"order": 3
|
|
2172
|
-
},
|
|
2173
|
-
"license": {
|
|
2174
|
-
"title": "License",
|
|
2175
|
-
"type": "metadata",
|
|
2176
|
-
"order": 4
|
|
2177
|
-
}
|
|
2178
|
-
},
|
|
2179
|
-
"rows": [
|
|
2180
|
-
{
|
|
2181
|
-
"id": "VFB_00200000",
|
|
2182
|
-
"order": 2,
|
|
2183
|
-
"name": "[JRCVNC2018U](VFB_00200000)",
|
|
2184
|
-
"tags": "Nervous_system|Adult|Ganglion",
|
|
2185
|
-
"thumbnail": "[](VFB_00200000)",
|
|
2186
|
-
"dataset": "[JRC 2018 templates & ROIs](JRC2018)",
|
|
2187
|
-
"license": "[CC-BY-NC-SA](VFBlicense_CC_BY_NC_SA_4_0)"
|
|
2188
|
-
},
|
|
2189
|
-
{
|
|
2190
|
-
"id": "VFB_00120000",
|
|
2191
|
-
"order": 10,
|
|
2192
|
-
"name": "[Adult T1 Leg (Kuan2020)](VFB_00120000)",
|
|
2193
|
-
"tags": "Adult|Anatomy",
|
|
2194
|
-
"thumbnail": "[')](VFB_00120000)",
|
|
2195
|
-
"dataset": "[Millimeter-scale imaging of a Drosophila leg at single-neuron resolution](Kuan2020)",
|
|
2196
|
-
"license": "[CC_BY](VFBlicense_CC_BY_4_0)"
|
|
2197
|
-
},
|
|
2198
|
-
{
|
|
2199
|
-
"id": "VFB_00110000",
|
|
2200
|
-
"order": 9,
|
|
2201
|
-
"name": "[Adult Head (McKellar2020)](VFB_00110000)",
|
|
2202
|
-
"tags": "Adult|Anatomy",
|
|
2203
|
-
"thumbnail": "[')](VFB_00110000)",
|
|
2204
|
-
"dataset": "[GAL4 lines from McKellar et al., 2020](McKellar2020)",
|
|
2205
|
-
"license": "[CC_BY_SA](VFBlicense_CC_BY_SA_4_0)"
|
|
2206
|
-
},
|
|
2207
|
-
{
|
|
2208
|
-
"id": "VFB_00101567",
|
|
2209
|
-
"order": 1,
|
|
2210
|
-
"name": "[JRC2018U](VFB_00101567)",
|
|
2211
|
-
"tags": "Nervous_system|Adult",
|
|
2212
|
-
"thumbnail": "[](VFB_00101567)",
|
|
2213
|
-
"dataset": "[JRC 2018 templates & ROIs](JRC2018)",
|
|
2214
|
-
"license": "[CC-BY-NC-SA](VFBlicense_CC_BY_NC_SA_4_0)"
|
|
2215
|
-
},
|
|
2216
|
-
{
|
|
2217
|
-
"id": "VFB_00101384",
|
|
2218
|
-
"order": 4,
|
|
2219
|
-
"name": "[JRCFIB2018Fum](VFB_00101384)",
|
|
2220
|
-
"tags": "Nervous_system|Adult",
|
|
2221
|
-
"thumbnail": "[](VFB_00101384)",
|
|
2222
|
-
"dataset": "[JRC_FlyEM_Hemibrain painted domains](Xu2020roi)",
|
|
2223
|
-
"license": "[CC_BY](VFBlicense_CC_BY_4_0)"
|
|
2224
|
-
},
|
|
2225
|
-
{
|
|
2226
|
-
"id": "VFB_00100000",
|
|
2227
|
-
"order": 7,
|
|
2228
|
-
"name": "[COURT2018VNS](VFB_00100000)",
|
|
2229
|
-
"tags": "Nervous_system|Adult|Ganglion",
|
|
2230
|
-
"thumbnail": "[](VFB_00100000)",
|
|
2231
|
-
"dataset": "[Adult VNS neuropils (Court2017)](Court2017)",
|
|
2232
|
-
"license": "[CC_BY_SA](VFBlicense_CC_BY_SA_4_0)"
|
|
2233
|
-
},
|
|
2234
|
-
{
|
|
2235
|
-
"id": "VFB_00050000",
|
|
2236
|
-
"order": 5,
|
|
2237
|
-
"name": "[L1 larval CNS ssTEM - Cardona/Janelia](VFB_00050000)",
|
|
2238
|
-
"tags": "Nervous_system|Larva",
|
|
2239
|
-
"thumbnail": "[](VFB_00050000)",
|
|
2240
|
-
"dataset": "[larval hugin neurons - EM (Schlegel2016)](Schlegel2016), [Neurons involved in larval fast escape response - EM (Ohyama2016)](Ohyama2015)",
|
|
2241
|
-
"license": "[CC_BY](VFBlicense_CC_BY_4_0), [CC_BY_SA](VFBlicense_CC_BY_SA_4_0)"
|
|
2242
|
-
},
|
|
2243
|
-
{
|
|
2244
|
-
"id": "VFB_00049000",
|
|
2245
|
-
"order": 6,
|
|
2246
|
-
"name": "[L3 CNS template - Wood2018](VFB_00049000)",
|
|
2247
|
-
"tags": "Nervous_system|Larva",
|
|
2248
|
-
"thumbnail": "[](VFB_00049000)",
|
|
2249
|
-
"dataset": "[L3 Larval CNS Template (Truman2016)](Truman2016)",
|
|
2250
|
-
"license": "[CC_BY_SA](VFBlicense_CC_BY_SA_4_0)"
|
|
2251
|
-
},
|
|
2252
|
-
{
|
|
2253
|
-
"id": "VFB_00030786",
|
|
2254
|
-
"order": 8,
|
|
2255
|
-
"name": "[adult brain template Ito2014](VFB_00030786)",
|
|
2256
|
-
"tags": "Nervous_system|Adult",
|
|
2257
|
-
"thumbnail": "[](VFB_00030786)",
|
|
2258
|
-
"dataset": "[BrainName neuropils and tracts - Ito half-brain](BrainName_Ito_half_brain)",
|
|
2259
|
-
"license": "[CC_BY_SA](VFBlicense_CC_BY_SA_4_0)"
|
|
2260
|
-
},
|
|
2261
|
-
{
|
|
2262
|
-
"id": "VFB_00017894",
|
|
2263
|
-
"order": 3,
|
|
2264
|
-
"name": "[JFRC2](VFB_00017894)",
|
|
2265
|
-
"tags": "Nervous_system|Adult",
|
|
2266
|
-
"thumbnail": "[](VFB_00017894)",
|
|
2267
|
-
"dataset": "[FlyLight - GMR GAL4 collection (Jenett2012)](Jenett2012)",
|
|
2268
|
-
"license": "[CC-BY-NC-SA](VFBlicense_CC_BY_NC_SA_4_0)"
|
|
2269
|
-
}
|
|
2270
|
-
],
|
|
2271
|
-
"count": 10
|
|
2272
|
-
}
|
|
2273
|
-
```
|