Skip to content

Commit

Permalink
more import fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jefferis committed Jun 18, 2024
1 parent 1eb880a commit 78cdcf3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ Suggests:
reticulate,
doParallel,
qs,
rdrop2
rdrop2,
arrow,
doSNOW,
ggplot2,
gridExtra
VignetteBuilder: knitr
Depends:
R (>= 3.1),
Expand Down
2 changes: 1 addition & 1 deletion R/hemibrain_synapses.R
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ hemibrain_ntplot.neuronlist <- function(x,
do.call(gridExtra::grid.arrange, c(plist, ncol=nCol))
}else{
syns.nt = lapply(x, function(y) y$connectors)
syns.nt = do.call(pluyr::rbind.fill, syns.nt)
syns.nt = do.call(plyr::rbind.fill, syns.nt)
syns.nt$id = "collapse"
hemibrain_ntplot.data.frame(syns.nt)
}
Expand Down

0 comments on commit 78cdcf3

Please sign in to comment.