Description Usage Arguments Value Examples
A function for extracting a set of subsequences surrounding splice sites from a sequence container like XStraingSet.
1 | extract_IsoSeq_tr(ASdata, transcriptSeq)
|
ASdata |
A data frame holds the coordinate of splice sites with as least three columns: Sname, Sstart, Send. Sname is the name of subject in the pariwise sequence alignment; Sstart is the start of subject in the pairwise sequence alignment; Send is the end of subject in the pairwise sequence; |
transcriptSeq |
An XStringSet object holds the transcript sequence. |
A alternative splicing data frame with sequence information.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ##Loading pairwise alignment data
load(system.file("data","sample_Aligndata.Rdata",package = "AStrap"))
head(Aligndata)
##Loading transcript sequence
trSequence.path <- system.file("extdata","example_TRsequence.fasta",
package = "AStrap")
trSequence <- readDNAStringSet(trSequence.path,format = "fasta")
##Extract sequence around splice site based on the transcript sequence
Aligndata <- extract_IsoSeq_tr(Aligndata,trSequence )
colnames(Aligndata)
head(Aligndata$Ddown10)
head(Aligndata$Aup10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.