Skip to contents

Find the latest id for a FANC root id

Usage

fanc_latestid(
  rootid,
  timestamp = NULL,
  version = NULL,
  sample = 1000L,
  cloudvolume.url = NULL,
  Verbose = FALSE,
  ...
)

Arguments

rootid

One ore more FlyWire rootids defining a segment (in any form interpretable by ngl_segments)

timestamp

An optional timestamp as a string or POSIXct, interpreted as UTC when no timezone is specified.

version

An optional CAVE materialisation version number. See details and examples.

sample

An absolute or fractional number of supervoxel ids to map to rootids or FALSE (see details).

cloudvolume.url

URL for CloudVolume to fetch segmentation image data. The default value of NULL chooses the flywire production segmentation dataset.

Verbose

When set to TRUE prints information about what fraction of

...

Additional arguments passed to flywire_latestid

Examples

if (FALSE) { # \dontrun{
fanc_latestid("648518346473954669")
# the latest materialisation version
fanc_latestid("648518346486614449", version='latest')
# up to the second
fanc_latestid("648518346486614449", timestamp='now')
} # }