Description Usage Arguments Value Examples
View source: R/extractGenomicFeatures.R
This function extracts and filters gene, upstream and downstream features from a GenomicFeatures
object.
1 2 3 | extractGenomicFeatures(TxDb = NULL, selectGn = NULL,
excludeIntrons = TRUE, exon_width = 1000, intron_width = 1000,
upstream_width = 1000, downstream_width = 1000, verbose = TRUE)
|
TxDb |
A |
selectGn |
A vector of optional gene identifiers to keep. |
excludeIntrons |
When set to 'TRUE', the extraction of intronic regions is skipped. |
exon_width |
A positive integer. It determines the minumum width for the sum of all exons in a gene. |
intron_width |
A positive integer. It determines the minumum width for the sum of all introns in a gene. |
upstream_width |
A positive integer. It determines the width of the upstream regions. |
downstream_width |
A positive integer. It determines the width of the downstream regions. |
verbose |
When set to 'TRUE', the function prints diagnostic messages. |
A named list of GenomicRanges
objects.
1 2 3 | library("TxDb.Dmelanogaster.UCSC.dm3.ensGene")
genomicRegions = extractGenomicFeatures(TxDb = TxDb.Dmelanogaster.UCSC.dm3.ensGene)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.