File: __init__.py

package info (click to toggle)
python-csb 1.2.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,708 kB
  • ctags: 4,889
  • sloc: python: 24,180; xml: 812; makefile: 23; sh: 6
file content (15 lines) | stat: -rw-r--r-- 730 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
I/O for various biological file formats.
"""

from csb.bio.io.hhpred import HHOutputParser, HHProfileParser
from csb.bio.io.hhpred import HHpredOutputParser, HHpredProfileParser
from csb.bio.io.clans import ClansParser, ClansFileWriter
from csb.bio.io.wwpdb import StructureParser, AsyncStructureParser, PDBHeaderParser
from csb.bio.io.fasta import SequenceParser, PDBSequenceParser
from csb.bio.io.dssp import DSSPParser, StrideParser

__all__ = ['HHOutputParser', 'HHProfileParser', 'ClansParser', 
           'HHpredOutputParser', 'HHpredProfileParser', 'ISitesParser',
           'StructureParser', 'AsyncStructureParser', 'PDBHeaderParser',
           'SequenceParser', 'PDBSequenceParser', 'DSSPParser', 'StrideParser']