Skip to content
Snippets Groups Projects
Select Git revision
  • 097288283201d5a7944809275b89352f01f9dbeb
  • master default protected
  • develop protected
  • cmake_boost_refactor
  • ubuntu_ci
  • mmtf
  • non-orthogonal-maps
  • no_boost_filesystem
  • data_viewer
  • 2.11.1
  • 2.11.0
  • 2.10.0
  • 2.9.3
  • 2.9.2
  • 2.9.1
  • 2.9.0
  • 2.8.0
  • 2.7.0
  • 2.6.1
  • 2.6.0
  • 2.6.0-rc4
  • 2.6.0-rc3
  • 2.6.0-rc2
  • 2.6.0-rc
  • 2.5.0
  • 2.5.0-rc2
  • 2.5.0-rc
  • 2.4.0
  • 2.4.0-rc2
29 results

bump-version.py

Blame
  • mat.py NaN GiB
    from ost.seq.alg import SubstWeightMatrix
    
    def _InitMatrix(preset_enum):
      mat = SubstWeightMatrix()
      mat.AssignPreset(preset_enum)
      return mat
    
    BLOSUM45 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM45)
    BLOSUM62 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM62)
    BLOSUM80 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM80)
    BLOSUM100 = _InitMatrix(SubstWeightMatrix.Preset.BLOSUM100)
    
    __all__=['BLOSUM45','BLOSUM62','BLOSUM80','BLOSUM100']