Source code for conkit.plot.contactmapchord

# 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.
"""A module to produce a contact map chord diagram"""

from __future__ import division
from __future__ import print_function

__author__ = "Felix Simkovic"
__date__ = "13 Feb 2017"
__version__ = "0.13.3"

import matplotlib.pyplot as plt
import numpy as np

from conkit.core.mappings import ContactMatchState
from conkit.plot.figure import Figure
from conkit.plot.tools import ColorDefinitions
from conkit.plot.tools import get_points_on_circle
from conkit.plot.tools import get_radius_around_circle
from conkit.plot.tools import _isinstance


[docs]class ContactMapChordFigure(Figure): """A Figure object specifically for a :obj:`~conkit.core.contactmap.ContactMap` This figure will illustrate the contacts linking the residues in the target sequence. This plot is a very common representation of contacts. With this figure, you can illustrate intra-molecular. Color scheme: ========== =========== ========== =========== ========== =========== ========== =========== ========== =========== Amino acid Hex code Amino acid Hex code Amino acid Hex code Amino acid Hex code Amino acid Hex code ========== =========== ========== =========== ========== =========== ========== =========== ========== =========== Ala ``#882D17`` Arg ``#B3446C`` Asn ``#F99379`` Asp ``#875692`` Cys ``#F3C300`` Gln ``#F6A600`` Glu ``#F38400`` Gly ``#BE0032`` His ``#C2B280`` Ile ``#848482`` Leu ``#E68FAC`` Lys ``#008856`` Met ``#0067A5`` Phe ``#A1CAF1`` Pro ``#604E97`` Ser ``#DCD300`` Thr ``#8DB600`` Trp ``#E25822`` Tyr ``#2B3D26`` Val ``#654522`` Unk ``#000000`` ========== =========== ========== =========== ========== =========== ========== =========== ========== =========== Attributes ---------- hierarchy : :obj:`~conkit.core.contactmap.ContactMap` The default contact map hierarchy Examples -------- >>> import conkit >>> cmap = conkit.io.read('toxd/toxd.mat', 'ccmpred').top_map >>> conkit.plot.ContactMapChordFigure(cmap) """ def __init__(self, hierarchy, use_conf=False, **kwargs): """A new contact map plot Parameters ---------- hierarchy : :obj:`~conkit.core.contactmap.ContactMap` The default contact map hierarchy use_conf : bool, optional The marker size will correspond to the raw score [default: False] **kwargs General :obj:`~conkit.plot.figure.Figure` keyword arguments """ super(ContactMapChordFigure, self).__init__(**kwargs) self._hierarchy = None self.hierarchy = hierarchy self.use_conf = use_conf self.draw() def __repr__(self): return self.__class__.__name__ @property def hierarchy(self): """The default contact map hierarchy""" return self._hierarchy @hierarchy.setter def hierarchy(self, hierarchy): """Define the default contact map hierarchy""" if hierarchy and _isinstance(hierarchy, "ContactMap"): self._hierarchy = hierarchy else: raise TypeError("Invalid hierarchy type: %s" % hierarchy.__class__.__name__)
[docs] def draw(self): hierarchy = self.hierarchy.rescale() self_data = np.array([(c.res1, c.res1_seq, c.res2, c.res2_seq, c.raw_score, c.status) for c in hierarchy]) _drange = np.append(self_data[:, 1], self_data[:, 3]).astype(np.int64) self_data_range = np.arange(_drange.min(), _drange.max() + 1) npoints = self_data_range.shape[0] coords = np.array(get_points_on_circle(npoints)) bezier_path = np.arange(0, 1.01, 0.01) for c in self_data: x1, y1 = coords[int(c[1]) - self_data_range.min()] x2, y2 = coords[int(c[3]) - self_data_range.min()] xb, yb = [0, 0] x = (1 - bezier_path) ** 2 * x1 + 2 * (1 - bezier_path) * bezier_path * xb + bezier_path ** 2 * x2 y = (1 - bezier_path) ** 2 * y1 + 2 * (1 - bezier_path) * bezier_path * yb + bezier_path ** 2 * y2 alpha = float(c[4]) if self.use_conf else 1.0 color = { ContactMatchState.false_positive: ColorDefinitions.MISMATCH, ContactMatchState.true_positive: ColorDefinitions.MATCH, }.get(int(c[5]), ColorDefinitions.MATCH) self.ax.plot(x, y, color=color, alpha=alpha, linestyle="-", zorder=0) if int(c[5]) == ContactMatchState.true_positive: self.ax.plot(x, y, color=color, alpha=alpha, linestyle="-", zorder=1, linewidth=1) else: self.ax.plot(x, y, color=color, alpha=alpha, linestyle="-", zorder=0, linewidth=1) residue_data = np.append(self_data[:, [1, 0]], self_data[:, [3, 2]]) residue_data = residue_data.reshape(self_data[:, 0].shape[0] * 2, 2) color_codes = dict([(k, ColorDefinitions.AA_ENCODING["X"]) for k in self_data_range]) for k, v in np.vstack([tuple(row) for row in residue_data]): color_codes[int(k)] = ColorDefinitions.AA_ENCODING[v] colors = [color_codes[k] for k in sorted(color_codes.keys())] # TODO: Use tools module to process this x, _ = zip(*residue_data) label_data = set(map(int, x)) label_coords = np.zeros((npoints, 2)) space = 2 * np.pi / npoints for i in np.arange(npoints): label_coords[i] = [ (npoints + npoints / 10) * np.cos(space * i) - npoints / 20, (npoints + npoints / 10) * np.sin(space * i) - npoints / 40, ] xy_highlight = [] for r in sorted(label_data)[:: int(npoints / (npoints / 10))]: i = r - self_data_range.min() xy = coords[i] xytext = label_coords[i] self.ax.annotate(r, xy=xy, xytext=xytext) xy_highlight.append(xy.tolist()) radius = get_radius_around_circle(coords[0], coords[1]) self._patch_scatter(coords[:, 0], coords[:, 1], symbol="o", facecolor=colors, linewidth=0.0, radius=radius) self._patch_scatter(*zip(*xy_highlight), symbol="o", facecolor="none", edgecolor="#000000", radius=radius) arrow_x, arrow_y = (npoints + npoints / 5, 0) self.ax.arrow(arrow_x, arrow_y, 0, npoints / 10, head_width=1.5, color="#000000") self.ax.set_xlim(-arrow_x, arrow_x + 2) self.ax.set_ylim(-arrow_x, arrow_x) self.ax.axis("off") # TODO: deprecate this in 0.14 if self._file_name: self.savefig(self._file_name, dpi=self._dpi)