manc_dvid_node
returns the latest DVID node in use with a
specific tool.
manc_dvid_nodeinfo
returns a data.frame with information
about the DVID nodes available for the male VNC dataset.
Usage
manc_dvid_node(type = c("clio", "neutu", "neuprint", "master"), cached = TRUE)
manc_dvid_nodeinfo(cached = TRUE)
Arguments
- type
Whether to return the latest committed node (clio) or the active
node being edited in neutu (the very latest) or the node in neuprint (a
committed node that may lag behind clio). master is an alias for neutu.
- cached
Whether to return a cached value (updated every hour) or to
force a new query.
Examples
# \donttest{
manc_dvid_node()
#> [1] "dabe640270a24993b0805a2b563a2db5"
manc_dvid_node('neutu')
#> [1] "dabe640270a24993b0805a2b563a2db5"
# force
manc_dvid_node('neuprint', cached=FALSE)
#> [1] "d7e7652d5a2242d18da569952b1518e5"
# }