Description Usage Arguments Value Examples
A function that calculates the difference between two dot bracket form of RNA sequences, takes two sequences as function arguments.This function can handle point mutation, insertion, and deletion.
1 | dotComp(seq1, seq2, option = 0)
|
seq1 |
A string represent an RNA secondary structure in dot bracket form |
seq2 |
A string represent an RNA secondary structure in dot bracket form |
option |
Anumber represent the method for comparison, if option is 0, then the function will compare every characters in the two sequence, if option is 1, then the function will use string alignment method (Needleman–Wunsch algorithm) for comparison |
Returns a number represent the different in two structure
1 2 | #this should return 2
dotComp("...(((...)))...", ".(.(.(...)))...")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.