vfbquery 0.4.0__tar.gz → 0.5.0__tar.gz
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.
- {vfbquery-0.4.0/src/vfbquery.egg-info → vfbquery-0.5.0}/PKG-INFO +1023 -65
- {vfbquery-0.4.0 → vfbquery-0.5.0}/README.md +1023 -65
- {vfbquery-0.4.0 → vfbquery-0.5.0}/setup.py +1 -1
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/test/readme_parser.py +35 -1
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/test/term_info_queries_test.py +11 -11
- vfbquery-0.5.0/src/test/test_dataset_template_queries.py +138 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/test/test_default_caching.py +15 -11
- vfbquery-0.5.0/src/test/test_expression_overlaps.py +183 -0
- vfbquery-0.5.0/src/test/test_expression_pattern_fragments.py +123 -0
- vfbquery-0.5.0/src/test/test_images_neurons.py +152 -0
- vfbquery-0.5.0/src/test/test_images_that_develop_from.py +112 -0
- vfbquery-0.5.0/src/test/test_lineage_clones_in.py +190 -0
- vfbquery-0.5.0/src/test/test_nblast_queries.py +124 -0
- vfbquery-0.5.0/src/test/test_neuron_classes_fasciculating.py +187 -0
- vfbquery-0.5.0/src/test/test_neuron_inputs.py +193 -0
- vfbquery-0.5.0/src/test/test_neuron_neuron_connectivity.py +89 -0
- vfbquery-0.5.0/src/test/test_neuron_region_connectivity.py +117 -0
- vfbquery-0.5.0/src/test/test_neurons_part_here.py +204 -0
- vfbquery-0.5.0/src/test/test_new_owlery_queries.py +282 -0
- vfbquery-0.5.0/src/test/test_publication_transgene_queries.py +101 -0
- vfbquery-0.5.0/src/test/test_query_performance.py +743 -0
- vfbquery-0.5.0/src/test/test_similar_morphology.py +177 -0
- vfbquery-0.5.0/src/test/test_tracts_nerves_innervating.py +188 -0
- vfbquery-0.5.0/src/test/test_transcriptomics.py +223 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/vfbquery/__init__.py +22 -1
- vfbquery-0.5.0/src/vfbquery/neo4j_client.py +120 -0
- vfbquery-0.5.0/src/vfbquery/owlery_client.py +463 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/vfbquery/solr_fetcher.py +1 -1
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/vfbquery/solr_result_cache.py +238 -53
- vfbquery-0.5.0/src/vfbquery/vfb_queries.py +3929 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0/src/vfbquery.egg-info}/PKG-INFO +1023 -65
- vfbquery-0.5.0/src/vfbquery.egg-info/SOURCES.txt +43 -0
- vfbquery-0.4.0/src/vfbquery/vfb_queries.py +0 -1598
- vfbquery-0.4.0/src/vfbquery.egg-info/SOURCES.txt +0 -23
- {vfbquery-0.4.0 → vfbquery-0.5.0}/LICENSE +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/pyproject.toml +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/setup.cfg +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/test/__init__.py +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/test/test_examples_diff.py +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/vfbquery/cache_enhancements.py +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/vfbquery/cached_functions.py +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/vfbquery/solr_cache_integration.py +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/vfbquery/term_info_queries.py +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/vfbquery/test_utils.py +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/vfbquery.egg-info/dependency_links.txt +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/vfbquery.egg-info/requires.txt +0 -0
- {vfbquery-0.4.0 → vfbquery-0.5.0}/src/vfbquery.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: vfbquery
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.5.0
|
|
4
4
|
Summary: Wrapper for querying VirtualFlyBrain knowledge graph.
|
|
5
5
|
Home-page: https://github.com/VirtualFlyBrain/VFBquery
|
|
6
6
|
Author: VirtualFlyBrain
|
|
@@ -34,7 +34,7 @@ import vfbquery as vfb
|
|
|
34
34
|
```
|
|
35
35
|
Class example:
|
|
36
36
|
```python
|
|
37
|
-
vfb.get_term_info('FBbt_00003748')
|
|
37
|
+
vfb.get_term_info('FBbt_00003748', force_refresh=True)
|
|
38
38
|
```
|
|
39
39
|
```json
|
|
40
40
|
{
|
|
@@ -117,34 +117,1001 @@ vfb.get_term_info('FBbt_00003748')
|
|
|
117
117
|
"id": "VFB_00102107",
|
|
118
118
|
"label": "[ME on JRC2018Unisex adult brain](VFB_00102107)",
|
|
119
119
|
"tags": "Nervous_system|Adult|Visual_system|Synaptic_neuropil_domain",
|
|
120
|
-
"thumbnail": "[](VFB_00101567,VFB_00102107)"
|
|
121
121
|
},
|
|
122
122
|
{
|
|
123
123
|
"id": "VFB_00101385",
|
|
124
|
-
"label": "[ME
|
|
124
|
+
"label": "[ME(R) on JRC_FlyEM_Hemibrain](VFB_00101385)",
|
|
125
125
|
"tags": "Nervous_system|Adult|Visual_system|Synaptic_neuropil_domain",
|
|
126
|
-
"thumbnail": "[ on JRC_FlyEM_Hemibrain aligned to JRCFIB2018Fum')](VFB_00101384,VFB_00101385)"
|
|
127
127
|
},
|
|
128
128
|
{
|
|
129
129
|
"id": "VFB_00030810",
|
|
130
130
|
"label": "[medulla on adult brain template Ito2014](VFB_00030810)",
|
|
131
|
-
"tags": "Nervous_system|Adult|
|
|
131
|
+
"tags": "Nervous_system|Visual_system|Adult|Synaptic_neuropil_domain",
|
|
132
132
|
"thumbnail": "[](VFB_00030786,VFB_00030810)"
|
|
133
133
|
},
|
|
134
134
|
{
|
|
135
|
-
"id": "VFB_00030624",
|
|
136
|
-
"label": "[medulla on adult brain template JFRC2](VFB_00030624)",
|
|
137
|
-
"tags": "Nervous_system|Adult|
|
|
138
|
-
"thumbnail": "[",
|
|
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)"
|
|
139
775
|
}
|
|
140
776
|
]
|
|
141
777
|
},
|
|
142
778
|
"output_format": "table",
|
|
143
|
-
"count":
|
|
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
|
|
144
1111
|
}
|
|
145
1112
|
],
|
|
146
|
-
"IsIndividual":
|
|
147
|
-
"IsClass":
|
|
1113
|
+
"IsIndividual": False,
|
|
1114
|
+
"IsClass": True,
|
|
148
1115
|
"Examples": {
|
|
149
1116
|
"VFB_00101384": [
|
|
150
1117
|
{
|
|
@@ -191,7 +1158,7 @@ vfb.get_term_info('FBbt_00003748')
|
|
|
191
1158
|
}
|
|
192
1159
|
]
|
|
193
1160
|
},
|
|
194
|
-
"IsTemplate":
|
|
1161
|
+
"IsTemplate": False,
|
|
195
1162
|
"Synonyms": [
|
|
196
1163
|
{
|
|
197
1164
|
"label": "ME",
|
|
@@ -1122,7 +2089,7 @@ vfb.get_instances('FBbt_00003748', return_dataframe=False)
|
|
|
1122
2089
|
},
|
|
1123
2090
|
{
|
|
1124
2091
|
"id": "VFB_00101385",
|
|
1125
|
-
"label": "[ME
|
|
2092
|
+
"label": "[ME(R) on JRC_FlyEM_Hemibrain](VFB_00101385)",
|
|
1126
2093
|
"tags": "Nervous_system|Adult|Visual_system|Synaptic_neuropil_domain",
|
|
1127
2094
|
"parent": "[medulla](FBbt_00003748)",
|
|
1128
2095
|
"source": "",
|
|
@@ -1130,7 +2097,7 @@ vfb.get_instances('FBbt_00003748', return_dataframe=False)
|
|
|
1130
2097
|
"template": "[JRCFIB2018Fum](VFB_00101384)",
|
|
1131
2098
|
"dataset": "[JRC_FlyEM_Hemibrain painted domains](Xu2020roi)",
|
|
1132
2099
|
"license": "",
|
|
1133
|
-
"thumbnail": "[ on JRC_FlyEM_Hemibrain aligned to JRCFIB2018Fum')](VFB_00101384,VFB_00101385)"
|
|
1134
2101
|
},
|
|
1135
2102
|
{
|
|
1136
2103
|
"id": "VFB_00030810",
|
|
@@ -1152,7 +2119,7 @@ vfb.get_instances('FBbt_00003748', return_dataframe=False)
|
|
|
1152
2119
|
"source": "",
|
|
1153
2120
|
"source_id": "",
|
|
1154
2121
|
"template": "[JFRC2](VFB_00017894)",
|
|
1155
|
-
"dataset": "[BrainName neuropils on adult brain JFRC2
|
|
2122
|
+
"dataset": "[BrainName neuropils on adult brain JFRC2 (Jenett, Shinomya)](JenettShinomya_BrainName)",
|
|
1156
2123
|
"license": "",
|
|
1157
2124
|
"thumbnail": "[](VFB_00017894,VFB_00030624)"
|
|
1158
2125
|
}
|
|
@@ -1210,15 +2177,6 @@ vfb.get_templates(return_dataframe=False)
|
|
|
1210
2177
|
}
|
|
1211
2178
|
},
|
|
1212
2179
|
"rows": [
|
|
1213
|
-
{
|
|
1214
|
-
"id": "VFB_00101567",
|
|
1215
|
-
"order": 1,
|
|
1216
|
-
"name": "[JRC2018U](VFB_00101567)",
|
|
1217
|
-
"tags": "Nervous_system|Adult",
|
|
1218
|
-
"thumbnail": "[](VFB_00101567)",
|
|
1219
|
-
"dataset": "[JRC 2018 templates & ROIs](JRC2018)",
|
|
1220
|
-
"license": "[CC-BY-NC-SA](VFBlicense_CC_BY_NC_SA_4_0)"
|
|
1221
|
-
},
|
|
1222
2180
|
{
|
|
1223
2181
|
"id": "VFB_00200000",
|
|
1224
2182
|
"order": 2,
|
|
@@ -1229,12 +2187,30 @@ vfb.get_templates(return_dataframe=False)
|
|
|
1229
2187
|
"license": "[CC-BY-NC-SA](VFBlicense_CC_BY_NC_SA_4_0)"
|
|
1230
2188
|
},
|
|
1231
2189
|
{
|
|
1232
|
-
"id": "
|
|
1233
|
-
"order":
|
|
1234
|
-
"name": "[
|
|
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)",
|
|
1235
2211
|
"tags": "Nervous_system|Adult",
|
|
1236
|
-
"thumbnail": "[](VFB_00101567)",
|
|
2213
|
+
"dataset": "[JRC 2018 templates & ROIs](JRC2018)",
|
|
1238
2214
|
"license": "[CC-BY-NC-SA](VFBlicense_CC_BY_NC_SA_4_0)"
|
|
1239
2215
|
},
|
|
1240
2216
|
{
|
|
@@ -1247,12 +2223,12 @@ vfb.get_templates(return_dataframe=False)
|
|
|
1247
2223
|
"license": "[CC_BY](VFBlicense_CC_BY_4_0)"
|
|
1248
2224
|
},
|
|
1249
2225
|
{
|
|
1250
|
-
"id": "
|
|
1251
|
-
"order":
|
|
1252
|
-
"name": "[
|
|
1253
|
-
"tags": "Nervous_system|
|
|
1254
|
-
"thumbnail": "[",
|
|
2229
|
+
"tags": "Nervous_system|Adult|Ganglion",
|
|
2230
|
+
"thumbnail": "[](VFB_00100000)",
|
|
2231
|
+
"dataset": "[Adult VNS neuropils (Court2017)](Court2017)",
|
|
1256
2232
|
"license": "[CC_BY_SA](VFBlicense_CC_BY_SA_4_0)"
|
|
1257
2233
|
},
|
|
1258
2234
|
{
|
|
@@ -1261,8 +2237,8 @@ vfb.get_templates(return_dataframe=False)
|
|
|
1261
2237
|
"name": "[L1 larval CNS ssTEM - Cardona/Janelia](VFB_00050000)",
|
|
1262
2238
|
"tags": "Nervous_system|Larva",
|
|
1263
2239
|
"thumbnail": "[](VFB_00050000)",
|
|
1264
|
-
"dataset": "[larval hugin neurons - EM
|
|
1265
|
-
"license": "[CC_BY](VFBlicense_CC_BY_4_0)"
|
|
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)"
|
|
1266
2242
|
},
|
|
1267
2243
|
{
|
|
1268
2244
|
"id": "VFB_00049000",
|
|
@@ -1270,16 +2246,7 @@ vfb.get_templates(return_dataframe=False)
|
|
|
1270
2246
|
"name": "[L3 CNS template - Wood2018](VFB_00049000)",
|
|
1271
2247
|
"tags": "Nervous_system|Larva",
|
|
1272
2248
|
"thumbnail": "[](VFB_00049000)",
|
|
1273
|
-
"dataset": "[L3 Larval CNS Template
|
|
1274
|
-
"license": "[CC_BY_SA](VFBlicense_CC_BY_SA_4_0)"
|
|
1275
|
-
},
|
|
1276
|
-
{
|
|
1277
|
-
"id": "VFB_00100000",
|
|
1278
|
-
"order": 7,
|
|
1279
|
-
"name": "[COURT2018VNS](VFB_00100000)",
|
|
1280
|
-
"tags": "Nervous_system|Adult|Ganglion",
|
|
1281
|
-
"thumbnail": "[](VFB_00100000)",
|
|
1282
|
-
"dataset": "[Adult VNS neuropils %28Court2017%29](Court2017)",
|
|
2249
|
+
"dataset": "[L3 Larval CNS Template (Truman2016)](Truman2016)",
|
|
1283
2250
|
"license": "[CC_BY_SA](VFBlicense_CC_BY_SA_4_0)"
|
|
1284
2251
|
},
|
|
1285
2252
|
{
|
|
@@ -1292,22 +2259,13 @@ vfb.get_templates(return_dataframe=False)
|
|
|
1292
2259
|
"license": "[CC_BY_SA](VFBlicense_CC_BY_SA_4_0)"
|
|
1293
2260
|
},
|
|
1294
2261
|
{
|
|
1295
|
-
"id": "
|
|
1296
|
-
"order":
|
|
1297
|
-
"name": "[
|
|
1298
|
-
"tags": "Adult
|
|
1299
|
-
"thumbnail": "[",
|
|
1307
|
-
"tags": "Adult|Anatomy",
|
|
1308
|
-
"thumbnail": "[')](VFB_00120000)",
|
|
1309
|
-
"dataset": "[Millimeter-scale imaging of a Drosophila leg at single-neuron resolution](Kuan2020)",
|
|
1310
|
-
"license": "[CC_BY](VFBlicense_CC_BY_4_0)"
|
|
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)"
|
|
1311
2269
|
}
|
|
1312
2270
|
],
|
|
1313
2271
|
"count": 10
|