You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
perhaps anything that expects one or more skids (as first input), could process the input with a function like
catmaid_skeleton_ids<-function(x, several.ok=TRUE) {
if(is.factor(x)) {
x=as.character(x)
}
if(is.character(x)) {
# check if these look like skids, convert to intskids= as.integer(skids)
# ... otherwise find skids with a query (by name or annotation?)"name:", "annotation:"skids=df$skid
} else# check that skids several.ok is matched
}
note that by chance
nat::read.neurons
has aneuronnames
argumentThe text was updated successfully, but these errors were encountered: