Description Usage Arguments Value See Also Examples
positionNonExon
uses buildindex
and
align
to form an alignment file. From the file,
output the position of non-exon sequences exist on the references sequences
and the match/unmatch numbers in the reads itself.
1 | positionNonExon(readsFile, referencesFile, outputsFile)
|
readsFile |
The file that store the read sequences, a string. |
referencesFile |
The file that store the reference sequences, a string. |
outputsFile |
The name of output file in BAM format, a string. |
A data frame contains the name of read, name of reference seqeunces, match/unmatch position and reference start position.
buildindex
Build an index for read mapping
to perform.
align
Align DNA and RNA sequencing reads
and report.
scanBam
Read the Bam file.
1 2 3 4 5 6 7 8 9 10 11 | readsFile <- system.file("extdata/testdata", "RRHreads.fasta",
package = "nonexonmap")
transcriptsFile <- system.file("extdata/testdata", "RRHtranscript.fasta",
package = "nonexonmap")
intronsFile <- system.file("extdata/testdata", "RRHintrons.fasta",
package = "nonexonmap")
## Not run:
positionNonExon(readsFile, transcriptsFile, "outputReadsTranscript.BAM")
positionNonExon(readsFile, intronsFile, "outputReadsIntron.BAM")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.