Skip to content
Snippets Groups Projects
Select Git revision
  • 3fa0c025cdd4b01103e6b233343f94c35fe0390e
  • 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

settings.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']