A convenience function to erase all data associated with a particular run, including the ApotcData and command in seurat_obj@command. The run_id would be no longer accessible afterwards.
Examples
pbmc <- RunAPOTC(
seurat_obj = get(data("combined_pbmc")),
reduction_base = "umap",
clonecall = "strict",
run_id = "run1",
verbose = FALSE
)
getApotcDataIds(pbmc)
#> [1] "run1"
#> [1] "run1"
# delete the data
pbmc <- deleteApotcData(pbmc, "run1")
getApotcDataIds(pbmc)
#> NULL
#> NULL