Description Usage Arguments Value Examples
verifyNonExon
use positionNonExon
to align the reads with introns and output a BAM file named "verifyNonExonIntrons.BAM". The return value is a data frame with all position of alignment and number of matches and unmatches.
1 | verifyNonExon(readsFile, referenceFile)
|
readsFile |
The file that store the read sequences, a string. |
referenceFile |
The file that store the reference sequences usually introns, 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")
intronsFile <- system.file("extdata/testdata", "RRHintrons.fasta", package = "nonexonmap")
## Not run:
dataFrame <- verifyNonExon(readsFile, intronsFile)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.