OpenStructure
Loading...
Searching...
No Matches
mat.py
Go to the documentation of this file.
1from ost.seq.alg import SubstWeightMatrix
2
3def _InitMatrix(preset_enum):
5 mat.AssignPreset(preset_enum)
6 return mat
7
8BLOSUM45 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM45)
9BLOSUM62 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM62)
10BLOSUM80 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM80)
11BLOSUM100 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM100)
12NUC44 = _InitMatrix(SubstWeightMatrix.Preset.NUC44)
13
14__all__=['BLOSUM45','BLOSUM62','BLOSUM80','BLOSUM100','NUC44']
position-independet substitution weight matrix
_InitMatrix(preset_enum)
Definition mat.py:3