Description Usage Arguments Value Examples
View source: R/CompareTwoSequences.R
CompareTwoSequences Compare two AA sequences in a blast results
1 | CompareTwoSequences(QuerySequence, SubjectSequence, QueryStart = 12)
|
QuerySequence |
The query sequence in the blast result file, the query sequence correspond to the sequence of the protein bank aligned to the knowned protein bank (Uniprot for example). |
SubjectSequence |
The subject sequence in the blast results file, the subject sequence correspond to the known protein (typically one of UNIPROT) on which the query have been aligned. |
QueryStart |
In the case where the matching part of the query do not beggin with its N-Term extremity. |
IRanges with metadata corresponding to the differences between the two sequences, SAAV, Insertion, Deletion
1 2 3 4 5 6 7 8 9 10 11 | R_FilePath <- system.file("extdata",
"blast_rescue.example.txt",
package = "isoformnspectRe")
Rescue<-read.table(
R_FilePath,
header=TRUE,
stringsAsFactors = FALSE)
CompareTwoSequences(
as.vector(Rescue$QuerySequence[1]),
as.vector(Rescue$SubjectSequence[1]),
as.vector(Rescue$QueryStart[1]))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.