Read point annotations from DVID using neuprint authentication
Source:R/annotations.R
manc_user_annotations.Rd
Read 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::GET
response (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::fromJSON
for details.- neuprint_connection
A
neuprintr
connection 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.POSIXct
for more details.