View source: R/CtoTAssignment.R
CtoTAssignment | R Documentation |
An function for assigning the CtoT transition read counts from bigWig.
CtoTAssignment(object, bw_positive, bw_negative, sampleName = "")
object |
A GRanges object which should contains all the single nucleotide peaks of miCLIP2 experiment. |
bw_positive |
A path to the bigWig file of C to T transition read counts at the positive strand that output from the preprocess in the m6Aboost pipeline. |
bw_negative |
A path to the bigWig file of C to T transition read counts at the negative strand that output from the preprocess in the m6Aboost pipeline. |
sampleName |
The column name that user would like to use for indicating the name of the sample. |
A GRanges object with the truncation read counts.
You Zhou
if (.Platform$OS.type != "windows") {
testpath <- system.file("extdata", package = "m6Aboost")
test <- readRDS(file.path(testpath, "test.rds"))
ctotBw_p <- file.path(testpath, "C2T_positive.bw")
ctotBw_n <- file.path(testpath, "C2T_negative.bw")
test <- CtoTAssignment(test, bw_positive=ctotBw_p, bw_negative=ctotBw_n,
sampleName = "CtoT_WT1")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.