Description Usage Arguments Value Examples
mainNonExonMap
This is the main function for my functions in this package. The function will plot the non-exon position on reference gene and if they are introns (if intronsFile exist).
1 | mainNonExonMap(readsFile, transcriptsFile, intronsFile = "")
|
readsFile |
The file that store the read sequences, a string. |
transcriptsFile |
The file that store the reference sequences, a string. |
intronsFile |
The file that contains the intron sequences, a string. |
A list of list with reference name, alignment position, alignment counts and percentage of introns if there is a verifyDataFrame.
1 2 3 4 5 6 7 8 | 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:
mainNonExonMap(readsFile, transcriptsFile)
mainNonExonMap(readsFile, transcriptsFile, intronsFile)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.