Compute coverage by transcript (or CDS) of a set of ranges
coverageByTranscript
computes the transcript (or CDS) coverage
of a set of ranges.
pcoverageByTranscript
is a version of coverageByTranscript
that operates element-wise.
coverageByTranscript(x, transcripts, ignore.strand=FALSE) pcoverageByTranscript(x, transcripts, ignore.strand=FALSE, ...)
x |
An object representing a set of ranges (typically aligned reads). GRanges, GRangesList, GAlignments, GAlignmentPairs, and GAlignmentsList objects are supported. More generally, for More generally, for |
transcripts |
A GRangesList object representing the exons of
each transcript for which to compute coverage. For each transcript, the
exons must be ordered by ascending rank, that is, by their position
in the transcript. This means that, for a transcript located on the minus
strand, the exons should typically be ordered by descending position on
the reference genome. If Alternatively, For |
ignore.strand |
TRUE or FALSE. If FALSE (the default) then the strand of a range in
|
... |
Additional arguments passed to the internal call to
|
Hervé Pagès
transcripts
, transcriptsBy
,
and transcriptsByOverlaps
, for extracting
genomic feature locations from a TxDb-like object.
transcriptLengths
for extracting the transcript
lengths (and other metrics) from a TxDb object.
extractTranscriptSeqs
for extracting transcript
(or CDS) sequences from chromosome sequences.
The RleList class defined and documented in the IRanges package.
The GRangesList class defined and documented in the GenomicRanges package.
The coverage
methods defined in the
GenomicRanges package.
The exonsBy
function for extracting exon ranges
grouped by transcript.
findCompatibleOverlaps
in the
GenomicAlignments package for finding which reads are
compatible with the splicing of which transcript.
## --------------------------------------------------------------------- ## 1. A SIMPLE ARTIFICIAL EXAMPLE WITH ONLY ONE TRANSCRIPT ## --------------------------------------------------------------------- ## Get some transcripts: library(TxDb.Dmelanogaster.UCSC.dm3.ensGene) txdb <- TxDb.Dmelanogaster.UCSC.dm3.ensGene dm3_transcripts <- exonsBy(txdb, by="tx", use.names=TRUE) dm3_transcripts ## Let's pick up the 1st transcript: FBtr0300689. It as 2 exons and 1 ## intron: my_transcript <- dm3_transcripts["FBtr0300689"] ## Let's create 3 artificial aligned reads. We represent them as a ## GRanges object of length 3 that contains the genomic positions of ## the 3 reads. Note that these reads are simple alignments i.e. each ## of them can be represented with a single range. This would not be ## the case if they were junction reads. my_reads <- GRanges(c("chr2L:7531-7630", "chr2L:8101-8200", "chr2L:8141-8240")) ## The coverage of the 3 reads on the reference genome is: coverage(my_reads) ## As you can see, all the genomic positions in the 3 ranges participate ## to the coverage. This can be confirmed by comparing: sum(coverage(my_reads)) ## with: sum(width(my_reads)) ## They should always be the same. ## When computing the coverage on a transcript, only the part of the ## read that overlaps with the transcript participates to the coverage. ## Let's look at the individual coverage of each read on transcript ## FBtr0300689: ## The 1st read is fully contained within the 1st exon: coverageByTranscript(my_reads[1], my_transcript) ## Note that the length of the Rle (1880) is the length of the transcript. ## The 2nd and 3rd reads overlap the 2 exons and the intron. Only the ## parts that overlap the exons participate to coverage: coverageByTranscript(my_reads[2], my_transcript) coverageByTranscript(my_reads[3], my_transcript) ## The coverage of the 3 reads together is: coverageByTranscript(my_reads, my_transcript) ## Note that this is the sum of the individual coverages. This can be ## checked with: stopifnot(all( coverageByTranscript(my_reads, my_transcript) == Reduce("+", lapply(seq_along(my_reads), function(i) coverageByTranscript(my_reads[i], my_transcript)), 0L) )) ## --------------------------------------------------------------------- ## 2. COMPUTE THE FULL TRANSCRIPTOME COVERAGE OF A SET OF ALIGNED READS ## --------------------------------------------------------------------- ## Load the aligned reads: library(pasillaBamSubset) library(GenomicAlignments) reads <- readGAlignments(untreated1_chr4()) ## Compute the full transcriptome coverage by calling ## coverageByTranscript() on 'dm3_transcripts': tx_cvg <- coverageByTranscript(reads, dm3_transcripts, ignore.strand=TRUE) tx_cvg ## A sanity check: stopifnot(identical(lengths(tx_cvg), sum(width(dm3_transcripts)))) ## We can also use pcoverageByTranscript() to compute 'tx_cvg'. ## For this we first create a GAlignmentsList object "parallel" to ## 'dm3_transcripts' where the i-th list element contains the aligned ## reads that overlap with the i-th transcript: hits <- findOverlaps(reads, dm3_transcripts, ignore.strand=TRUE) tx2reads <- setNames(as(t(hits), "List"), names(dm3_transcripts)) reads_by_tx <- extractList(reads, tx2reads) # GAlignmentsList object reads_by_tx ## Call pcoverageByTranscript(): tx_cvg2 <- pcoverageByTranscript(reads_by_tx, dm3_transcripts, ignore.strand=TRUE) stopifnot(identical(tx_cvg, tx_cvg2)) ## A more meaningful coverage is obtained by counting for each ## transcript only the reads that are *compatible* with its splicing: compat_hits <- findCompatibleOverlaps(reads, dm3_transcripts) tx2reads <- setNames(as(t(compat_hits), "List"), names(dm3_transcripts)) compat_reads_by_tx <- extractList(reads, tx2reads) tx_compat_cvg <- pcoverageByTranscript(compat_reads_by_tx, dm3_transcripts, ignore.strand=TRUE) ## A sanity check: stopifnot(all(all(tx_compat_cvg <= tx_cvg))) ## --------------------------------------------------------------------- ## 3. COMPUTE CDS COVERAGE OF A SET OF ALIGNED READS ## --------------------------------------------------------------------- ## coverageByTranscript() can also be used to compute CDS coverage: cds <- cdsBy(txdb, by="tx", use.names=TRUE) cds_cvg <- coverageByTranscript(reads, cds, ignore.strand=TRUE) cds_cvg ## A sanity check: stopifnot(identical(lengths(cds_cvg), sum(width(cds)))) ## --------------------------------------------------------------------- ## 4. ALTERNATIVELY, THE CDS COVERAGE CAN BE OBTAINED FROM THE ## TRANSCRIPT COVERAGE BY TRIMMING THE 5' AND 3' UTRS ## --------------------------------------------------------------------- tx_lens <- transcriptLengths(txdb, with.utr5_len=TRUE, with.utr3_len=TRUE) stopifnot(identical(tx_lens$tx_name, names(tx_cvg))) # sanity ## Keep the rows in 'tx_lens' that correspond to a list element in ## 'cds_cvg' and put them in the same order as in 'cds_cvg': m <- match(names(cds_cvg), names(tx_cvg)) tx_lens <- tx_lens[m, ] utr5_width <- tx_lens$utr5_len utr3_width <- tx_lens$utr3_len cds_cvg2 <- windows(tx_cvg[m], start=1L+utr5_width, end=-1L-utr3_width) ## A sanity check: stopifnot(identical(cds_cvg2, cds_cvg))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.