Skip to content

Commit

Permalink
fix: pass on rootid argument for cave tables
Browse files Browse the repository at this point in the history
  • Loading branch information
jefferis committed Jul 11, 2024
1 parent dae327b commit 6608d9a
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions R/cave-tables.R
Original file line number Diff line number Diff line change
Expand Up @@ -118,30 +118,27 @@ banc_cell_info <- function(rootids = NULL, rawcoords = FALSE){
#' @rdname banc_cave_tables
#' @export
banc_cell_ids <- function(rootids = NULL){
table <- "cell_ids"
get_cave_table_data(table)
get_cave_table_data('cell_ids', rootids)
}

#' @rdname banc_cave_tables
#' @export
banc_neck_connective_neurons <- function(rootids = NULL,
table = c("neck_connective_y92500", "neck_connective_y121000")){
table <- match.arg(table)
get_cave_table_data(table)
get_cave_table_data(table, rootids)
}

#' @rdname banc_cave_tables
#' @export
banc_peripheral_nerves <- function(rootids = NULL){
table <- "peripheral_nerves"
get_cave_table_data(table)
get_cave_table_data("peripheral_nerves", rootids)
}

#' @rdname banc_cave_tables
#' @export
banc_backbone_proofread <- function(rootids = NULL){
table <- "backbone_proofread"
get_cave_table_data(table)
get_cave_table_data("backbone_proofread", rootids)
}

# hidden
Expand Down

0 comments on commit 6608d9a

Please sign in to comment.