Description Usage Arguments Value Examples
countNonExon
is a function that is used to count the number of non-
exon sequences on specific position of reference sequences and output the
percentage of introns in those non-exon sequences.
1 | countNonExon(findDataFrame, verifyDataFrame = data.frame())
|
findDataFrame |
the data frame that store the information for funciton
to analyze. Should compute from |
verifyDataFrame |
the data frame that store the information for
funciton to analyze. Should compute from |
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 9 10 11 12 13 | 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:
finddataframe <- findNonExon(readsFile, transcriptsFile)
countNonExon(finddataframe)
verifydataframe <- verifyNonExon(readsFile, intronsFile)
countNonExon(finddataframe, verifydataframe)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.