flywire_change_log | R Documentation |
Summarise edits for one or more FlyWire segment ids
flywire_change_log(
x,
filtered = TRUE,
tz = "UTC",
root_ids = TRUE,
OmitFailures = TRUE,
...
)
x |
One or more flywire segment ids (character vector recommended but
any format accepted by |
filtered |
Whether to filter out edits unlikely to relate to the current
state of the neuron (default |
tz |
Time zone for edit timestamps. Defaults to "UTC" i.e. Universal
Time, Coordinated. Set to "" for your current timezone. See
|
root_ids |
Whether to look up the root ids before/after each change.
Default |
OmitFailures |
Whether to omit neurons for which there is an API timeout
or error. The default value ( |
... |
Additional arguments passed to |
When filtered=TRUE
the following are removed
edits that are outside of the given root id - meaning these edits are in the history of the cell but the affected part of the arbour was since cut off.
edits that were since undone by an inverse operation (often temporary splits made while reviewing a neuron.)
A data frame with values
operation_id
a unique id for the edit
timestamp
in POSIXct format, to the nearest ms
user_id
numeric id for the user responsible for the edit
is_merge
whether it was a merge or a split
user_name
as a string
before_root_ids and after_root_ids
as space separated strings
In addition when filtered=FALSE
, in_neuron
is_relevant
flywire_change_log("720575940619010932")
flywire_change_log("720575940619010932", filtered = FALSE)
# with a flywire URL
u="https://ngl.flywire.ai/?json_url=https://globalv1.flywire-daf.com/nglstate/5409525645443072"
flywire_change_log(u)
## Not run:
# use flexible root id specification
flywire_change_log("DA2_lPN_R")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.