buildCDS | R Documentation |
'buildCDS()' is designed to construct CDS information on transcripts from query GTF object.
buildCDS(query, ref, fasta)
query |
GRanges object containing query GTF data. |
ref |
GRanges object containing reference GTF data. |
fasta |
BSgenome or Biostrings object containing genomic sequence |
The 'buildCDS()'function will first search for known reference mRNAs in 'query' and annotate its CDS information. For the remaining transcripts, 'buildCDS()' will search for a putative translation start site using a database of annotated ATG codons from 'ref'. Transcripts containing an open-reading frame will be assigned the newly-determined CDS information.
GRanges object containing query exon entries and newly-constructed CDS information
Fursham Hamid
# Load genome and datasets
library(BSgenome.Mmusculus.UCSC.mm10)
data(matched_query_gtf, ref_gtf)
# Build CDS
buildCDS(matched_query_gtf, ref_gtf, Mmusculus)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.