This file is indexed.

/usr/lib/python2.7/dist-packages/csb/bio/io/__init__.py is in python-csb 1.2.3+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

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