View source: R/junctionCount.R
junctionCount | R Documentation |
Count junctions from either TopHat2, HISAT2 or Rail-RNA output
junctionCount(
junctionFiles,
sampleNames = names(junctionFiles),
output = c("Count", "Rail"),
minOverhang = 0,
strandSpecific = FALSE,
illuminaStranded = FALSE,
minCount = 1,
maxCores = 1,
skipLines = ifelse(output == "Count", 0, 1)
)
junctionFiles |
A character vector with the full paths to the junction files. Can alternatively be a list of GRanges-class objects with the junction count information. |
sampleNames |
A character vector of the same length as |
output |
Either |
minOverhang |
minimum overhang. |
strandSpecific |
a logical specifying whether the library is strand specific or not. |
illuminaStranded |
a logical indicating whether the Illumina library is stranded or not. |
minCount |
Minimum count. |
maxCores |
The maximum number of cores to use. By default one. |
skipLines |
An |
A two element list with a DataFrame
and a
GRanges-class object with the counts and the
annotation used.
Andrew E Jaffe
## TODO (need some data)
## See https://github.com/LieberInstitute/RNAseq-pipeline/blob/ab71dedb36bcc3dad57233e645fabd5deb96d446/sh/create_count_objects-human.R#L633-L643
## for an example of how it's being using the the RNA-seq pipeline code
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.