Description Usage Arguments Value Examples
View source: R/importFilesPredictionTool.R
The function importCircMarker is specifically designed to read and adapt the CircMarker (July.24.2018) output file (Brief_sum.txt). See https://github.com/lxwgcool/CircMarker for more details.
1 | importCircMarker(pathToFile, gtf)
|
pathToFile |
A character string specifying the path to the file containing the detected circRNAs. |
gtf |
A data frame containing the formatted GTF file. This is generated
with |
A data frame.
1 2 3 4 5 6 7 8 9 10 11 12 | # Load short version of the gencode v19 annotation file
data("gtf")
# Path to an example file containing circRNA detected by CircMarker
pathToFile <- system.file("extdata", "circmarker/circRNAs_001.txt",
package="circRNAprofiler")
# Inner function.
# Import circRNAs.
# Due to the short version of the gtf file gene names might miss in the
# returned output.
importCircMarker(pathToFile, gtf)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.