RegionStats | R Documentation |
Compute the GC content, region lengths, and dinucleotide base frequencies for regions in the assay and add to the feature metadata.
RegionStats(object, ...)
## Default S3 method:
RegionStats(object, genome, verbose = TRUE, ...)
## S3 method for class 'ChromatinAssay'
RegionStats(object, genome, verbose = TRUE, ...)
## S3 method for class 'Seurat'
RegionStats(object, genome, assay = NULL, verbose = TRUE, ...)
object |
A Seurat object, Assay object, or set of genomic ranges |
... |
Arguments passed to other methods |
genome |
A |
verbose |
Display messages |
assay |
Name of assay to use |
Returns a dataframe
## Not run:
library(BSgenome.Hsapiens.UCSC.hg19)
RegionStats(
object = rownames(atac_small),
genome = BSgenome.Hsapiens.UCSC.hg19
)
## End(Not run)
## Not run:
library(BSgenome.Hsapiens.UCSC.hg19)
RegionStats(
object = atac_small[['peaks']],
genome = BSgenome.Hsapiens.UCSC.hg19
)
## End(Not run)
## Not run:
library(BSgenome.Hsapiens.UCSC.hg19)
RegionStats(
object = atac_small,
assay = 'bins',
genome = BSgenome.Hsapiens.UCSC.hg19
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.