Annotate positions as backbone proofread
Source:R/cave-tables.R
banc_annotate_backbone_proofread.Rd
Mark specific positions as backbone proofread in the CAVE annotation system.
Usage
banc_annotate_backbone_proofread(
positions,
user_id,
units = c("raw", "nm"),
proofread = TRUE,
datastack_name = NULL
)
Examples
if (FALSE) { # \dontrun{
# Add an annotation to a point in raw voxel space
banc_annotate_backbone_proofread(c(117105, 240526, 5122), user_id = 355, units = "raw")
# Add an annotation to a point in nm
banc_annotate_backbone_proofread(c(468420, 962104 ,230490), user_id = 355, units = "nm")
# deannotate a point, only from points added with given user_id. Use user_id = NULL to remove from full pool
banc_deannotate_backbone_proofread(c(468420, 962104, 230490), user_id = 355, units = "nm")
} # }