Check if CATMAID skeleton ids are up to date

catmaid_islatest(skids, pid = 1, conn = NULL, ...)

Arguments

skids

One more skids in any form accepted by catmaid_skids. Note that NAs are accepted and will give NA output.

pid

Project id (default 1)

conn

A catmaid_connection objection returned by catmaid_login. If NULL (the default) a new connection object will be generated using the values of the catmaid.* package options as described in the help for catmaid_login.

...

Additional arguments passed to the catmaid_fetch function

Value

A logical vector of the same length as the skids argument. Note duplicates will also still be found in the output.

Details

NB this will not distinguish between an ID that has been merged away and one that never actually existed.

Examples

# \donttest{
# for FAFB CATMAID
catmaid_islatest(c(13682, 9254, 15886))
#> [1] FALSE FALSE FALSE
# }