Description Usage Arguments Details Value See Also Examples
normalizeGC
estimates the feature specific size factors in order to reduce the technical variation during modification peak statistics quantification.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | normalizeGC(
sep,
bsgenome = "hg19",
txdb = "hg19",
gff_dir = NULL,
fragment_length = 100,
binding_length = 25,
feature = c("Background", "Modification", "All"),
qtnorm = FALSE,
effective_GC = FALSE
)
## S4 method for signature 'SummarizedExomePeak'
normalizeGC(
sep,
bsgenome = NULL,
txdb = NULL,
gff_dir = NULL,
fragment_length = 100,
binding_length = 25,
feature = c("Background", "Modification", "All"),
qtnorm = FALSE,
effective_GC = FALSE
)
|
sep |
a |
bsgenome |
a |
txdb |
a |
gff_dir |
optional, a |
fragment_length |
a positive integer number for the expected fragment length in nucleotides; default |
binding_length |
a positive integer number for the expected binding length of the anti-modification antibody in IP samples; default |
feature |
a
|
qtnorm |
a If |
effective_GC |
a |
PCR amplication bias related to GC content is a major source of technical variation in RNA-seq. The GC content biases are usually correlated within the same laboratory environment, and this will result in the batch effect between different studies.
The GC content normalization can result in an improvement of peak accuracy for most published m6A-seq data, and it is particullarly recommended if you want to compare the quantifications on methylation levels between different laboratory conditions.
a SummarizedExomePeak
object with the updated slot GCsizeFactors
.
1 2 3 4 5 6 7 | ### Load the example SummarizedExomPeak object
f1 = system.file("extdata", "sep_ex_mod.rds", package="exomePeak2")
sep <- readRDS(f1)
### Normalize the GC content biases
sep <- normalizeGC(sep)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.