Source code for conkit.io.caspmode2

# BSD 3-Clause License
#
# Copyright (c) 2016-21, University of Liverpool
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
#   list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
#   this list of conditions and the following disclaimer in the documentation
#   and/or other materials provided with the distribution.
#
# * Neither the name of the copyright holder nor the names of its
#   contributors may be used to endorse or promote products derived from
#   this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""
Parser module specific to CASP-RR MODE 2 distance predictions
"""

import numpy as np
from conkit.io._parser import DistanceFileParser
from conkit.core.distance import Distance
from conkit.core.distogram import Distogram
from conkit.core.distancefile import DistanceFile

DISTANCE_BINS = ((0, 4), (4, 6), (6, 8), (8, 10), (10, 12), (12, 14), (14, 16), (16, 18), (18, 20), (20, np.inf))


[docs]class CaspMode2Parser(DistanceFileParser): """Parser class for CASP RR MODE 2 distance prediction file"""
[docs] def read(self, f_handle, f_id="casp2"): """Read a distance prediction file Parameters ---------- f_handle Open file handle [read permissions] f_id : str, optional Unique contact file identifier Returns ------- :obj:`~conkit.core.distancefile.DistanceFile` """ hierarchy = DistanceFile(f_id) hierarchy.original_file_format = "caspmode2" _map = Distogram("distogram_1") hierarchy.add(_map) for line in f_handle.readlines(): line = line.lstrip().rstrip().split() if not line or len(line) != 13 or not line[0].isdigit() or not line[1].isdigit(): continue res1_seq = int(line[0]) res2_seq = int(line[1]) raw_score = float(line[2]) distance_scores = tuple([float(p) for p in line[3:]]) _distance = Distance(res1_seq, res2_seq, distance_scores, DISTANCE_BINS, raw_score=raw_score) _map.add(_distance) return hierarchy
[docs] def write(self, f_handle, hierarchy): """Write a distance prediction file instance to a file Parameters ---------- f_handle Open file handle [write permissions] hierarchy : :obj:`~conkit.core.distancefile.DistanceFile`, :obj:`~conkit.core.distogram.Distogram` or :obj:`~conkit.core.distance.Distance` Raises ------ :exc:`RuntimeError` More than one contact map in the hierarchy """ distancefile = self._reconstruct(hierarchy) if len(distancefile) > 1: raise RuntimeError("More than one distogram provided") distogram = distancefile.top_map content = "PFRMAT RR\nRMODE 2\n" line_template = "{} {} {:.6f} {:.6f} {:.6f} {:.6f} {:.6f} {:.6f} {:.6f} {:.6f} {:.6f} {:.6f} {:.6f}\n" for distance in distogram: distance.reshape_bins(DISTANCE_BINS) content += line_template.format(distance.res1_seq, distance.res2_seq, distance.raw_score, *distance.distance_scores) f_handle.write(content)