How does "super" compute its alignment score? #406
-
As the title says. I am writing a summary in my thesis of a pipeline I wrote that uses the PyMOL api. I'd like to be able to detail how the score is calculated as I make reference/use of it multiple times. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
hi @danieljnilson |
Beta Was this translation helpful? Give feedback.
-
Hi @ye11owSub ! |
Beta Was this translation helpful? Give feedback.
-
The PyMOLWiki entry for Feel free to ask any questions if you need further clarification. |
Beta Was this translation helpful? Give feedback.
From what I understand, the
MatchAlign
score takes an arbitrary scoring matrix along with dynamic programming parameters (gap penalties, etc...) to discover the optimal alignment via something similar toNeedleman-Wunsch
. Forsuper
, the scoring matrix is as I mentioned above, information regarding its local structural information (mostly dihedrals). Whilealign
will generate the scoring matrix based off of one like theBLOSUM62
.