View source: R/buildReferenceData.R
getTssFromGTF | R Documentation |
Get transcription start sites (TSSs) from a remote or local GTF file
getTssFromGTF(
source,
convertEnsemblUCSC = FALSE,
destDir = NULL,
filterProteinCoding = TRUE
)
source |
a string that is either a path to a local or remote GTF |
convertEnsemblUCSC |
a logical indicating whether Ensembl style chromosome annotation should be changed to UCSC style |
destDir |
a string that indicates the path to the directory where the downloaded GTF file should be stored |
filterProteinCoding |
a logical indicating if TSSs should be only protein-coding genes (default = TRUE) |
a list of GRanges objects
CElegansGtfCropped = system.file("extdata",
"C_elegans_cropped_example.gtf.gz",
package="GenomicDistributions")
CElegansTss = getTssFromGTF(CElegansGtfCropped, TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.