natverse / flycircuit

R package flycircuit

Home Page:https://natverse.github.io/flycircuit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Extend fc_neuron_type function

mmc46 opened this issue · comments

Could this function look up both annotation_class "NeuronType" (currently) and "ALGlomerulus"?

There's an fc_glom function. Does that do what you want?

If you want to join the two up:

pngloms=fc_glom()
paste(fc_neuron_type(names(pngloms)), pngloms)

There is a helper function mentioned in the fc_neuron_type docs that could help.

fc_annotated_class("ALGlomerulus", regex='DM1')

Yes, that works. Thanks.