Skip to content

Commit

Permalink
Update banc-table.R
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbates committed Nov 7, 2024
1 parent e1a9ca6 commit 0707a56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/banc-table.R
Original file line number Diff line number Diff line change
Expand Up @@ -573,11 +573,11 @@ banctable_updateids <- function(){

# Update directly
cat('updating column: banc_match ...\n')
bc.new <- banc_updateids(bc.new, root.column = "banc_match", supervoxel.column = "banc_match_supervoxel_id")
bc.new <- banc_updateids(bc.new, root.column = "banc_match", supervoxel.column = "banc_match_supervoxel_id", position.column = "banc_match_position")
cat('updating column: banc_png_match ...\n')
bc.new <- banc_updateids(bc.new, root.column = "banc_png_match", supervoxel.column = "banc_png_match_supervoxel_id")
bc.new <- banc_updateids(bc.new, root.column = "banc_png_match", supervoxel.column = "banc_png_match_supervoxel_id", position.column = "banc_png_match_position")
cat('updating column: banc_nblast_match ...\n')
bc.new <- banc_updateids(bc.new, root.column = "banc_nblast_match", supervoxel.column = "banc_nblast_match_supervoxel_id")
bc.new <- banc_updateids(bc.new, root.column = "banc_nblast_match", supervoxel.column = "banc_nblast_match_supervoxel_id", position.column = "banc_nblast_match_position")
bc.new <- bc.new %>%
dplyr::left_join(lookup %>%dplyr::distinct(lookup_root_id, .keep_all=TRUE),
by = c("banc_match"="lookup_root_id")) %>%
Expand Down

0 comments on commit 0707a56

Please sign in to comment.