Read point annotations from DVID using neuprint authentication
Source:R/annotations.R
manc_user_annotations.RdRead point annotations from DVID using neuprint authentication
Usage
manc_user_annotations(
email = "jefferis@gmail.com",
node = "clio",
raw = FALSE,
simplifyVector = TRUE,
neuprint_connection = NULL,
tz = "UTC"
)Arguments
The google email address used to authenticate with neuprint
- node
The DVID node identifier
- raw
Whether to return the raw
httr::GETresponse (defaultFALSE) so that you can process it yourself rather than a pre-processed R list.- simplifyVector
Whether to simplify lists to vectors (and data frames where appropriate). Default
TRUE, seejsonlite::fromJSONfor details.- neuprint_connection
A
neuprintrconnection object returned byneuprint_login. This includes the required authorisation information to connect to DVID.- tz
Time zone for edit timestamps. Defaults to "UTC" i.e. Universal Time, Coordinated. Set to "" for your current timezone. See
as.POSIXctfor more details.