Returns a subset of a Motif-class
object.
# S3 method for Motif
subset(x, features = NULL, motifs = NULL, ...)
# S3 method for Motif
[(x, i, j, ...)
A Motif object
Which features to retain
Which motifs to retain
Arguments passed to other methods
Which columns to retain
Which rows to retain
Returns a subsetted Motif
object
motif.obj <- SeuratObject::GetAssayData(
object = atac_small[['peaks']], layer = "motifs"
)
subset(x = motif.obj, features = head(rownames(motif.obj), 10))
#> A Motif object containing 10 motifs in 10 regions
motif.obj <- SeuratObject::GetAssayData(
object = atac_small, assay = 'peaks', layer = 'motifs'
)
motif.obj[1:10,1:10]
#> A Motif object containing 10 motifs in 10 regions