Description Usage Arguments Value Examples
A function for extracting a set of subsequences surrounding splice sites from a sequence container like a BSgenome or XStraingSet.
1 | extract_IsoSeq_ge(ASdata, genome)
|
ASdata |
A data frame holds an alternative splicing database, including intron retention (IR), exon skipping (ES), alternative donor sites (AltD), and alternative acceptor sites (AltA). |
genome |
A BSgenome or XStringSet object. |
A alternative splicing data frame with sequence information.
1 2 3 4 5 6 7 8 9 10 11 | ##Load the rice genome (MSU)
library("BSgenome.Osativa.MSU.MSU7")
##Load the alternative splicing database
path <- system.file("extdata","sample_riceAS.txt",
package = "AStrap")
rice_ASdata <-read.table(path,sep="\t",head = TRUE,
stringsAsFactors = FALSE)
##Extract the sequence around splice sites based on genome
AS.data <- extract_IsoSeq_ge(rice_ASdata,Osativa)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.