-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvid_tools.Rd
47 lines (42 loc) · 1.33 KB
/
dvid_tools.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/dvidtools.R
\name{dvid_tools}
\alias{dvid_tools}
\alias{install_dvid_tools}
\title{Interface to the python dvid_tools module from Philipp Schlegel}
\usage{
dvid_tools(user = getOption("malevnc.dvid_user"), node = "neutu")
install_dvid_tools(pyinstall = "none")
}
\arguments{
\item{user}{Default DVID user names}
\item{node}{default DVID node to use for queries (see
\code{\link{manc_dvid_node}})}
\item{pyinstall}{whether to install python as well as the \code{dvidtools}
package. Default none will not install.}
}
\description{
\code{dvid_tools} provides a lower level and less specific
interface to DVID that corresponding \code{manc_*} functions but does
include some functionality that is not yet available.
\code{install_dvid_tools} installs the python dvid_tools module
}
\details{
The dvid_tools_module will be cached using \code{memoise}. You can
modify the default user with the `$setup` method.
}
\examples{
\dontrun{
dt=dvid_tools()
dt
# nb must explicity use integers for bodyids
dt$get_annotation(bodyid = 10000L)
# get detailed help
reticulate::py_help(dt$get_adjacency)
}
}
\seealso{
\url{https://github.com/flyconnectome/dvid_tools},
\url{https://github.com/flyconnectome/dvid_tools},
\url{https://emdata5.janelia.org/api/help/} for further details.
}