Fast adjacency matrices based on flywire connectome dumps
Source:R/flywire-arrow.R
flywire_adjacency_matrix2.Rd
Fast adjacency matrices based on flywire connectome dumps
Usage
flywire_adjacency_matrix2(
rootids = NULL,
inputids = NULL,
outputids = NULL,
sparse = TRUE,
threshold = 0,
version = NULL,
Verbose = interactive()
)
Arguments
- rootids
flywire root ids for the bodies to fetch all by all connectivity information.
- inputids, outputids
identifiers for input and output bodies (use as an alternative to
rootids
)- sparse
Whether to return a sparse matrix (default
FALSE
)- threshold
For
flywire_partner_summary
only return partners with greater than this number of connections to the query neuron(s) (default of 0 returns all connections)- version
Optional CAVE version. The default value of
NULL
uses the latest data dump available unlessoptions(fafbseg.flywire_connectome_data_version)
has been set (which you can conveniently do usingflywire_connectome_data_version()
).- Verbose
Logical indication whether to print status messages during the query (default
T
when interactive,F
otherwise).