Description Usage Arguments Value Examples
findNonExon
use positionNonExon
to align the reads with reference sequences and output a BAM file named "findNonExonTranscripts.BAM". The return value is a data frame with all position of alignment and number of matches and unmatches.
1 | findNonExon(readsFile, referencesFile)
|
readsFile |
The file that store the read sequences, a string. |
referencesFile |
The file that store the reference sequences usually transcripts, a string. |
A data frame contains the name of read, name of reference seqeunces, match/unmatch position and reference start position.
1 2 3 4 5 6 | readsFile <- system.file("extdata/testdata", "RRHreads.fasta", package = "nonexonmap")
transcriptsFile <- system.file("extdata/testdata", "RRHtranscript.fasta", package = "nonexonmap")
## Not run:
dataFrame <- findNonExon(readsFile, transcriptsFile)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.