Fetch (memoised) flywire cell type information from flytable
Source:R/flytable.R
flytable_cell_types.Rd
Fetch (memoised) flywire cell type information from flytable
Usage
flytable_cell_types(
pattern = NULL,
version = NULL,
timestamp = NULL,
target = c("type", "cell_type", "hemibrain_type", "cell_class", "super_class",
"ito_lee_hemilineage", "malecns_type", "all"),
table = c("info", "optic", "both"),
transfer_hemibrain_type = c("extra", "none", "all"),
cache = TRUE,
use_static = NA
)
Arguments
- pattern
Optional character vector specifying a pattern that cell types must match in a SQL
LIKE
statement executed byflytable_query
. The suffix_L
or_R
can be used to restricted to neurons annotated to the L or R hemisphere. See examples.- version
An optional CAVE materialisation version number. See
flywire_cave_query
for more details. Note also that the special signalling value ofTRUE
implies the latest locally available connectome dump.- timestamp
An optional timestamp as a string or POSIXct, interpreted as UTC when no timezone is specified.
- target
A character vector specifying which flytable columns
pattern
should match. The special value oftype
means eithercell_type
orhemibrain_type
should match. The special value ofall
means to match against any ofcell_type, hemibrain_type, cell_class
.- table
Which cell type information tables to use (
info
for brain,optic
for optic lobes orboth
).- transfer_hemibrain_type
Whether to transfer the
hemibrain_type
column into thecell_type
(default TRUE, see details)- cache
Whether to cache the results for 5m (default
TRUE
since the flytable query is is a little expensive)- use_static
Whether to use static cell type information (from Schlegel et al)
Details
when transfer_hemibrain_type=TRUE
, hemibrain_type
values will be transferred into the cell_type
column if
cell_type
is empty.
It seems that SQL LIKE searches (e.g. containing the %
symbol) do
not work for the ito_lee_hemilineage
column. You can still search
for exact matches or use full regular expression queries (which operate by
downloading all rows and then filtering on your machine).
Static cell type information is provided by Schlegel et 2023. See
flywire_annotations
github repository. It will be used by default when connection to the
pre-release Cambridge flytable is not available or when specified by
options(fafbseg.use_static_celltypes=TRUE)
. Note that presently only
one materialisation version (630) is supported for static data.
Examples
# \donttest{
flytable_cell_types("MBON%")
#> root_id supervoxel_id side flow super_class cell_class
#> 1 720575940631916281 79448854932107696 left intrinsic central MBON
#> 2 720575940623472716 80011942324010318 right intrinsic central MBON
#> 3 720575940638526278 80715286101144676 right intrinsic central MBON
#> 4 720575940629585602 81137979670302132 right intrinsic central MBON
#> 5 720575940637934308 81349085835581377 right intrinsic central MBON
#> 6 720575940632118343 78744342923662254 left intrinsic central MBON
#> 7 720575940609959637 78603948898007978 left intrinsic central MBON
#> 8 720575940638163428 78111986298788517 left intrinsic central MBON
#> 9 720575940630496374 81349223341739625 right intrinsic central MBON
#> 10 720575940642142861 78393323903110735 left intrinsic central MBON
#> 11 720575940611344078 80223254782485510 right intrinsic central MBON
#> 12 720575940634822751 81277549061520124 right intrinsic central MBON
#> 13 720575940617552340 79588561627810154 right intrinsic central MBON
#> 14 720575940624280328 81489685951698728 right intrinsic central MBON
#> 15 720575940617567206 78180912067538056 left intrinsic central MBON
#> 16 720575940643700640 80152611093049624 right intrinsic central MBON
#> 17 720575940611984760 81137979670297348 right intrinsic central MBON
#> 18 720575940614026193 80154466519131949 right intrinsic central MBON
#> 19 720575940633209647 78463486488950059 left intrinsic central MBON
#> 20 720575940623001480 80154535238527400 right intrinsic central MBON
#> 21 720575940613070485 81066305390179956 right intrinsic central MBON
#> 22 720575940614595218 78040449457502610 left intrinsic central MBON
#> 23 720575940636992368 80785654845309410 right intrinsic central MBON
#> 24 720575940621828443 79166830266640003 left intrinsic central MBON
#> 25 720575940637902938 78181599128215629 left intrinsic central MBON
#> 26 720575940638774606 78040449457461921 left intrinsic central MBON
#> 27 720575940639697827 80224766543977933 right intrinsic central MBON
#> 28 720575940626833021 78251349531485275 left intrinsic central MBON
#> 29 720575940618008859 77901086224032815 left intrinsic central MBON
#> 30 720575940635841143 78110818201436707 left intrinsic central MBON
#> 31 720575940618249797 80082723452177136 right intrinsic central MBON
#> 32 720575940629856515 77408917331762608 left intrinsic central MBON
#> 33 720575940623905719 80224972702135904 right intrinsic central MBON
#> 34 720575940629529722 78533992672102680 left intrinsic central MBON
#> 35 720575940624659943 80011255129536552 left intrinsic central MBON
#> 36 720575940624590316 79167173863853528 right intrinsic central MBON
#> 37 720575940645304430 79380479052758063 left intrinsic central MBON
#> 38 720575940612196850 81136880426746412 right intrinsic central MBON
#> 39 720575940630767959 78251486970442209 left intrinsic central MBON
#> 40 720575940640963747 76985537105536911 left intrinsic central MBON
#> 41 720575940628757547 78040449457463315 left intrinsic central MBON
#> 42 720575940627144069 79166692827138268 right intrinsic central MBON
#> 43 720575940610647416 81137979602919932 right intrinsic central MBON
#> 44 720575940622093436 81136880426744139 right intrinsic central MBON
#> 45 720575940624696810 78110818201651448 left intrinsic central MBON
#> 46 720575940629422086 77760348668670642 left intrinsic central MBON
#> 47 720575940615435217 81137979670303492 right intrinsic central MBON
#> 48 720575940650386553 78110818201681795 left intrinsic central MBON
#> 49 720575940639556467 81067610926141558 right intrinsic central MBON
#> 50 720575940636120986 81700242831237167 right intrinsic central MBON
#> 51 720575940617749538 80786135881765925 right intrinsic central MBON
#> 52 720575940617760257 81277549061455173 right intrinsic central MBON
#> 53 720575940619810389 79518055445188833 right intrinsic central MBON
#> 54 720575940634482783 81136605414678093 right intrinsic central MBON
#> 55 720575940613906454 78182286188838645 left intrinsic central MBON
#> 56 720575940626109315 81066305390093306 right intrinsic central MBON
#> 57 720575940623377802 78110818201621392 left intrinsic central MBON
#> 58 720575940626744921 81277549061481189 right intrinsic central MBON
#> 59 720575940623464316 81136880426764424 right intrinsic central MBON
#> 60 720575940622979277 79027192356412856 left intrinsic central MBON
#> 61 720575940614892182 81277617781167541 right intrinsic central MBON
#> 62 720575940615756690 78111917579300796 left intrinsic central MBON
#> 63 720575940613090673 78324741798855874 left intrinsic central MBON
#> 64 720575940621777391 81137979736901319 right intrinsic central MBON
#> 65 720575940606953858 81136880426735755 right intrinsic central MBON
#> 66 720575940630075703 79309972869657633 left intrinsic central MBON
#> 67 720575940652390134 78603949099622269 left intrinsic central MBON
#> 68 720575940632535756 79380204241413766 left intrinsic central MBON
#> 69 720575940643696288 79309904216692475 left intrinsic central MBON
#> 70 720575940620162718 78323023677138555 left intrinsic central MBON
#> 71 720575940635063135 80082242348953693 right intrinsic central MBON
#> 72 720575940616463477 77830305364995511 left intrinsic central MBON
#> 73 720575940629981440 78885355625276424 left intrinsic central MBON
#> 74 720575940623182847 78463211409646517 left intrinsic central MBON
#> 75 720575940626315010 79943222847625326 right intrinsic central MBON
#> 76 720575940632943277 80925980016963911 right intrinsic central MBON
#> 77 720575940624539284 78040449457553649 left intrinsic central MBON
#> 78 720575940626180878 80011530007496199 left intrinsic central MBON
#> 79 720575940628783363 80434292093847745 right intrinsic central MBON
#> 80 720575940630390939 79870998677653042 left intrinsic central MBON
#> 81 720575940614392999 79237542540872430 left intrinsic central MBON
#> 82 720575940617302365 78604086538417636 left intrinsic central MBON
#> 83 720575940635651680 81277549061591572 right intrinsic central MBON
#> 84 720575940624694503 79941230049538531 left intrinsic central MBON
#> 85 720575940628734376 79869899232522382 right intrinsic central MBON
#> 86 720575940610964946 81630904409213619 right intrinsic central MBON
#> 87 720575940607155890 80433124332533007 right intrinsic central MBON
#> 88 720575940623381956 80644779918075196 right intrinsic central MBON
#> 89 720575940628487813 81560466945525625 right intrinsic central MBON
#> 90 720575940638028607 81419592152467685 right intrinsic central MBON
#> 91 720575940621164720 80222636373797362 left intrinsic central MBON
#> 92 720575940623841463 78251349531447591 left intrinsic central MBON
#> 93 720575940631177803 78814711734490195 left intrinsic central MBON
#> 94 720575940622306625 79166761480079751 right intrinsic central MBON
#> 95 720575940616398303 79729161744437991 left intrinsic central MBON
#> 96 720575940613815210 79729161744426207 left intrinsic central MBON
#> cell_type top_nt ito_lee_hemilineage hemibrain_type malecns_type
#> 1 MBON02 glutamate putative_primary MBON02 <NA>
#> 2 MBON01 glutamate putative_primary MBON01 <NA>
#> 3 MBON32 gaba putative_primary MBON32 <NA>
#> 4 MBON10 gaba EBa1 MBON10 <NA>
#> 5 MBON30 glutamate putative_primary MBON30 <NA>
#> 6 MBON10 gaba EBa1 MBON10 <NA>
#> 7 MBON32 gaba putative_primary MBON32 <NA>
#> 8 MBON06 glutamate putative_primary MBON06 <NA>
#> 9 MBON05 glutamate putative_primary MBON05 <NA>
#> 10 MBON10 glutamate EBa1 MBON10 <NA>
#> 11 MBON20 gaba putative_primary MBON20 <NA>
#> 12 MBON17-like acetylcholine DL1_dorsal MBON17-like <NA>
#> 13 MBON02 gaba putative_primary MBON02 <NA>
#> 14 MBON33 acetylcholine putative_primary MBON33 <NA>
#> 15 MBON23 acetylcholine DL1_dorsal MBON23 <NA>
#> 16 MBON29 acetylcholine DL2_ventral MBON29 <NA>
#> 17 MBON10 gaba EBa1 MBON10 <NA>
#> 18 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 19 MBON10 glutamate EBa1 MBON10 <NA>
#> 20 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 21 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 22 MBON28 acetylcholine DL1_dorsal MBON28 <NA>
#> 23 MBON31 gaba putative_primary MBON31 <NA>
#> 24 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 25 MBON35 acetylcholine putative_primary MBON35 <NA>
#> 26 MBON17 acetylcholine DL1_dorsal MBON17 <NA>
#> 27 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 28 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 29 MBON30 glutamate putative_primary MBON30 <NA>
#> 30 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 31 MBON27 acetylcholine putative_primary MBON27 <NA>
#> 32 MBON09 gaba putative_primary MBON09 <NA>
#> 33 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 34 MBON10 glutamate EBa1 MBON10 <NA>
#> 35 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 36 MBON03 glutamate putative_primary MBON03 <NA>
#> 37 MBON13 acetylcholine FLAa2 MBON13 <NA>
#> 38 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 39 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 40 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 41 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 42 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 43 MBON10 gaba EBa1 MBON10 <NA>
#> 44 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 45 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 46 MBON09 gaba putative_primary MBON09 <NA>
#> 47 MBON10 gaba EBa1 MBON10 <NA>
#> 48 MBON17-like acetylcholine DL1_dorsal MBON17-like <NA>
#> 49 MBON10 gaba EBa1 MBON10 <NA>
#> 50 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 51 MBON11 gaba putative_primary MBON11 <NA>
#> 52 MBON17 acetylcholine DL1_dorsal MBON17 <NA>
#> 53 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 54 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 55 MBON31 gaba putative_primary MBON31 <NA>
#> 56 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 57 MBON16 acetylcholine DL1_dorsal MBON16 <NA>
#> 58 MBON16 acetylcholine DL1_dorsal MBON16 <NA>
#> 59 MBON24 acetylcholine putative_primary MBON24 <NA>
#> 60 MBON27 acetylcholine putative_primary MBON27 <NA>
#> 61 MBON28 acetylcholine DL1_dorsal MBON28 <NA>
#> 62 MBON21 acetylcholine putative_primary MBON21 <NA>
#> 63 MBON20 gaba putative_primary MBON20 <NA>
#> 64 MBON21 acetylcholine putative_primary MBON21 <NA>
#> 65 MBON23 acetylcholine DL1_dorsal MBON23 <NA>
#> 66 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 67 MBON07 glutamate putative_primary MBON07 <NA>
#> 68 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 69 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 70 MBON11 gaba putative_primary MBON11 <NA>
#> 71 MBON22 acetylcholine putative_primary MBON22 <NA>
#> 72 MBON22 acetylcholine putative_primary MBON22 <NA>
#> 73 MBON26 acetylcholine putative_primary MBON26 <NA>
#> 74 MBON33 acetylcholine putative_primary MBON33 <NA>
#> 75 MBON13 acetylcholine FLAa2 MBON13 <NA>
#> 76 MBON35 acetylcholine putative_primary MBON35 <NA>
#> 77 MBON18 acetylcholine DL1_dorsal MBON18 <NA>
#> 78 MBON04 glutamate putative_primary MBON04 <NA>
#> 79 MBON07 glutamate putative_primary MBON07 <NA>
#> 80 MBON01 glutamate putative_primary MBON01 <NA>
#> 81 MBON29 acetylcholine DL2_ventral MBON29 <NA>
#> 82 MBON07 glutamate putative_primary MBON07 <NA>
#> 83 MBON18 acetylcholine DL1_dorsal MBON18 <NA>
#> 84 MBON03 glutamate putative_primary MBON03 <NA>
#> 85 MBON04 glutamate putative_primary MBON04 <NA>
#> 86 MBON09 gaba putative_primary MBON09 <NA>
#> 87 MBON26 acetylcholine putative_primary MBON26 <NA>
#> 88 MBON07 glutamate putative_primary MBON07 <NA>
#> 89 MBON09 gaba putative_primary MBON09 <NA>
#> 90 MBON06 glutamate putative_primary MBON06 <NA>
#> 91 MBON05 acetylcholine putative_primary MBON05 <NA>
#> 92 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 93 MBON24 acetylcholine putative_primary MBON24 <NA>
#> 94 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 95 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 96 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> fbbt_id
#> 1 FBbt_00111012
#> 2 FBbt_00100234
#> 3 FBbt_00049852
#> 4 FBbt_00111008
#> 5 FBbt_00049850
#> 6 FBbt_00111008
#> 7 FBbt_00049852
#> 8 FBbt_00100242
#> 9 FBbt_00111004
#> 10 FBbt_00111008
#> 11 FBbt_00111013
#> 12 <NA>
#> 13 FBbt_00111012
#> 14 FBbt_00049853
#> 15 FBbt_00049113
#> 16 FBbt_00049849
#> 17 FBbt_00111008
#> 18 FBbt_00100238
#> 19 FBbt_00111008
#> 20 FBbt_00111009
#> 21 <NA>
#> 22 FBbt_00049848
#> 23 FBbt_00049851
#> 24 FBbt_00111009
#> 25 FBbt_00049855
#> 26 FBbt_00111064
#> 27 FBbt_00100238
#> 28 FBbt_00111011
#> 29 FBbt_00049850
#> 30 FBbt_00111010
#> 31 FBbt_00049847
#> 32 FBbt_00111007
#> 33 FBbt_00111009
#> 34 FBbt_00111008
#> 35 <NA>
#> 36 FBbt_00100232
#> 37 FBbt_00100239
#> 38 <NA>
#> 39 FBbt_00111010
#> 40 <NA>
#> 41 <NA>
#> 42 <NA>
#> 43 FBbt_00111008
#> 44 FBbt_00111010
#> 45 <NA>
#> 46 FBbt_00111007
#> 47 FBbt_00111008
#> 48 <NA>
#> 49 FBbt_00111008
#> 50 FBbt_00111010
#> 51 FBbt_00100246
#> 52 FBbt_00111064
#> 53 <NA>
#> 54 FBbt_00111011
#> 55 FBbt_00049851
#> 56 FBbt_00111011
#> 57 FBbt_00111063
#> 58 FBbt_00111063
#> 59 FBbt_00049844
#> 60 FBbt_00049847
#> 61 FBbt_00049848
#> 62 FBbt_00111046
#> 63 FBbt_00111013
#> 64 FBbt_00111046
#> 65 FBbt_00049113
#> 66 FBbt_00111009
#> 67 FBbt_00111005
#> 68 FBbt_00100238
#> 69 FBbt_00100238
#> 70 FBbt_00100246
#> 71 FBbt_00100240
#> 72 FBbt_00100240
#> 73 FBbt_00049846
#> 74 FBbt_00049853
#> 75 FBbt_00100239
#> 76 FBbt_00049855
#> 77 FBbt_00110101
#> 78 FBbt_00111014
#> 79 FBbt_00111005
#> 80 FBbt_00100234
#> 81 FBbt_00049849
#> 82 FBbt_00111005
#> 83 FBbt_00110101
#> 84 FBbt_00100232
#> 85 FBbt_00111014
#> 86 FBbt_00111007
#> 87 FBbt_00049846
#> 88 FBbt_00111005
#> 89 FBbt_00111007
#> 90 FBbt_00100242
#> 91 FBbt_00111004
#> 92 FBbt_00111011
#> 93 FBbt_00049844
#> 94 <NA>
#> 95 <NA>
#> 96 <NA>
flytable_cell_types("MBON%", version=450)
#> Updating 92 ids
#> flywire_rootid_cached: Looking up 92 missing keys
#> root_id supervoxel_id side flow super_class cell_class
#> 1 720575940620475757 79448854932107696 left intrinsic central MBON
#> 2 720575940635988581 80011942324010318 right intrinsic central MBON
#> 3 720575940616047221 80715286101144676 right intrinsic central MBON
#> 4 720575940638780494 81137979670302132 right intrinsic central MBON
#> 5 720575940610014510 81349085835581377 right intrinsic central MBON
#> 6 720575940608009737 78744342923662254 left intrinsic central MBON
#> 7 720575940620520769 78603948898007978 left intrinsic central MBON
#> 8 720575940621245680 78111986298788517 left intrinsic central MBON
#> 9 720575940631910308 81349223341739625 right intrinsic central MBON
#> 10 720575940612772579 78393323903110735 left intrinsic central MBON
#> 11 720575940616240011 80223254782485510 right intrinsic central MBON
#> 12 720575940624260839 81277549061520124 right intrinsic central MBON
#> 13 720575940625496010 79588561627810154 right intrinsic central MBON
#> 14 720575940621704361 81489685951698728 right intrinsic central MBON
#> 15 720575940616298635 78180912067538056 left intrinsic central MBON
#> 16 720575940621187056 80152611093049624 right intrinsic central MBON
#> 17 720575940614206866 81137979670297348 right intrinsic central MBON
#> 18 720575940621208820 80154466519131949 right intrinsic central MBON
#> 19 720575940615431692 78463486488950059 left intrinsic central MBON
#> 20 720575940639603584 80154535238527400 right intrinsic central MBON
#> 21 720575940634657899 81066305390179956 right intrinsic central MBON
#> 22 720575940630796363 78040449457502610 left intrinsic central MBON
#> 23 720575940621196784 80785654845309410 right intrinsic central MBON
#> 24 720575940617807429 79166830266640003 left intrinsic central MBON
#> 25 720575940623046035 78181599128215629 left intrinsic central MBON
#> 26 720575940638774606 78040449457461921 left intrinsic central MBON
#> 27 720575940643518408 80224766543977933 right intrinsic central MBON
#> 28 720575940625168528 78251349531485275 left intrinsic central MBON
#> 29 720575940615443468 77901086224032815 left intrinsic central MBON
#> 30 720575940635841143 78110818201436707 left intrinsic central MBON
#> 31 720575940613049325 80082723452177136 right intrinsic central MBON
#> 32 720575940627152712 77408917331762608 left intrinsic central MBON
#> 33 720575940623615561 80224972702135904 right intrinsic central MBON
#> 34 720575940624260583 78533992672102680 left intrinsic central MBON
#> 35 720575940623189431 80011255129536552 left intrinsic central MBON
#> 36 720575940628356611 79167173863853528 right intrinsic central MBON
#> 37 720575940629103486 79380479052758063 left intrinsic central MBON
#> 38 720575940626510729 81136880426746412 right intrinsic central MBON
#> 39 720575940631573165 78251486970442209 left intrinsic central MBON
#> 40 720575940627235215 76985537105536911 left intrinsic central MBON
#> 41 720575940625623165 78040449457463315 left intrinsic central MBON
#> 42 720575940641532557 79166692827138268 right intrinsic central MBON
#> 43 720575940604965809 81137979602919932 right intrinsic central MBON
#> 44 720575940604592300 81136880426744139 right intrinsic central MBON
#> 45 720575940613666001 78110818201651448 left intrinsic central MBON
#> 46 720575940620015275 77760348668670642 left intrinsic central MBON
#> 47 720575940619587975 81137979670303492 right intrinsic central MBON
#> 48 720575940636538480 78110818201681795 left intrinsic central MBON
#> 49 720575940629528064 81067610926141558 right intrinsic central MBON
#> 50 720575940630182467 81700242831237167 right intrinsic central MBON
#> 51 720575940611534193 80786135881765925 right intrinsic central MBON
#> 52 720575940624149908 81277549061455173 right intrinsic central MBON
#> 53 720575940635705719 79518055445188833 right intrinsic central MBON
#> 54 720575940634482783 81136605414678093 right intrinsic central MBON
#> 55 720575940628680039 78182286188838645 left intrinsic central MBON
#> 56 720575940626109315 81066305390093306 right intrinsic central MBON
#> 57 720575940644139812 78110818201621392 left intrinsic central MBON
#> 58 720575940654302881 81277549061481189 right intrinsic central MBON
#> 59 720575940626786949 81136880426764424 right intrinsic central MBON
#> 60 720575940611536241 79027192356412856 left intrinsic central MBON
#> 61 720575940623018730 81277617781167541 right intrinsic central MBON
#> 62 720575940635488623 78111917579300796 left intrinsic central MBON
#> 63 720575940616286603 78324741798855874 left intrinsic central MBON
#> 64 720575940621503265 81137979736901319 right intrinsic central MBON
#> 65 720575940631189304 81136880426735755 right intrinsic central MBON
#> 66 720575940617330945 79309972869657633 left intrinsic central MBON
#> 67 720575940628523419 78603949099622269 left intrinsic central MBON
#> 68 720575940610543826 79380204241413766 left intrinsic central MBON
#> 69 720575940616968633 79309904216692475 left intrinsic central MBON
#> 70 720575940623762923 78323023677138555 left intrinsic central MBON
#> 71 720575940626901637 80082242348953693 right intrinsic central MBON
#> 72 720575940623211498 77830305364995511 left intrinsic central MBON
#> 73 720575940625816420 78885355625276424 left intrinsic central MBON
#> 74 720575940619919531 78463211409646517 left intrinsic central MBON
#> 75 720575940614532970 79943222847625326 right intrinsic central MBON
#> 76 720575940643356064 80925980016963911 right intrinsic central MBON
#> 77 720575940649242233 78040449457553649 left intrinsic central MBON
#> 78 720575940619620487 80011530007496199 left intrinsic central MBON
#> 79 720575940624835661 80434292093847745 right intrinsic central MBON
#> 80 720575940625538110 79870998677653042 left intrinsic central MBON
#> 81 720575940626706825 79237542540872430 left intrinsic central MBON
#> 82 720575940605195878 78604086538417636 left intrinsic central MBON
#> 83 720575940631910052 81277549061591572 right intrinsic central MBON
#> 84 720575940608426197 79941230049538531 left intrinsic central MBON
#> 85 720575940625222288 79869899232522382 right intrinsic central MBON
#> 86 720575940620070278 81630904409213619 right intrinsic central MBON
#> 87 720575940633688220 80433124332533007 right intrinsic central MBON
#> 88 720575940613357096 80644779918075196 right intrinsic central MBON
#> 89 720575940608355029 81560466945525625 right intrinsic central MBON
#> 90 720575940624105196 81419592152467685 right intrinsic central MBON
#> 91 720575940613666769 80222636373797362 left intrinsic central MBON
#> 92 720575940605182822 78251349531447591 left intrinsic central MBON
#> 93 720575940635161268 78814711734490195 left intrinsic central MBON
#> 94 720575940631601292 79166761480079751 right intrinsic central MBON
#> 95 720575940609440324 79729161744437991 left intrinsic central MBON
#> 96 720575940604158124 79729161744426207 left intrinsic central MBON
#> cell_type top_nt ito_lee_hemilineage hemibrain_type malecns_type
#> 1 MBON02 glutamate putative_primary MBON02 <NA>
#> 2 MBON01 glutamate putative_primary MBON01 <NA>
#> 3 MBON32 gaba putative_primary MBON32 <NA>
#> 4 MBON10 gaba EBa1 MBON10 <NA>
#> 5 MBON30 glutamate putative_primary MBON30 <NA>
#> 6 MBON10 gaba EBa1 MBON10 <NA>
#> 7 MBON32 gaba putative_primary MBON32 <NA>
#> 8 MBON06 glutamate putative_primary MBON06 <NA>
#> 9 MBON05 glutamate putative_primary MBON05 <NA>
#> 10 MBON10 glutamate EBa1 MBON10 <NA>
#> 11 MBON20 gaba putative_primary MBON20 <NA>
#> 12 MBON17-like acetylcholine DL1_dorsal MBON17-like <NA>
#> 13 MBON02 gaba putative_primary MBON02 <NA>
#> 14 MBON33 acetylcholine putative_primary MBON33 <NA>
#> 15 MBON23 acetylcholine DL1_dorsal MBON23 <NA>
#> 16 MBON29 acetylcholine DL2_ventral MBON29 <NA>
#> 17 MBON10 gaba EBa1 MBON10 <NA>
#> 18 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 19 MBON10 glutamate EBa1 MBON10 <NA>
#> 20 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 21 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 22 MBON28 acetylcholine DL1_dorsal MBON28 <NA>
#> 23 MBON31 gaba putative_primary MBON31 <NA>
#> 24 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 25 MBON35 acetylcholine putative_primary MBON35 <NA>
#> 26 MBON17 acetylcholine DL1_dorsal MBON17 <NA>
#> 27 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 28 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 29 MBON30 glutamate putative_primary MBON30 <NA>
#> 30 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 31 MBON27 acetylcholine putative_primary MBON27 <NA>
#> 32 MBON09 gaba putative_primary MBON09 <NA>
#> 33 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 34 MBON10 glutamate EBa1 MBON10 <NA>
#> 35 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 36 MBON03 glutamate putative_primary MBON03 <NA>
#> 37 MBON13 acetylcholine FLAa2 MBON13 <NA>
#> 38 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 39 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 40 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 41 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 42 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 43 MBON10 gaba EBa1 MBON10 <NA>
#> 44 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 45 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 46 MBON09 gaba putative_primary MBON09 <NA>
#> 47 MBON10 gaba EBa1 MBON10 <NA>
#> 48 MBON17-like acetylcholine DL1_dorsal MBON17-like <NA>
#> 49 MBON10 gaba EBa1 MBON10 <NA>
#> 50 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 51 MBON11 gaba putative_primary MBON11 <NA>
#> 52 MBON17 acetylcholine DL1_dorsal MBON17 <NA>
#> 53 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 54 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 55 MBON31 gaba putative_primary MBON31 <NA>
#> 56 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 57 MBON16 acetylcholine DL1_dorsal MBON16 <NA>
#> 58 MBON16 acetylcholine DL1_dorsal MBON16 <NA>
#> 59 MBON24 acetylcholine putative_primary MBON24 <NA>
#> 60 MBON27 acetylcholine putative_primary MBON27 <NA>
#> 61 MBON28 acetylcholine DL1_dorsal MBON28 <NA>
#> 62 MBON21 acetylcholine putative_primary MBON21 <NA>
#> 63 MBON20 gaba putative_primary MBON20 <NA>
#> 64 MBON21 acetylcholine putative_primary MBON21 <NA>
#> 65 MBON23 acetylcholine DL1_dorsal MBON23 <NA>
#> 66 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 67 MBON07 glutamate putative_primary MBON07 <NA>
#> 68 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 69 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 70 MBON11 gaba putative_primary MBON11 <NA>
#> 71 MBON22 acetylcholine putative_primary MBON22 <NA>
#> 72 MBON22 acetylcholine putative_primary MBON22 <NA>
#> 73 MBON26 acetylcholine putative_primary MBON26 <NA>
#> 74 MBON33 acetylcholine putative_primary MBON33 <NA>
#> 75 MBON13 acetylcholine FLAa2 MBON13 <NA>
#> 76 MBON35 acetylcholine putative_primary MBON35 <NA>
#> 77 MBON18 acetylcholine DL1_dorsal MBON18 <NA>
#> 78 MBON04 glutamate putative_primary MBON04 <NA>
#> 79 MBON07 glutamate putative_primary MBON07 <NA>
#> 80 MBON01 glutamate putative_primary MBON01 <NA>
#> 81 MBON29 acetylcholine DL2_ventral MBON29 <NA>
#> 82 MBON07 glutamate putative_primary MBON07 <NA>
#> 83 MBON18 acetylcholine DL1_dorsal MBON18 <NA>
#> 84 MBON03 glutamate putative_primary MBON03 <NA>
#> 85 MBON04 glutamate putative_primary MBON04 <NA>
#> 86 MBON09 gaba putative_primary MBON09 <NA>
#> 87 MBON26 acetylcholine putative_primary MBON26 <NA>
#> 88 MBON07 glutamate putative_primary MBON07 <NA>
#> 89 MBON09 gaba putative_primary MBON09 <NA>
#> 90 MBON06 glutamate putative_primary MBON06 <NA>
#> 91 MBON05 acetylcholine putative_primary MBON05 <NA>
#> 92 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 93 MBON24 acetylcholine putative_primary MBON24 <NA>
#> 94 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 95 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 96 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> fbbt_id
#> 1 FBbt_00111012
#> 2 FBbt_00100234
#> 3 FBbt_00049852
#> 4 FBbt_00111008
#> 5 FBbt_00049850
#> 6 FBbt_00111008
#> 7 FBbt_00049852
#> 8 FBbt_00100242
#> 9 FBbt_00111004
#> 10 FBbt_00111008
#> 11 FBbt_00111013
#> 12 <NA>
#> 13 FBbt_00111012
#> 14 FBbt_00049853
#> 15 FBbt_00049113
#> 16 FBbt_00049849
#> 17 FBbt_00111008
#> 18 FBbt_00100238
#> 19 FBbt_00111008
#> 20 FBbt_00111009
#> 21 <NA>
#> 22 FBbt_00049848
#> 23 FBbt_00049851
#> 24 FBbt_00111009
#> 25 FBbt_00049855
#> 26 FBbt_00111064
#> 27 FBbt_00100238
#> 28 FBbt_00111011
#> 29 FBbt_00049850
#> 30 FBbt_00111010
#> 31 FBbt_00049847
#> 32 FBbt_00111007
#> 33 FBbt_00111009
#> 34 FBbt_00111008
#> 35 <NA>
#> 36 FBbt_00100232
#> 37 FBbt_00100239
#> 38 <NA>
#> 39 FBbt_00111010
#> 40 <NA>
#> 41 <NA>
#> 42 <NA>
#> 43 FBbt_00111008
#> 44 FBbt_00111010
#> 45 <NA>
#> 46 FBbt_00111007
#> 47 FBbt_00111008
#> 48 <NA>
#> 49 FBbt_00111008
#> 50 FBbt_00111010
#> 51 FBbt_00100246
#> 52 FBbt_00111064
#> 53 <NA>
#> 54 FBbt_00111011
#> 55 FBbt_00049851
#> 56 FBbt_00111011
#> 57 FBbt_00111063
#> 58 FBbt_00111063
#> 59 FBbt_00049844
#> 60 FBbt_00049847
#> 61 FBbt_00049848
#> 62 FBbt_00111046
#> 63 FBbt_00111013
#> 64 FBbt_00111046
#> 65 FBbt_00049113
#> 66 FBbt_00111009
#> 67 FBbt_00111005
#> 68 FBbt_00100238
#> 69 FBbt_00100238
#> 70 FBbt_00100246
#> 71 FBbt_00100240
#> 72 FBbt_00100240
#> 73 FBbt_00049846
#> 74 FBbt_00049853
#> 75 FBbt_00100239
#> 76 FBbt_00049855
#> 77 FBbt_00110101
#> 78 FBbt_00111014
#> 79 FBbt_00111005
#> 80 FBbt_00100234
#> 81 FBbt_00049849
#> 82 FBbt_00111005
#> 83 FBbt_00110101
#> 84 FBbt_00100232
#> 85 FBbt_00111014
#> 86 FBbt_00111007
#> 87 FBbt_00049846
#> 88 FBbt_00111005
#> 89 FBbt_00111007
#> 90 FBbt_00100242
#> 91 FBbt_00111004
#> 92 FBbt_00111011
#> 93 FBbt_00049844
#> 94 <NA>
#> 95 <NA>
#> 96 <NA>
# the latest connectome dump, see flywire_connectome_data_version()
if (FALSE) { # \dontrun{
flytable_cell_types("MBON%", version=TRUE)
} # }
# two characters
flytable_cell_types("MBON__")
#> root_id supervoxel_id side flow super_class cell_class
#> 1 720575940631916281 79448854932107696 left intrinsic central MBON
#> 2 720575940623472716 80011942324010318 right intrinsic central MBON
#> 3 720575940638526278 80715286101144676 right intrinsic central MBON
#> 4 720575940629585602 81137979670302132 right intrinsic central MBON
#> 5 720575940637934308 81349085835581377 right intrinsic central MBON
#> 6 720575940632118343 78744342923662254 left intrinsic central MBON
#> 7 720575940609959637 78603948898007978 left intrinsic central MBON
#> 8 720575940638163428 78111986298788517 left intrinsic central MBON
#> 9 720575940630496374 81349223341739625 right intrinsic central MBON
#> 10 720575940642142861 78393323903110735 left intrinsic central MBON
#> 11 720575940611344078 80223254782485510 right intrinsic central MBON
#> 12 720575940617552340 79588561627810154 right intrinsic central MBON
#> 13 720575940624280328 81489685951698728 right intrinsic central MBON
#> 14 720575940617567206 78180912067538056 left intrinsic central MBON
#> 15 720575940643700640 80152611093049624 right intrinsic central MBON
#> 16 720575940611984760 81137979670297348 right intrinsic central MBON
#> 17 720575940614026193 80154466519131949 right intrinsic central MBON
#> 18 720575940633209647 78463486488950059 left intrinsic central MBON
#> 19 720575940623001480 80154535238527400 right intrinsic central MBON
#> 20 720575940614595218 78040449457502610 left intrinsic central MBON
#> 21 720575940636992368 80785654845309410 right intrinsic central MBON
#> 22 720575940621828443 79166830266640003 left intrinsic central MBON
#> 23 720575940637902938 78181599128215629 left intrinsic central MBON
#> 24 720575940638774606 78040449457461921 left intrinsic central MBON
#> 25 720575940639697827 80224766543977933 right intrinsic central MBON
#> 26 720575940626833021 78251349531485275 left intrinsic central MBON
#> 27 720575940618008859 77901086224032815 left intrinsic central MBON
#> 28 720575940635841143 78110818201436707 left intrinsic central MBON
#> 29 720575940618249797 80082723452177136 right intrinsic central MBON
#> 30 720575940629856515 77408917331762608 left intrinsic central MBON
#> 31 720575940623905719 80224972702135904 right intrinsic central MBON
#> 32 720575940629529722 78533992672102680 left intrinsic central MBON
#> 33 720575940624590316 79167173863853528 right intrinsic central MBON
#> 34 720575940645304430 79380479052758063 left intrinsic central MBON
#> 35 720575940630767959 78251486970442209 left intrinsic central MBON
#> 36 720575940610647416 81137979602919932 right intrinsic central MBON
#> 37 720575940622093436 81136880426744139 right intrinsic central MBON
#> 38 720575940629422086 77760348668670642 left intrinsic central MBON
#> 39 720575940615435217 81137979670303492 right intrinsic central MBON
#> 40 720575940639556467 81067610926141558 right intrinsic central MBON
#> 41 720575940636120986 81700242831237167 right intrinsic central MBON
#> 42 720575940617749538 80786135881765925 right intrinsic central MBON
#> 43 720575940617760257 81277549061455173 right intrinsic central MBON
#> 44 720575940634482783 81136605414678093 right intrinsic central MBON
#> 45 720575940613906454 78182286188838645 left intrinsic central MBON
#> 46 720575940626109315 81066305390093306 right intrinsic central MBON
#> 47 720575940623377802 78110818201621392 left intrinsic central MBON
#> 48 720575940626744921 81277549061481189 right intrinsic central MBON
#> 49 720575940623464316 81136880426764424 right intrinsic central MBON
#> 50 720575940622979277 79027192356412856 left intrinsic central MBON
#> 51 720575940614892182 81277617781167541 right intrinsic central MBON
#> 52 720575940615756690 78111917579300796 left intrinsic central MBON
#> 53 720575940613090673 78324741798855874 left intrinsic central MBON
#> 54 720575940621777391 81137979736901319 right intrinsic central MBON
#> 55 720575940606953858 81136880426735755 right intrinsic central MBON
#> 56 720575940630075703 79309972869657633 left intrinsic central MBON
#> 57 720575940652390134 78603949099622269 left intrinsic central MBON
#> 58 720575940632535756 79380204241413766 left intrinsic central MBON
#> 59 720575940643696288 79309904216692475 left intrinsic central MBON
#> 60 720575940620162718 78323023677138555 left intrinsic central MBON
#> 61 720575940635063135 80082242348953693 right intrinsic central MBON
#> 62 720575940616463477 77830305364995511 left intrinsic central MBON
#> 63 720575940629981440 78885355625276424 left intrinsic central MBON
#> 64 720575940623182847 78463211409646517 left intrinsic central MBON
#> 65 720575940626315010 79943222847625326 right intrinsic central MBON
#> 66 720575940632943277 80925980016963911 right intrinsic central MBON
#> 67 720575940624539284 78040449457553649 left intrinsic central MBON
#> 68 720575940626180878 80011530007496199 left intrinsic central MBON
#> 69 720575940628783363 80434292093847745 right intrinsic central MBON
#> 70 720575940630390939 79870998677653042 left intrinsic central MBON
#> 71 720575940614392999 79237542540872430 left intrinsic central MBON
#> 72 720575940617302365 78604086538417636 left intrinsic central MBON
#> 73 720575940635651680 81277549061591572 right intrinsic central MBON
#> 74 720575940624694503 79941230049538531 left intrinsic central MBON
#> 75 720575940628734376 79869899232522382 right intrinsic central MBON
#> 76 720575940610964946 81630904409213619 right intrinsic central MBON
#> 77 720575940607155890 80433124332533007 right intrinsic central MBON
#> 78 720575940623381956 80644779918075196 right intrinsic central MBON
#> 79 720575940628487813 81560466945525625 right intrinsic central MBON
#> 80 720575940638028607 81419592152467685 right intrinsic central MBON
#> 81 720575940621164720 80222636373797362 left intrinsic central MBON
#> 82 720575940623841463 78251349531447591 left intrinsic central MBON
#> 83 720575940631177803 78814711734490195 left intrinsic central MBON
#> cell_type top_nt ito_lee_hemilineage hemibrain_type malecns_type
#> 1 MBON02 glutamate putative_primary MBON02 <NA>
#> 2 MBON01 glutamate putative_primary MBON01 <NA>
#> 3 MBON32 gaba putative_primary MBON32 <NA>
#> 4 MBON10 gaba EBa1 MBON10 <NA>
#> 5 MBON30 glutamate putative_primary MBON30 <NA>
#> 6 MBON10 gaba EBa1 MBON10 <NA>
#> 7 MBON32 gaba putative_primary MBON32 <NA>
#> 8 MBON06 glutamate putative_primary MBON06 <NA>
#> 9 MBON05 glutamate putative_primary MBON05 <NA>
#> 10 MBON10 glutamate EBa1 MBON10 <NA>
#> 11 MBON20 gaba putative_primary MBON20 <NA>
#> 12 MBON02 gaba putative_primary MBON02 <NA>
#> 13 MBON33 acetylcholine putative_primary MBON33 <NA>
#> 14 MBON23 acetylcholine DL1_dorsal MBON23 <NA>
#> 15 MBON29 acetylcholine DL2_ventral MBON29 <NA>
#> 16 MBON10 gaba EBa1 MBON10 <NA>
#> 17 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 18 MBON10 glutamate EBa1 MBON10 <NA>
#> 19 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 20 MBON28 acetylcholine DL1_dorsal MBON28 <NA>
#> 21 MBON31 gaba putative_primary MBON31 <NA>
#> 22 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 23 MBON35 acetylcholine putative_primary MBON35 <NA>
#> 24 MBON17 acetylcholine DL1_dorsal MBON17 <NA>
#> 25 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 26 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 27 MBON30 glutamate putative_primary MBON30 <NA>
#> 28 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 29 MBON27 acetylcholine putative_primary MBON27 <NA>
#> 30 MBON09 gaba putative_primary MBON09 <NA>
#> 31 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 32 MBON10 glutamate EBa1 MBON10 <NA>
#> 33 MBON03 glutamate putative_primary MBON03 <NA>
#> 34 MBON13 acetylcholine FLAa2 MBON13 <NA>
#> 35 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 36 MBON10 gaba EBa1 MBON10 <NA>
#> 37 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 38 MBON09 gaba putative_primary MBON09 <NA>
#> 39 MBON10 gaba EBa1 MBON10 <NA>
#> 40 MBON10 gaba EBa1 MBON10 <NA>
#> 41 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 42 MBON11 gaba putative_primary MBON11 <NA>
#> 43 MBON17 acetylcholine DL1_dorsal MBON17 <NA>
#> 44 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 45 MBON31 gaba putative_primary MBON31 <NA>
#> 46 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 47 MBON16 acetylcholine DL1_dorsal MBON16 <NA>
#> 48 MBON16 acetylcholine DL1_dorsal MBON16 <NA>
#> 49 MBON24 acetylcholine putative_primary MBON24 <NA>
#> 50 MBON27 acetylcholine putative_primary MBON27 <NA>
#> 51 MBON28 acetylcholine DL1_dorsal MBON28 <NA>
#> 52 MBON21 acetylcholine putative_primary MBON21 <NA>
#> 53 MBON20 gaba putative_primary MBON20 <NA>
#> 54 MBON21 acetylcholine putative_primary MBON21 <NA>
#> 55 MBON23 acetylcholine DL1_dorsal MBON23 <NA>
#> 56 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 57 MBON07 glutamate putative_primary MBON07 <NA>
#> 58 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 59 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 60 MBON11 gaba putative_primary MBON11 <NA>
#> 61 MBON22 acetylcholine putative_primary MBON22 <NA>
#> 62 MBON22 acetylcholine putative_primary MBON22 <NA>
#> 63 MBON26 acetylcholine putative_primary MBON26 <NA>
#> 64 MBON33 acetylcholine putative_primary MBON33 <NA>
#> 65 MBON13 acetylcholine FLAa2 MBON13 <NA>
#> 66 MBON35 acetylcholine putative_primary MBON35 <NA>
#> 67 MBON18 acetylcholine DL1_dorsal MBON18 <NA>
#> 68 MBON04 glutamate putative_primary MBON04 <NA>
#> 69 MBON07 glutamate putative_primary MBON07 <NA>
#> 70 MBON01 glutamate putative_primary MBON01 <NA>
#> 71 MBON29 acetylcholine DL2_ventral MBON29 <NA>
#> 72 MBON07 glutamate putative_primary MBON07 <NA>
#> 73 MBON18 acetylcholine DL1_dorsal MBON18 <NA>
#> 74 MBON03 glutamate putative_primary MBON03 <NA>
#> 75 MBON04 glutamate putative_primary MBON04 <NA>
#> 76 MBON09 gaba putative_primary MBON09 <NA>
#> 77 MBON26 acetylcholine putative_primary MBON26 <NA>
#> 78 MBON07 glutamate putative_primary MBON07 <NA>
#> 79 MBON09 gaba putative_primary MBON09 <NA>
#> 80 MBON06 glutamate putative_primary MBON06 <NA>
#> 81 MBON05 acetylcholine putative_primary MBON05 <NA>
#> 82 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 83 MBON24 acetylcholine putative_primary MBON24 <NA>
#> fbbt_id
#> 1 FBbt_00111012
#> 2 FBbt_00100234
#> 3 FBbt_00049852
#> 4 FBbt_00111008
#> 5 FBbt_00049850
#> 6 FBbt_00111008
#> 7 FBbt_00049852
#> 8 FBbt_00100242
#> 9 FBbt_00111004
#> 10 FBbt_00111008
#> 11 FBbt_00111013
#> 12 FBbt_00111012
#> 13 FBbt_00049853
#> 14 FBbt_00049113
#> 15 FBbt_00049849
#> 16 FBbt_00111008
#> 17 FBbt_00100238
#> 18 FBbt_00111008
#> 19 FBbt_00111009
#> 20 FBbt_00049848
#> 21 FBbt_00049851
#> 22 FBbt_00111009
#> 23 FBbt_00049855
#> 24 FBbt_00111064
#> 25 FBbt_00100238
#> 26 FBbt_00111011
#> 27 FBbt_00049850
#> 28 FBbt_00111010
#> 29 FBbt_00049847
#> 30 FBbt_00111007
#> 31 FBbt_00111009
#> 32 FBbt_00111008
#> 33 FBbt_00100232
#> 34 FBbt_00100239
#> 35 FBbt_00111010
#> 36 FBbt_00111008
#> 37 FBbt_00111010
#> 38 FBbt_00111007
#> 39 FBbt_00111008
#> 40 FBbt_00111008
#> 41 FBbt_00111010
#> 42 FBbt_00100246
#> 43 FBbt_00111064
#> 44 FBbt_00111011
#> 45 FBbt_00049851
#> 46 FBbt_00111011
#> 47 FBbt_00111063
#> 48 FBbt_00111063
#> 49 FBbt_00049844
#> 50 FBbt_00049847
#> 51 FBbt_00049848
#> 52 FBbt_00111046
#> 53 FBbt_00111013
#> 54 FBbt_00111046
#> 55 FBbt_00049113
#> 56 FBbt_00111009
#> 57 FBbt_00111005
#> 58 FBbt_00100238
#> 59 FBbt_00100238
#> 60 FBbt_00100246
#> 61 FBbt_00100240
#> 62 FBbt_00100240
#> 63 FBbt_00049846
#> 64 FBbt_00049853
#> 65 FBbt_00100239
#> 66 FBbt_00049855
#> 67 FBbt_00110101
#> 68 FBbt_00111014
#> 69 FBbt_00111005
#> 70 FBbt_00100234
#> 71 FBbt_00049849
#> 72 FBbt_00111005
#> 73 FBbt_00110101
#> 74 FBbt_00100232
#> 75 FBbt_00111014
#> 76 FBbt_00111007
#> 77 FBbt_00049846
#> 78 FBbt_00111005
#> 79 FBbt_00111007
#> 80 FBbt_00100242
#> 81 FBbt_00111004
#> 82 FBbt_00111011
#> 83 FBbt_00049844
# at least one character
flytable_cell_types("MBON_%")
#> root_id supervoxel_id side flow super_class cell_class
#> 1 720575940631916281 79448854932107696 left intrinsic central MBON
#> 2 720575940623472716 80011942324010318 right intrinsic central MBON
#> 3 720575940638526278 80715286101144676 right intrinsic central MBON
#> 4 720575940629585602 81137979670302132 right intrinsic central MBON
#> 5 720575940637934308 81349085835581377 right intrinsic central MBON
#> 6 720575940632118343 78744342923662254 left intrinsic central MBON
#> 7 720575940609959637 78603948898007978 left intrinsic central MBON
#> 8 720575940638163428 78111986298788517 left intrinsic central MBON
#> 9 720575940630496374 81349223341739625 right intrinsic central MBON
#> 10 720575940642142861 78393323903110735 left intrinsic central MBON
#> 11 720575940611344078 80223254782485510 right intrinsic central MBON
#> 12 720575940634822751 81277549061520124 right intrinsic central MBON
#> 13 720575940617552340 79588561627810154 right intrinsic central MBON
#> 14 720575940624280328 81489685951698728 right intrinsic central MBON
#> 15 720575940617567206 78180912067538056 left intrinsic central MBON
#> 16 720575940643700640 80152611093049624 right intrinsic central MBON
#> 17 720575940611984760 81137979670297348 right intrinsic central MBON
#> 18 720575940614026193 80154466519131949 right intrinsic central MBON
#> 19 720575940633209647 78463486488950059 left intrinsic central MBON
#> 20 720575940623001480 80154535238527400 right intrinsic central MBON
#> 21 720575940613070485 81066305390179956 right intrinsic central MBON
#> 22 720575940614595218 78040449457502610 left intrinsic central MBON
#> 23 720575940636992368 80785654845309410 right intrinsic central MBON
#> 24 720575940621828443 79166830266640003 left intrinsic central MBON
#> 25 720575940637902938 78181599128215629 left intrinsic central MBON
#> 26 720575940638774606 78040449457461921 left intrinsic central MBON
#> 27 720575940639697827 80224766543977933 right intrinsic central MBON
#> 28 720575940626833021 78251349531485275 left intrinsic central MBON
#> 29 720575940618008859 77901086224032815 left intrinsic central MBON
#> 30 720575940635841143 78110818201436707 left intrinsic central MBON
#> 31 720575940618249797 80082723452177136 right intrinsic central MBON
#> 32 720575940629856515 77408917331762608 left intrinsic central MBON
#> 33 720575940623905719 80224972702135904 right intrinsic central MBON
#> 34 720575940629529722 78533992672102680 left intrinsic central MBON
#> 35 720575940624659943 80011255129536552 left intrinsic central MBON
#> 36 720575940624590316 79167173863853528 right intrinsic central MBON
#> 37 720575940645304430 79380479052758063 left intrinsic central MBON
#> 38 720575940612196850 81136880426746412 right intrinsic central MBON
#> 39 720575940630767959 78251486970442209 left intrinsic central MBON
#> 40 720575940640963747 76985537105536911 left intrinsic central MBON
#> 41 720575940628757547 78040449457463315 left intrinsic central MBON
#> 42 720575940627144069 79166692827138268 right intrinsic central MBON
#> 43 720575940610647416 81137979602919932 right intrinsic central MBON
#> 44 720575940622093436 81136880426744139 right intrinsic central MBON
#> 45 720575940624696810 78110818201651448 left intrinsic central MBON
#> 46 720575940629422086 77760348668670642 left intrinsic central MBON
#> 47 720575940615435217 81137979670303492 right intrinsic central MBON
#> 48 720575940650386553 78110818201681795 left intrinsic central MBON
#> 49 720575940639556467 81067610926141558 right intrinsic central MBON
#> 50 720575940636120986 81700242831237167 right intrinsic central MBON
#> 51 720575940617749538 80786135881765925 right intrinsic central MBON
#> 52 720575940617760257 81277549061455173 right intrinsic central MBON
#> 53 720575940619810389 79518055445188833 right intrinsic central MBON
#> 54 720575940634482783 81136605414678093 right intrinsic central MBON
#> 55 720575940613906454 78182286188838645 left intrinsic central MBON
#> 56 720575940626109315 81066305390093306 right intrinsic central MBON
#> 57 720575940623377802 78110818201621392 left intrinsic central MBON
#> 58 720575940626744921 81277549061481189 right intrinsic central MBON
#> 59 720575940623464316 81136880426764424 right intrinsic central MBON
#> 60 720575940622979277 79027192356412856 left intrinsic central MBON
#> 61 720575940614892182 81277617781167541 right intrinsic central MBON
#> 62 720575940615756690 78111917579300796 left intrinsic central MBON
#> 63 720575940613090673 78324741798855874 left intrinsic central MBON
#> 64 720575940621777391 81137979736901319 right intrinsic central MBON
#> 65 720575940606953858 81136880426735755 right intrinsic central MBON
#> 66 720575940630075703 79309972869657633 left intrinsic central MBON
#> 67 720575940652390134 78603949099622269 left intrinsic central MBON
#> 68 720575940632535756 79380204241413766 left intrinsic central MBON
#> 69 720575940643696288 79309904216692475 left intrinsic central MBON
#> 70 720575940620162718 78323023677138555 left intrinsic central MBON
#> 71 720575940635063135 80082242348953693 right intrinsic central MBON
#> 72 720575940616463477 77830305364995511 left intrinsic central MBON
#> 73 720575940629981440 78885355625276424 left intrinsic central MBON
#> 74 720575940623182847 78463211409646517 left intrinsic central MBON
#> 75 720575940626315010 79943222847625326 right intrinsic central MBON
#> 76 720575940632943277 80925980016963911 right intrinsic central MBON
#> 77 720575940624539284 78040449457553649 left intrinsic central MBON
#> 78 720575940626180878 80011530007496199 left intrinsic central MBON
#> 79 720575940628783363 80434292093847745 right intrinsic central MBON
#> 80 720575940630390939 79870998677653042 left intrinsic central MBON
#> 81 720575940614392999 79237542540872430 left intrinsic central MBON
#> 82 720575940617302365 78604086538417636 left intrinsic central MBON
#> 83 720575940635651680 81277549061591572 right intrinsic central MBON
#> 84 720575940624694503 79941230049538531 left intrinsic central MBON
#> 85 720575940628734376 79869899232522382 right intrinsic central MBON
#> 86 720575940610964946 81630904409213619 right intrinsic central MBON
#> 87 720575940607155890 80433124332533007 right intrinsic central MBON
#> 88 720575940623381956 80644779918075196 right intrinsic central MBON
#> 89 720575940628487813 81560466945525625 right intrinsic central MBON
#> 90 720575940638028607 81419592152467685 right intrinsic central MBON
#> 91 720575940621164720 80222636373797362 left intrinsic central MBON
#> 92 720575940623841463 78251349531447591 left intrinsic central MBON
#> 93 720575940631177803 78814711734490195 left intrinsic central MBON
#> 94 720575940622306625 79166761480079751 right intrinsic central MBON
#> 95 720575940616398303 79729161744437991 left intrinsic central MBON
#> 96 720575940613815210 79729161744426207 left intrinsic central MBON
#> cell_type top_nt ito_lee_hemilineage hemibrain_type malecns_type
#> 1 MBON02 glutamate putative_primary MBON02 <NA>
#> 2 MBON01 glutamate putative_primary MBON01 <NA>
#> 3 MBON32 gaba putative_primary MBON32 <NA>
#> 4 MBON10 gaba EBa1 MBON10 <NA>
#> 5 MBON30 glutamate putative_primary MBON30 <NA>
#> 6 MBON10 gaba EBa1 MBON10 <NA>
#> 7 MBON32 gaba putative_primary MBON32 <NA>
#> 8 MBON06 glutamate putative_primary MBON06 <NA>
#> 9 MBON05 glutamate putative_primary MBON05 <NA>
#> 10 MBON10 glutamate EBa1 MBON10 <NA>
#> 11 MBON20 gaba putative_primary MBON20 <NA>
#> 12 MBON17-like acetylcholine DL1_dorsal MBON17-like <NA>
#> 13 MBON02 gaba putative_primary MBON02 <NA>
#> 14 MBON33 acetylcholine putative_primary MBON33 <NA>
#> 15 MBON23 acetylcholine DL1_dorsal MBON23 <NA>
#> 16 MBON29 acetylcholine DL2_ventral MBON29 <NA>
#> 17 MBON10 gaba EBa1 MBON10 <NA>
#> 18 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 19 MBON10 glutamate EBa1 MBON10 <NA>
#> 20 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 21 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 22 MBON28 acetylcholine DL1_dorsal MBON28 <NA>
#> 23 MBON31 gaba putative_primary MBON31 <NA>
#> 24 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 25 MBON35 acetylcholine putative_primary MBON35 <NA>
#> 26 MBON17 acetylcholine DL1_dorsal MBON17 <NA>
#> 27 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 28 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 29 MBON30 glutamate putative_primary MBON30 <NA>
#> 30 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 31 MBON27 acetylcholine putative_primary MBON27 <NA>
#> 32 MBON09 gaba putative_primary MBON09 <NA>
#> 33 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 34 MBON10 glutamate EBa1 MBON10 <NA>
#> 35 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 36 MBON03 glutamate putative_primary MBON03 <NA>
#> 37 MBON13 acetylcholine FLAa2 MBON13 <NA>
#> 38 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 39 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 40 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 41 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 42 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 43 MBON10 gaba EBa1 MBON10 <NA>
#> 44 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 45 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 46 MBON09 gaba putative_primary MBON09 <NA>
#> 47 MBON10 gaba EBa1 MBON10 <NA>
#> 48 MBON17-like acetylcholine DL1_dorsal MBON17-like <NA>
#> 49 MBON10 gaba EBa1 MBON10 <NA>
#> 50 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 51 MBON11 gaba putative_primary MBON11 <NA>
#> 52 MBON17 acetylcholine DL1_dorsal MBON17 <NA>
#> 53 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 54 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 55 MBON31 gaba putative_primary MBON31 <NA>
#> 56 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 57 MBON16 acetylcholine DL1_dorsal MBON16 <NA>
#> 58 MBON16 acetylcholine DL1_dorsal MBON16 <NA>
#> 59 MBON24 acetylcholine putative_primary MBON24 <NA>
#> 60 MBON27 acetylcholine putative_primary MBON27 <NA>
#> 61 MBON28 acetylcholine DL1_dorsal MBON28 <NA>
#> 62 MBON21 acetylcholine putative_primary MBON21 <NA>
#> 63 MBON20 gaba putative_primary MBON20 <NA>
#> 64 MBON21 acetylcholine putative_primary MBON21 <NA>
#> 65 MBON23 acetylcholine DL1_dorsal MBON23 <NA>
#> 66 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 67 MBON07 glutamate putative_primary MBON07 <NA>
#> 68 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 69 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 70 MBON11 gaba putative_primary MBON11 <NA>
#> 71 MBON22 acetylcholine putative_primary MBON22 <NA>
#> 72 MBON22 acetylcholine putative_primary MBON22 <NA>
#> 73 MBON26 acetylcholine putative_primary MBON26 <NA>
#> 74 MBON33 acetylcholine putative_primary MBON33 <NA>
#> 75 MBON13 acetylcholine FLAa2 MBON13 <NA>
#> 76 MBON35 acetylcholine putative_primary MBON35 <NA>
#> 77 MBON18 acetylcholine DL1_dorsal MBON18 <NA>
#> 78 MBON04 glutamate putative_primary MBON04 <NA>
#> 79 MBON07 glutamate putative_primary MBON07 <NA>
#> 80 MBON01 glutamate putative_primary MBON01 <NA>
#> 81 MBON29 acetylcholine DL2_ventral MBON29 <NA>
#> 82 MBON07 glutamate putative_primary MBON07 <NA>
#> 83 MBON18 acetylcholine DL1_dorsal MBON18 <NA>
#> 84 MBON03 glutamate putative_primary MBON03 <NA>
#> 85 MBON04 glutamate putative_primary MBON04 <NA>
#> 86 MBON09 gaba putative_primary MBON09 <NA>
#> 87 MBON26 acetylcholine putative_primary MBON26 <NA>
#> 88 MBON07 glutamate putative_primary MBON07 <NA>
#> 89 MBON09 gaba putative_primary MBON09 <NA>
#> 90 MBON06 glutamate putative_primary MBON06 <NA>
#> 91 MBON05 acetylcholine putative_primary MBON05 <NA>
#> 92 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 93 MBON24 acetylcholine putative_primary MBON24 <NA>
#> 94 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 95 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 96 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> fbbt_id
#> 1 FBbt_00111012
#> 2 FBbt_00100234
#> 3 FBbt_00049852
#> 4 FBbt_00111008
#> 5 FBbt_00049850
#> 6 FBbt_00111008
#> 7 FBbt_00049852
#> 8 FBbt_00100242
#> 9 FBbt_00111004
#> 10 FBbt_00111008
#> 11 FBbt_00111013
#> 12 <NA>
#> 13 FBbt_00111012
#> 14 FBbt_00049853
#> 15 FBbt_00049113
#> 16 FBbt_00049849
#> 17 FBbt_00111008
#> 18 FBbt_00100238
#> 19 FBbt_00111008
#> 20 FBbt_00111009
#> 21 <NA>
#> 22 FBbt_00049848
#> 23 FBbt_00049851
#> 24 FBbt_00111009
#> 25 FBbt_00049855
#> 26 FBbt_00111064
#> 27 FBbt_00100238
#> 28 FBbt_00111011
#> 29 FBbt_00049850
#> 30 FBbt_00111010
#> 31 FBbt_00049847
#> 32 FBbt_00111007
#> 33 FBbt_00111009
#> 34 FBbt_00111008
#> 35 <NA>
#> 36 FBbt_00100232
#> 37 FBbt_00100239
#> 38 <NA>
#> 39 FBbt_00111010
#> 40 <NA>
#> 41 <NA>
#> 42 <NA>
#> 43 FBbt_00111008
#> 44 FBbt_00111010
#> 45 <NA>
#> 46 FBbt_00111007
#> 47 FBbt_00111008
#> 48 <NA>
#> 49 FBbt_00111008
#> 50 FBbt_00111010
#> 51 FBbt_00100246
#> 52 FBbt_00111064
#> 53 <NA>
#> 54 FBbt_00111011
#> 55 FBbt_00049851
#> 56 FBbt_00111011
#> 57 FBbt_00111063
#> 58 FBbt_00111063
#> 59 FBbt_00049844
#> 60 FBbt_00049847
#> 61 FBbt_00049848
#> 62 FBbt_00111046
#> 63 FBbt_00111013
#> 64 FBbt_00111046
#> 65 FBbt_00049113
#> 66 FBbt_00111009
#> 67 FBbt_00111005
#> 68 FBbt_00100238
#> 69 FBbt_00100238
#> 70 FBbt_00100246
#> 71 FBbt_00100240
#> 72 FBbt_00100240
#> 73 FBbt_00049846
#> 74 FBbt_00049853
#> 75 FBbt_00100239
#> 76 FBbt_00049855
#> 77 FBbt_00110101
#> 78 FBbt_00111014
#> 79 FBbt_00111005
#> 80 FBbt_00100234
#> 81 FBbt_00049849
#> 82 FBbt_00111005
#> 83 FBbt_00110101
#> 84 FBbt_00100232
#> 85 FBbt_00111014
#> 86 FBbt_00111007
#> 87 FBbt_00049846
#> 88 FBbt_00111005
#> 89 FBbt_00111007
#> 90 FBbt_00100242
#> 91 FBbt_00111004
#> 92 FBbt_00111011
#> 93 FBbt_00049844
#> 94 <NA>
#> 95 <NA>
#> 96 <NA>
# range
flytable_cell_types("MBON2[0-5]")
#> root_id supervoxel_id side flow super_class cell_class
#> 1 720575940611344078 80223254782485510 right intrinsic central MBON
#> 2 720575940617567206 78180912067538056 left intrinsic central MBON
#> 3 720575940623464316 81136880426764424 right intrinsic central MBON
#> 4 720575940615756690 78111917579300796 left intrinsic central MBON
#> 5 720575940613090673 78324741798855874 left intrinsic central MBON
#> 6 720575940621777391 81137979736901319 right intrinsic central MBON
#> 7 720575940606953858 81136880426735755 right intrinsic central MBON
#> 8 720575940635063135 80082242348953693 right intrinsic central MBON
#> 9 720575940616463477 77830305364995511 left intrinsic central MBON
#> 10 720575940631177803 78814711734490195 left intrinsic central MBON
#> cell_type top_nt ito_lee_hemilineage hemibrain_type malecns_type
#> 1 MBON20 gaba putative_primary MBON20 <NA>
#> 2 MBON23 acetylcholine DL1_dorsal MBON23 <NA>
#> 3 MBON24 acetylcholine putative_primary MBON24 <NA>
#> 4 MBON21 acetylcholine putative_primary MBON21 <NA>
#> 5 MBON20 gaba putative_primary MBON20 <NA>
#> 6 MBON21 acetylcholine putative_primary MBON21 <NA>
#> 7 MBON23 acetylcholine DL1_dorsal MBON23 <NA>
#> 8 MBON22 acetylcholine putative_primary MBON22 <NA>
#> 9 MBON22 acetylcholine putative_primary MBON22 <NA>
#> 10 MBON24 acetylcholine putative_primary MBON24 <NA>
#> fbbt_id
#> 1 FBbt_00111013
#> 2 FBbt_00049113
#> 3 FBbt_00049844
#> 4 FBbt_00111046
#> 5 FBbt_00111013
#> 6 FBbt_00111046
#> 7 FBbt_00049113
#> 8 FBbt_00100240
#> 9 FBbt_00100240
#> 10 FBbt_00049844
# include side specification
flytable_cell_types("DA2_lPN_R")
#> root_id supervoxel_id side flow super_class cell_class
#> 1 720575940639337461 80646154374848875 right intrinsic central ALPN
#> 2 720575940628259407 81349910469210197 right intrinsic central ALPN
#> 3 720575940624106442 80575785630612215 right intrinsic central ALPN
#> 4 720575940622762995 80575785630553529 right intrinsic central ALPN
#> 5 720575940622311704 80646154374760379 right intrinsic central ALPN
#> 6 720575940610052266 80646154374867885 right intrinsic central ALPN
#> cell_type top_nt ito_lee_hemilineage hemibrain_type malecns_type
#> 1 DA2_lPN acetylcholine ALl1_ventral DA2_lPN <NA>
#> 2 DA2_lPN acetylcholine ALl1_ventral DA2_lPN <NA>
#> 3 DA2_lPN acetylcholine ALl1_ventral DA2_lPN <NA>
#> 4 DA2_lPN acetylcholine ALl1_ventral DA2_lPN <NA>
#> 5 DA2_lPN acetylcholine ALl1_ventral DA2_lPN <NA>
#> 6 DA2_lPN acetylcholine ALl1_ventral DA2_lPN <NA>
#> fbbt_id
#> 1 FBbt_00110882
#> 2 FBbt_00110882
#> 3 FBbt_00110882
#> 4 FBbt_00110882
#> 5 FBbt_00110882
#> 6 FBbt_00110882
# only the RHS MBON20
flytable_cell_types("MBON20_R")
#> root_id supervoxel_id side flow super_class cell_class
#> 1 720575940611344078 80223254782485510 right intrinsic central MBON
#> cell_type top_nt ito_lee_hemilineage hemibrain_type malecns_type
#> 1 MBON20 gaba putative_primary MBON20 <NA>
#> fbbt_id
#> 1 FBbt_00111013
# all RHS cells with class MBON
flytable_cell_types("MBON_R", target="cell_class")
#> root_id supervoxel_id side flow super_class cell_class
#> 1 720575940623472716 80011942324010318 right intrinsic central MBON
#> 2 720575940638526278 80715286101144676 right intrinsic central MBON
#> 3 720575940629585602 81137979670302132 right intrinsic central MBON
#> 4 720575940637934308 81349085835581377 right intrinsic central MBON
#> 5 720575940630496374 81349223341739625 right intrinsic central MBON
#> 6 720575940611344078 80223254782485510 right intrinsic central MBON
#> 7 720575940634822751 81277549061520124 right intrinsic central MBON
#> 8 720575940617552340 79588561627810154 right intrinsic central MBON
#> 9 720575940624280328 81489685951698728 right intrinsic central MBON
#> 10 720575940643700640 80152611093049624 right intrinsic central MBON
#> 11 720575940611984760 81137979670297348 right intrinsic central MBON
#> 12 720575940614026193 80154466519131949 right intrinsic central MBON
#> 13 720575940623001480 80154535238527400 right intrinsic central MBON
#> 14 720575940613070485 81066305390179956 right intrinsic central MBON
#> 15 720575940636992368 80785654845309410 right intrinsic central MBON
#> 16 720575940639697827 80224766543977933 right intrinsic central MBON
#> 17 720575940618249797 80082723452177136 right intrinsic central MBON
#> 18 720575940623905719 80224972702135904 right intrinsic central MBON
#> 19 720575940624590316 79167173863853528 right intrinsic central MBON
#> 20 720575940612196850 81136880426746412 right intrinsic central MBON
#> 21 720575940627144069 79166692827138268 right intrinsic central MBON
#> 22 720575940610647416 81137979602919932 right intrinsic central MBON
#> 23 720575940622093436 81136880426744139 right intrinsic central MBON
#> 24 720575940615435217 81137979670303492 right intrinsic central MBON
#> 25 720575940639556467 81067610926141558 right intrinsic central MBON
#> 26 720575940636120986 81700242831237167 right intrinsic central MBON
#> 27 720575940617749538 80786135881765925 right intrinsic central MBON
#> 28 720575940617760257 81277549061455173 right intrinsic central MBON
#> 29 720575940619810389 79518055445188833 right intrinsic central MBON
#> 30 720575940634482783 81136605414678093 right intrinsic central MBON
#> 31 720575940626109315 81066305390093306 right intrinsic central MBON
#> 32 720575940626744921 81277549061481189 right intrinsic central MBON
#> 33 720575940623464316 81136880426764424 right intrinsic central MBON
#> 34 720575940614892182 81277617781167541 right intrinsic central MBON
#> 35 720575940621777391 81137979736901319 right intrinsic central MBON
#> 36 720575940606953858 81136880426735755 right intrinsic central MBON
#> 37 720575940635063135 80082242348953693 right intrinsic central MBON
#> 38 720575940626315010 79943222847625326 right intrinsic central MBON
#> 39 720575940632943277 80925980016963911 right intrinsic central MBON
#> 40 720575940628783363 80434292093847745 right intrinsic central MBON
#> 41 720575940635651680 81277549061591572 right intrinsic central MBON
#> 42 720575940628734376 79869899232522382 right intrinsic central MBON
#> 43 720575940610964946 81630904409213619 right intrinsic central MBON
#> 44 720575940607155890 80433124332533007 right intrinsic central MBON
#> 45 720575940623381956 80644779918075196 right intrinsic central MBON
#> 46 720575940628487813 81560466945525625 right intrinsic central MBON
#> 47 720575940638028607 81419592152467685 right intrinsic central MBON
#> 48 720575940622306625 79166761480079751 right intrinsic central MBON
#> cell_type top_nt ito_lee_hemilineage hemibrain_type malecns_type
#> 1 MBON01 glutamate putative_primary MBON01 <NA>
#> 2 MBON32 gaba putative_primary MBON32 <NA>
#> 3 MBON10 gaba EBa1 MBON10 <NA>
#> 4 MBON30 glutamate putative_primary MBON30 <NA>
#> 5 MBON05 glutamate putative_primary MBON05 <NA>
#> 6 MBON20 gaba putative_primary MBON20 <NA>
#> 7 MBON17-like acetylcholine DL1_dorsal MBON17-like <NA>
#> 8 MBON02 gaba putative_primary MBON02 <NA>
#> 9 MBON33 acetylcholine putative_primary MBON33 <NA>
#> 10 MBON29 acetylcholine DL2_ventral MBON29 <NA>
#> 11 MBON10 gaba EBa1 MBON10 <NA>
#> 12 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 13 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 14 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 15 MBON31 gaba putative_primary MBON31 <NA>
#> 16 MBON14 acetylcholine FLAa2 MBON14 <NA>
#> 17 MBON27 acetylcholine putative_primary MBON27 <NA>
#> 18 MBON12 acetylcholine FLAa2 MBON12 <NA>
#> 19 MBON03 glutamate putative_primary MBON03 <NA>
#> 20 MBON15-like acetylcholine DL1_dorsal MBON15-like <NA>
#> 21 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 22 MBON10 gaba EBa1 MBON10 <NA>
#> 23 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 24 MBON10 gaba EBa1 MBON10 <NA>
#> 25 MBON10 gaba EBa1 MBON10 <NA>
#> 26 MBON15 acetylcholine DL1_dorsal MBON15 <NA>
#> 27 MBON11 gaba putative_primary MBON11 <NA>
#> 28 MBON17 acetylcholine DL1_dorsal MBON17 <NA>
#> 29 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> 30 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 31 MBON19 acetylcholine DL1_dorsal MBON19 <NA>
#> 32 MBON16 acetylcholine DL1_dorsal MBON16 <NA>
#> 33 MBON24 acetylcholine putative_primary MBON24 <NA>
#> 34 MBON28 acetylcholine DL1_dorsal MBON28 <NA>
#> 35 MBON21 acetylcholine putative_primary MBON21 <NA>
#> 36 MBON23 acetylcholine DL1_dorsal MBON23 <NA>
#> 37 MBON22 acetylcholine putative_primary MBON22 <NA>
#> 38 MBON13 acetylcholine FLAa2 MBON13 <NA>
#> 39 MBON35 acetylcholine putative_primary MBON35 <NA>
#> 40 MBON07 glutamate putative_primary MBON07 <NA>
#> 41 MBON18 acetylcholine DL1_dorsal MBON18 <NA>
#> 42 MBON04 glutamate putative_primary MBON04 <NA>
#> 43 MBON09 gaba putative_primary MBON09 <NA>
#> 44 MBON26 acetylcholine putative_primary MBON26 <NA>
#> 45 MBON07 glutamate putative_primary MBON07 <NA>
#> 46 MBON09 gaba putative_primary MBON09 <NA>
#> 47 MBON06 glutamate putative_primary MBON06 <NA>
#> 48 MBON25,MBON34 glutamate SMPad3 MBON25,MBON34 <NA>
#> fbbt_id
#> 1 FBbt_00100234
#> 2 FBbt_00049852
#> 3 FBbt_00111008
#> 4 FBbt_00049850
#> 5 FBbt_00111004
#> 6 FBbt_00111013
#> 7 <NA>
#> 8 FBbt_00111012
#> 9 FBbt_00049853
#> 10 FBbt_00049849
#> 11 FBbt_00111008
#> 12 FBbt_00100238
#> 13 FBbt_00111009
#> 14 <NA>
#> 15 FBbt_00049851
#> 16 FBbt_00100238
#> 17 FBbt_00049847
#> 18 FBbt_00111009
#> 19 FBbt_00100232
#> 20 <NA>
#> 21 <NA>
#> 22 FBbt_00111008
#> 23 FBbt_00111010
#> 24 FBbt_00111008
#> 25 FBbt_00111008
#> 26 FBbt_00111010
#> 27 FBbt_00100246
#> 28 FBbt_00111064
#> 29 <NA>
#> 30 FBbt_00111011
#> 31 FBbt_00111011
#> 32 FBbt_00111063
#> 33 FBbt_00049844
#> 34 FBbt_00049848
#> 35 FBbt_00111046
#> 36 FBbt_00049113
#> 37 FBbt_00100240
#> 38 FBbt_00100239
#> 39 FBbt_00049855
#> 40 FBbt_00111005
#> 41 FBbt_00110101
#> 42 FBbt_00111014
#> 43 FBbt_00111007
#> 44 FBbt_00049846
#> 45 FBbt_00111005
#> 46 FBbt_00111007
#> 47 FBbt_00100242
#> 48 <NA>
# anything with type *OR* class information
cells=flytable_cell_types(target = 'all')
# anything that mentions PN anywhere
pncands=flytable_cell_types('%PN%', target = 'all')
# }