Description Usage Arguments Value Examples
This function reads the "flattened" gff annotation file created by QoRTs.
This annotation file contains all the gene, transcript, exon, and junction ID's and their loci.
In general this function is not used by the end-user, but is called internally by
runJunctionSeqAnalyses
or readJunctionSeqCounts
.
1 | readAnnotationData(flat.gff.file)
|
flat.gff.file |
Character string. The filename of the "flat" gff annotation file. The file may be gzip-compressed. This "flat" gff file must be produced by the QoRTs jar utility using the makeFlatGtf or mergeNovelSplices functions (depending on whether inclusion of novel splice junctions is desired). |
A data.frame
object, containing the annotation information from the flat gff file.
1 2 3 4 5 6 | gff.file <- system.file("extdata/cts/withNovel.forJunctionSeq.gff.gz",
package="JctSeqData");
#Parse the GFF file:
annoData <- readAnnotationData(gff.file);
head(annoData);
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.