View source: R/getPsiteCoordinates.R
getPsiteCoordinates | R Documentation |
Extract P site coordinates from a bam file to a GRanges object.
getPsiteCoordinates(
bamfile,
bestpsite,
anchor = "5end",
param = ScanBamParam(what = c("qwidth"), tag = character(0), flag =
scanBamFlag(isSecondaryAlignment = FALSE, isUnmappedQuery = FALSE,
isNotPassingQualityControls = FALSE, isSupplementaryAlignment = FALSE))
)
bamfile |
A BamFile object. |
bestpsite |
P site postion. See estimatePsite |
anchor |
5end or 3end. Default is 5end. |
param |
A ScanBamParam object. Please note the 'qwidth' is required. |
A GRanges object with qwidth metadata which indicates the width of reads.
library(Rsamtools)
bamfilename <- system.file("extdata", "RPF.WT.1.bam",
package="ribosomeProfilingQC")
yieldSize <- 10000000
bamfile <- BamFile(bamfilename, yieldSize = yieldSize)
pc <- getPsiteCoordinates(bamfile, bestpsite=13)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.