Skip to contents

Low level access to FANC's CAVE annotation infrastructure

Usage

fanc_cave_client()

banc_cave_client()

Value

A reticulate R object wrapping the python CAVEclient.

Examples

# \donttest{
fcc=fanc_cave_client()
tables=fcc$annotation$get_tables()
fcc$materialize$get_table_metadata(tables[1])
#> $schema_type
#> [1] "cell_type_local"
#> 
#> $table_name
#> [1] "leftt1_local_premotor_table_v4"
#> 
#> $valid
#> [1] TRUE
#> 
#> $created
#> [1] "2023-07-06T22:46:55.605435"
#> 
#> $user_id
#> [1] "188"
#> 
#> $description
#> [1] "Primary neurite points for T1 premotor neurons. This table updates the preceeding v3 table, with a fundamentally different scheme. The classification_system now indicates the hemilineage, rather than a letter classification code. Cell_type a place holder for more detailed cell type in the future. Currently, some hemilineages have cell_type information, e.g. 08A or 04B, to indicate some subclasses based on neurite entry points. Additional information will be added in reference tables, e.g. neurotransmitter, preferred motor module, nb clone, MANC homolog etc. Maintained by Tony Azevedo."
#> 
#> $notice_text
#> NULL
#> 
#> $reference_table
#> NULL
#> 
#> $flat_segmentation_source
#> NULL
#> 
#> $write_permission
#> [1] "PRIVATE"
#> 
#> $read_permission
#> [1] "PUBLIC"
#> 
#> $last_modified
#> [1] "2023-07-06T22:46:55.605435"
#> 
#> $voxel_resolution
#> [1]  4.3  4.3 45.0
#> 
# }