Description Usage Arguments Examples
View source: R/cryptic_transcripts_methods.R
Genome-wide calculation of cryptic scores with a specified method.
1 2 3 | genome_wide_scores(coverageDataSet, method = c("ratio", "enrichment",
"probabilistic"), outfile, introns = NULL, windowLength = 100,
iterations = 10000)
|
coverageDataSet |
A coverageDataSet containing the coverage values for all genes. |
method |
A caracter vector indicating the method to be used. |
outfile |
A character vector indicating the output file name. |
introns |
An objet of type |
windowLength |
If the |
iterations |
If the |
1 2 3 4 5 | data("rna_seq_signals")
#genome_wide_scores(rna_seq_signals, "ratio", "ratio.txt")
genome_wide_scores(rna_seq_signals, "enrichment", "enrichment.txt")
#genome_wide_scores(rna_seq_signals, "probabilistic", "probabilistic.txt")
unlink(c("ratio.txt", "enrichment.txt", "probabilistic.txt"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.