Skip to content

Commit

Permalink
Add support for malecns_type column
Browse files Browse the repository at this point in the history
  • Loading branch information
jefferis committed May 13, 2024
1 parent af482f0 commit dab9bdf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions R/flytable.R
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ flytable_list_selected <- function(ids=NULL, table='info', fields="*", idfield="

cell_types_nomemo <- function(query=NULL, timestamp=NULL,
target='type', table='info',
fields=c("root_id", "supervoxel_id", "side", "flow", "super_class", "cell_class", "cell_type", "top_nt", "ito_lee_hemilineage", "hemibrain_type", "fbbt_id")) {
fields=c("root_id", "supervoxel_id", "side", "flow", "super_class", "cell_class", "cell_type", "top_nt", "ito_lee_hemilineage", "hemibrain_type", "malecns_type", "fbbt_id")) {
if(is.null(query))
query="_%"

Expand Down Expand Up @@ -1003,7 +1003,7 @@ cell_types_memo <- memoise::memoise(cell_types_nomemo, ~memoise::timeout(5*60))
#' }
flytable_cell_types <- function(pattern=NULL, version=NULL, timestamp=NULL,
target=c("type", "cell_type", 'hemibrain_type', 'cell_class', 'super_class',
'ito_lee_hemilineage', 'all'),
'ito_lee_hemilineage', 'malecns_type', 'all'),
table=c("info", "optic", "both"),
transfer_hemibrain_type=c("extra", "none", "all"),
cache=TRUE, use_static=NA) {
Expand Down Expand Up @@ -1057,7 +1057,7 @@ flytable_cell_types <- function(pattern=NULL, version=NULL, timestamp=NULL,
regex=smres[,3]
regex_target=match.arg(smres[,2],
c("type", "cell_type", 'hemibrain_type', 'cell_class', 'super_class',
'ito_lee_hemilineage', 'all'))
'ito_lee_hemilineage', 'malecns_type', 'all'))
pattern=NULL
target='all'
} else regex=NULL
Expand Down
2 changes: 1 addition & 1 deletion man/flytable_cell_types.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit dab9bdf

Please sign in to comment.