Subset a Fragment object
Returns a subset of a Fragment-class
object.
## S3 method for class 'Fragment' subset(x, cells = NULL, ...)
x
: A Fragment objectcells
: Vector of cells to retain...
: Arguments passed to other methodsReturns a subsetted Fragment
object
fpath <- system.file("extdata", "fragments.tsv.gz", package="Signac") cells <- colnames(x = atac_small) names(x = cells) <- paste0("test_", cells) frags <- CreateFragmentObject(path = fpath, cells = cells, verbose = FALSE, tolerance = 0.5) subset(frags, head(names(cells)))
subset
Useful links