/usr/share/pyshared/cogent/draw/linear.py is in python-cogent 1.5.3-2.
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 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 | #!/usr/bin/env python
from __future__ import division
import rlg2mpl
import matplotlib.colors
import matplotlib.ticker
import matplotlib.transforms
from matplotlib.text import Text
from matplotlib.patches import PathPatch
from matplotlib.font_manager import FontProperties
from matplotlib.collections import (CircleCollection, PolyCollection,
LineCollection, RegularPolyCollection)
from matplotlib.transforms import (IdentityTransform,
blended_transform_factory, Affine2DBase)
import numpy
import copy
import warnings
from cogent.core.location import Map, Span, _norm_slice
from cogent.core.moltype import DNA
__author__ = "Peter Maxwell"
__copyright__ = "Copyright 2007-2012, The Cogent Project"
__credits__ = ["Gavin Huttley", "Peter Maxwell", "Matthew Wakefield"]
__license__ = "GPL"
__version__ = "1.5.3"
__maintainer__ = "Peter Maxwell"
__email__ = "pm67nz@gmail.com"
__status__ = "Production"
# map - a 1D space. must support len() and in some cases [i]
# track - a panel within a sequence display holding annotations
# display - a collection of stacked tracks with a shared base sequence
# base - the map that provides the X scale
# annotation - an annotated disjoint location on a map
# span - a contiguous part of an annotation
# feature, code, variable, shade - types of anotation
# TODO: subtracks, spectra/width variables, strides, windows
# broken ends, vscales, zero lines, sub-pixel features.
# fuzzy ends. more ids/qualifiers.
MAX_WIDTH = 72*8
def dna_shapes():
w = .5 / 2
s = .75 / 2
m = (w+s) / 2
r = 8
y = 5
n = (r+y) / 2
def rectangle(x,y):
return [(-x, 0), (-x, y), (x, y), (x, 0)]
shapes = {}
for (motif, width, height) in [
('A', w, r),
('G', s, r),
('C', s, y),
('T', w, y),
('R', m, r),
('Y', m, y),
('S', s, n),
('W', w, n),
('N', m, n)]:
shapes[motif] = rectangle(width, height)
return shapes
dna_shapes = dna_shapes()
class TransformScalePart(Affine2DBase):
"""Just the translation factors of the child transform, no
rotation or translation.
a: Child transform from which scale is extracted
source_dims: the dimensions (0:X, 1:Y, 2:I) from which the
resulting X and Y scales are taken."""
def __init__(self, a, source_dims=[0,1]):
self.input_dims = a.input_dims
self.output_dims = a.output_dims
self._a = a
self._scale_source_dims = source_dims
self._mtx = a.get_affine().get_matrix().copy()
self._mtx[:] = 0
self._mtx[2,2] = 1
self._invalid = True
self.set_children(a)
Affine2DBase.__init__(self)
def get_matrix(self):
if self._invalid:
a = self._a.get_affine().get_matrix()
for dim in [0,1]:
sdim = self._scale_source_dims[dim]
self._mtx[dim,dim] = a[sdim,sdim]
self._inverted = None
self._invalid = 0
return self._mtx
class _Colors(object):
"""colors.white = to_rgb("white"), same as just using "white"
except that this lookup also checks the color is valid"""
def __getattr__(self, attr):
return matplotlib.colors.colorConverter.to_rgb(attr)
colors = _Colors()
def llen(label, fontSize=10):
# placeholder for better length-of-label code
return len(label) * fontSize
class TrackDefn(object):
def __init__(self, tag, features):
assert tag
self.tag = tag
self.feature_types = features
def __iter__(self):
return iter(self.feature_types)
class Track(object):
def __init__(self, tag, features, level=0, label=None,
needs_border=False, max_y=None, height=None):
assert tag
if label is None:
label = tag
self.tag = tag
self.label = label
assert isinstance(label, str), (tag, label)
self.features = features
self.height = max(height, max([f.height for f in self.features]))
self.range = max_y or max(
# xxx this works for zero-based only
[getattr(f, 'value', None) for f in self.features]) or 0
self.level = level
self.needs_border = needs_border
def getShapes(self, span, rotated, height,
yrange=None, done_border=False):
shape_list = [feature.shape(height,
yrange or self.range, rotated) for feature in self.features]
if self.needs_border and not done_border:
border = rlg2mpl.Group(
rlg2mpl.Line(span[0], 0, span[1], 0,
strokeWidth=.5, strokeColor=colors.black),
rlg2mpl.Line(span[0], height, span[1], height,
strokeWidth=.5, strokeColor=colors.black)
)
shape_list = [border] + shape_list
return shape_list
def __repr__(self):
return "Track(%(tag)s,%(label)s)" % vars(self)
class CompositeTrack(Track):
"""Overlayed tracks"""
def __init__(self, tag, tracks, label=None):
if label is None:
labels = dict([(track.label, True)
for track in tracks]).keys()
if len(labels) == 1:
label = labels[0]
else:
label = ''
self.tag = tag
self.label = label
self.tracks = tracks
self.height = max([track.height for track in tracks])
self.level = max([track.level for track in tracks])
self.range = max([track.range for track in tracks])
def getShapes(self, span, rotated, height,
yrange=None, done_border=False):
if yrange is None:
yrange = self.range
shape_list = []
for track in self.tracks:
if track.needs_border and not done_border:
border = rlg2mpl.Group(
rlg2mpl.Line(span[0], 0, span[1], 0,
strokeWidth=.5, strokeColor=colors.black),
rlg2mpl.Line(span[0], height, span[1], height,
strokeWidth=.5, strokeColor=colors.black)
)
shape_list.append(border)
done_border = True
shape_list.extend(track.getShapes(span, rotated, height,
yrange=yrange, done_border=True))
return shape_list
class Annotation(object):
"""A map, a style, and some values"""
def __init__(self, map, *args, **kw):
self.map = map
self.values = self._make_values(*args, **kw)
def _make_values(self, *args, **kw):
# override for variables etc.
return []
def __repr__(self):
return "%s at %s" % (type(self), getattr(self, 'map', '?'))
# xxx styles do this. what about maps/ others
def shape(self, height, yrange, rotated):
g = rlg2mpl.Group()
posn = 0
for span in self.map.spans:
if not span.lost:
g.add(self._item_shape(
span, self.values[posn:posn+span.length],
height, yrange, rotated))
posn += span.length
return g
class _SeqRepresentation(object):
height = 20
y_offset = 10
x_offset = 0
def __init__(self, map, sequence, cvalues=None, colour_sequences=True,
font_properties=None):
self.font_properties = font_properties
alphabet = self.alphabet = sequence.MolType.Alphabets.Degen
alphabet_colours = None
if cvalues:
assert len(cvalues) == len(sequence)
cvalues = numpy.asarray(cvalues)
elif colour_sequences:
colour_map = sequence.getColourScheme(colors)
color_specs = [colour_map.get(m,'grey') for m in self.alphabet]
alphabet_colours = numpy.array([
matplotlib.colors.colorConverter.to_rgba(c, alpha=.5)
for c in color_specs])
# this could be faster is sequence were known to be a ModelSequence
sequence = numpy.asarray(self.alphabet.toIndices(str(sequence)))
posn = 0
used_count = 0
offsets = []
lengths = []
used = numpy.zeros([len(sequence)], bool)
x_offset = self.x_offset * 1.0
for span in map.spans:
if not (span.lost or span.Reverse):
offsets.append(x_offset + span.Start - used_count)
lengths.append(span.length)
used[posn:posn+span.length] = True
used_count += span.length
posn += span.length
seq = sequence[used]
if cvalues is None:
cvals = None
else:
cvals = cvalues[used]
x_offsets = numpy.repeat(offsets, lengths) + numpy.arange(used_count)
y_offsets = numpy.zeros_like(x_offsets) + self.y_offset
offsets = numpy.vstack([x_offsets, y_offsets]).T
self._calc_values(seq, cvals, alphabet_colours, offsets)
def shape(self, height, yrange, rotated):
raise NotImplementedError
class _MultiShapeSeqRepresentation(_SeqRepresentation):
def _calc_values(self, sequence, cvalues, alphabet_colours, offsets):
motifs = range(len(self.alphabet))
values = []
for motif in motifs:
positions = numpy.flatnonzero(sequence==motif)
if len(positions) == 0:
continue
if cvalues is not None:
cvs = cvalues.take(positions, axis=0)
elif alphabet_colours is not None:
cvs = [alphabet_colours[motif]]
else:
cvs = [colors.black]
values.append((motif, cvs, offsets[positions]))
self.per_shape_values = values
class _SingleShapeSeqRepresentation(_SeqRepresentation):
def _calc_values(self, sequence, cvalues, alphabet_colours, offsets):
if cvalues:
cvs = cvalues
elif alphabet_colours is not None:
cvs = alphabet_colours.take(sequence, axis=0)
else:
cvs = [colors.black]
self.cvalues = cvs
self.offsets = offsets
class SeqText(_MultiShapeSeqRepresentation):
height = 20
x_offset = 0.5
def shape(self, height, yrange, rotated):
rot = 0
if rotated: rot += 90
#if span.Reverse: rot+= 180
g = rlg2mpl.Group()
kw = dict(ha='center', va='baseline', rotation=rot,
font_properties=self.font_properties)
for (motif, cvalues, offsets) in self.per_shape_values:
letter = self.alphabet[motif]
c = len(cvalues)
for (i, (x,y)) in enumerate(offsets):
s = Text(x, y, letter, color=cvalues[i%c], **kw)
g.add(s)
return g
class SeqShapes(_MultiShapeSeqRepresentation):
height = 10
x_offset = 0.5
y_offset = 0
def __init__(self, map, sequence, *args, **kw):
super(SeqShapes, self).__init__(map, sequence, *args, **kw)
default = dna_shapes['N']
self.shapes = [dna_shapes.get(m, default) for m in self.alphabet]
self.rshapes = [[(y,x) for (x,y) in v] for v in self.shapes]
def shape(self, height, yrange, rotated):
g = rlg2mpl.Group()
(X, Y, I) = (0, 1, 2)
shapes = [self.shapes, self.rshapes][rotated]
trans = TransformScalePart(g.combined_transform)
artists = []
for (motif, cvalues, offsets) in self.per_shape_values:
shape = shapes[motif]
a = PolyCollection([shape], closed=True,
facecolors=cvalues, edgecolors=cvalues, offsets=offsets,
transOffset=g.combined_transform)
g.add(a)
a.set_transform(trans)
return g
class SeqDots(_SingleShapeSeqRepresentation):
# Something wrong with this one.
height = 5
x_offset = 0.5
y_offset = 5
def shape(self, height, yrange, rotated):
g = rlg2mpl.Group()
(X, Y, I) = (0, 1, 2)
#scaled_axes = [[X, I], [I, Y]][rotated]
scaled_axes = [[X, X], [Y, Y]][rotated]
scaled_axes = [[X, Y], [X, Y]][rotated]
trans = TransformScalePart(g.combined_transform, scaled_axes)
a = CircleCollection([.5], edgecolors=self.cvalues,
facecolors=self.cvalues, offsets=self.offsets,
transOffset=g.combined_transform)
g.add(a)
a.set_transform(trans)
return g
class SeqLineSegments(_SingleShapeSeqRepresentation):
height = 5
x_offset = 0.0
y_offset = 2.5
def shape(self, height, yrange, rotated):
g = rlg2mpl.Group()
trans = TransformScalePart(g.combined_transform)
segment = [(.1,0),(.9,0)]
if rotated:
segment = [(y,x) for (x,y) in segment]
a = LineCollection([segment], colors=self.cvalues,
offsets=self.offsets, transOffset=g.combined_transform)
a.set_linewidth(3)
g.add(a)
a.set_transform(trans)
return g
class SeqLine(object):
height = 20
def __init__(self, map, *args, **kw):
x_offset = 0.0
self.segments = [(span.Start+x_offset, span.End+x_offset)
for span in map.spans if not span.lost]
def shape(self, height, yrange, rotated):
g = rlg2mpl.Group()
trans = TransformScalePart(g.combined_transform)
y = height/2.0
segments = [[(x1,y),(x2,y)] for (x1,x2) in self.segments]
a = LineCollection(segments, edgecolor='k', facecolor='k')
a.set_linewidth(2)
g.add(a)
a.set_transform(g.combined_transform)
return g
class Feature(Annotation):
"""An Annotation with a style and location rather than values"""
def __init__(self, map, style, label=None, value=None):
self.map = map
self.style = style
self.label = label
self.value = value
self.height = style.height
#self.values = self._make_values(*args, **kw)
def shape(self, height, yrange, rotated):
return self.style(height, self.label, self.map, self.value, yrange,
rotated)
class _FeatureStyle(object):
range_required = False
def __init__(self, fill=True, color=colors.black, min_width=0.5,
showLabel=False, height=1, thickness=0.6, closed=True,
one_span=False, **kw):
opts = {}
if fill:
opts['fillColor'] = color
opts['strokeColor'] = None
opts['strokeWidth'] = 0
else:
opts['fillColor'] = colors.white # otherwise matplotlib blue!
opts['strokeColor'] = color
opts['strokeWidth'] = 1
self.filled = fill
self.closed = closed or fill
opts.update(kw)
self.opts = opts
self.min_width = min_width
self.showLabel = showLabel
self.height = height
self.proportion_of_track = thickness
self.one_span = one_span
def __call__(self, height, label, map, value, yrange, rotated):
#return self.FeatureClass(label, map)
g = rlg2mpl.Group()
last = first = None
if self.range_required and not yrange:
warnings.warn("'%s' graph values are all zero" % label)
yrange = 1.0
if map.useful and self.one_span:
map = map.getCoveringSpan()
for (i, span) in enumerate(map.spans):
#if last is not None:
# g.add(rlg2mpl.Line(last, height, part.Start, height))
if span.lost or (value is None and self.range_required):
continue
if span.Reverse:
(start, end) = (span.End, span.Start)
(tidy_start, tidy_end) = (span.tidy_end, span.tidy_start)
else:
(start, end) = (span.Start, span.End)
(tidy_start, tidy_end) = (span.tidy_start, span.tidy_end)
shape = self._item_shape(
start, end,
tidy_start, tidy_end, height, value, yrange, rotated,
last=i==len(map.spans)-1)
g.add(shape)
last = end
if first is None:
first = start
if self.showLabel and label and last is not None and height > 7:
font_height = 12 #self.label_font.get_size_in_points()
text_width = llen(label, font_height)
if (text_width < abs(first-last)):
label_shape = Text(
(first+last)/2, height/2, label,
ha="center", va="center",
rotation=[0,90][rotated],
#font_properties=self.label_font,
)
g.add(label_shape)
else:
pass #warnings.warn("couldn't fit feature label '%s'" % label)
return g
class _VariableThicknessFeatureStyle(_FeatureStyle):
def _item_shape(self, start, end, tidy_start, tidy_end, height, value,
yrange, rotated, last=False):
if yrange:
thickness = 1.0*value/yrange*height
else:
thickness = height*self.proportion_of_track
return self._item_shape_scaled(start, end, tidy_start, tidy_end,
height/2, max(2, thickness), rotated, last)
class Box(_VariableThicknessFeatureStyle):
arrow = False
blunt = False
def _item_shape_scaled(self, start, end, tidy_start, tidy_end, middle,
thickness, rotated, last):
(top, bottom) = (middle+thickness/2, middle-thickness/2)
kw = dict(min_width=self.min_width, pointy=False, closed=self.closed,
blunt=self.blunt, proportion_of_track=self.proportion_of_track)
kw['rounded'] = tidy_start
#kw['closed'] = self.closed or tidy_start
end1 = rlg2mpl.End(start, end, bottom, top, **kw)
kw['rounded'] = tidy_end
#kw['closed'] = self.closed or tidy_end or self.filled
kw['pointy'] = last and self.arrow
end2 = rlg2mpl.End(end, start, top, bottom, **kw)
path = end1 + end2
return PathPatch(path, **rlg2mpl.line_options(**self.opts))
class Arrow(Box):
arrow = True
blunt = False
class BluntArrow(Box):
arrow = True
blunt = True
class Diamond(_VariableThicknessFeatureStyle):
"""diamond"""
def _item_shape_scaled(self, start, end, tidy_start, tidy_end, middle,
thickness, rotated, last):
x = (start+end)/2
spread = max(abs(start-end), self.min_width) / 2
return rlg2mpl.Polygon(
[(x-spread, middle), (x, middle+thickness/2), (x+spread, middle),
(x, middle-thickness/2)], **self.opts)
class Line(_FeatureStyle):
"""For a line segment graph"""
range_required = True
def _item_shape(self, start, end, tidy_start, tidy_end, height, value,
yrange, rotated, last=False):
altitude = value * (height-1) / yrange
#if self.orientation < 0:
# altitude = height - altitude
return rlg2mpl.Line(start, altitude, end, altitude, **self.opts)
class Area(_FeatureStyle):
"""For a line segment graph"""
range_required = True
def _item_shape(self, start, end, tidy_start, tidy_end, height, value,
yrange, rotated, last=False):
altitude = value * (height-1) / yrange
#if self.orientation < 0:
# altitude = height - altitude
if end < start:
start, end = end, start
tidy_start, tidy_end = tidy_end, tidy_start
return rlg2mpl.Rect(start, 0, end-start, altitude, **self.opts)
class DisplayPolicy(object):
def _makeFeatureStyles(self):
return {
#gene structure
'misc_RNA': Box(True, colors.lightcyan),
'precursor_RNA': Box(True, colors.lightcyan),
'prim_transcript': Box(True, colors.lightcyan),
"3'clip": Box(True, colors.lightcyan),
"5'clip": Box(True, colors.lightcyan),
'mRNA': Box(True, colors.cyan),
'exon': Box(True, colors.cyan),
'intron': Box(False, colors.cyan, closed = False),
"3'UTR": Box(True, colors.cyan),
"5'UTR": Box(True, colors.cyan),
'CDS': Box(True, colors.blue),
'mat_peptide': Box(True, colors.blue),
'sig_peptide': Box(True, colors.navy),
'transit_peptide': Box(True, colors.navy),
'polyA_signal': Box(True, colors.lightgreen),
'polyA_site': Diamond(True, colors.lightgreen),
'gene': BluntArrow(False, colors.blue,
showLabel=True, closed = False),
'operon': BluntArrow(False, colors.royalblue,
showLabel=True, closed = False),
#regulation
'attenuator': Box(False, colors.red),
'enhancer': Box(True, colors.green),
'CAAT_signal': Diamond(True, colors.blue),
'TATA_signal': Diamond(True, colors.teal),
'promoter': Box(False, colors.seagreen),
'GC_signal': Box(True, colors.purple),
'protein_bind': Box(True, colors.orange),
'misc_binding': Box(False, colors.black),
'-10_signal': Diamond(True, colors.blue),
'-35_signal': Diamond(True, colors.teal),
'terminator': Diamond(True, colors.red),
'misc_signal': Box(False, colors.maroon),
'rep_origin': Box(True, colors.linen),
'RBS': Diamond(True, colors.navy),
#repeats
'repeat_region': Box(True, colors.brown),
'repeat_unit': Arrow(True, colors.brown),
'LTR': Box(False, colors.black),
'satellite': Box(False, colors.brown),
'stem_loop': Box(False, colors.dimgray),
'misc_structure': Box(False, colors.darkslategray),
#rna genes
'rRNA': Arrow(False, colors.darkorchid, showLabel=True),
'scRNA': Arrow(False, colors.darkslateblue, showLabel=True),
'snRNA': Arrow(False, colors.darkviolet, showLabel=True),
'snoRNA': Arrow(False, colors.darkviolet, showLabel=True),
'tRNA': Arrow(False, colors.darkturquoise, showLabel=True),
#sequence
'source': Box(False, colors.black, showLabel=True),
'misc_recomb': Box(False, colors.black, showLabel=True),
'variation': Diamond(True, colors.violet, showLabel=True),
'domain': Box(False, colors.darkorange, showLabel=True),
'bluediamond': Diamond(True, colors.blue),
'reddiamond': Diamond(True, colors.red),
'misc_feature': Box(True, colors.darkorange, showLabel=True),
'old_sequence': Box(False, colors.darkslategray),
'unsure': Diamond(False, colors.crimson, min_width=2,),
'misc_difference': Diamond(False, colors.darkorange),
'conflict': Box(False, colors.darkorange),
'modified_base': Diamond(True, colors.black),
'primer_bind': Arrow(False, colors.green, showLabel=True),
'STS': Box(False, colors.black),
'gap': Box(True, colors.gray),
#graphs
'blueline': Line(False, colors.blue),
'redline': Line(False, colors.red),
#other
##immune system specific
#'C_region': Diamond(True, colors.mediumblue),
#'N_region': Box(False, colors.linen),
#'S_region': Box(False, colors.linen),
#'V_region': Box(False, colors.linen),
#'D_segment': Diamond(True, colors.mediumpurple),
#'J_segment': Box(False, colors.linen),
#'V_segment': Box(False, colors.linen),
#'iDNA': Box(False, colors.grey),
##Mitocondria specific
#'D-loop': Diamond(True, colors.linen),
##Bacterial element specific
#'oriT': Box(False, colors.linen),
}
def _makeTrackDefns(self):
return [TrackDefn(*args) for args in [
('Gene Structure',[
'misc_RNA',
'precursor_RNA',
'prim_transcript',
"3'clip",
"5'clip",
'mRNA',
'exon',
'intron',
"3'UTR",
"5'UTR",
'CDS',
'mat_peptide',
'sig_peptide',
'transit_peptide',
'polyA_signal',
'polyA_site',
'gene',
'operon',
]),
('Regulation',[
'attenuator',
'enhancer',
'CAAT_signal',
'TATA_signal',
'promoter',
'GC_signal',
'protein_bind',
'misc_binding',
'-10_signal',
'-35_signal',
'terminator',
'misc_signal',
'rep_origin',
'RBS',
]),
('Repeats',[
'repeat_region',
'repeat_unit',
'LTR',
'satellite',
'stem_loop',
'misc_structure',
]),
('Rna Genes',[
'rRNA',
'scRNA',
'snRNA',
'snoRNA',
'tRNA',
]),
('Sequence',[
'source',
'misc_recomb',
'domain',
'variation',
'bluediamond',
'reddiamond',
'misc_feature',
'old_sequence',
'unsure',
'misc_difference',
'conflict',
'modified_base',
'primer_bind',
'STS',
'gap',
]),
('Graphs',[
'blueline',
'redline',
]),
]]
_default_ignored_features = ['C_region','N_region','S_region','V_region',
'D_segment','J_segment','V_segment','iDNA','D-loop','oriT',]
_default_keep_unexpected_tracks = True
dont_merge = []
show_text = None # auto
draw_bases = None
show_gaps = None
colour_sequences = None
seq_color_callback = None
seqname = ''
rowlen = None
recursive = True
def __init__(self,
min_feature_height = 20,
min_graph_height = None,
ignored_features=None,
keep_unexpected_tracks=None,
**kw):
self.seq_font = FontProperties(size=10)
#self.label_font = FontProperties()
if min_graph_height is None:
min_graph_height = min_feature_height * 2
feature_styles = self._makeFeatureStyles()
# yuk
for style in feature_styles.values():
if style.range_required:
style.height = max(style.height, min_graph_height)
else:
style.height = max(style.height, min_feature_height)
self._track_defns = self._makeTrackDefns()
if ignored_features is None:
ignored_features = self._default_ignored_features
self._ignored_features = ignored_features
if keep_unexpected_tracks is None:
keep_unexpected_tracks = self._default_keep_unexpected_tracks
self.keep_unexpected_tracks = keep_unexpected_tracks
if not hasattr(self, '_track_map'):
self._track_map = {}
for track_defn in self._track_defns:
for (level, feature_tag) in enumerate(track_defn):
feature_style = feature_styles[feature_tag]
self._track_map[feature_tag] = (
track_defn, level, feature_style)
for ft in self._ignored_features:
self._track_map[ft] = (None, 0, None)
for ft in feature_styles:
if ft not in self._track_map:
self._track_map[ft] = (None, level, feature_style)
self.map = None
self.depth = 0
self.orientation = -1
self.show_code = True
self._logged_drops = []
self._setattrs(**kw)
def _setattrs(self, **kw):
for (n,v) in kw.items():
if not hasattr(self, n):
warnings.warn('surprising kwarg "%s"' % n, stacklevel=3)
if n.endswith('font'):
assert isinstance(kw[n], FontProperties)
setattr(self, n, v)
def copy(self, **kw):
new = copy.copy(self)
new._setattrs(**kw)
return new
def at(self, map):
if map is None:
return self
else:
return self.copy(map=self.map[map], depth=self.depth+1)
def mergeTracks(self, orig_tracks, keep_unexpected=None):
# merge tracks with same names
# order features within a track by level # xxx remerge
tracks = {}
orig_track_tags = []
for track in orig_tracks:
if not track.tag in tracks:
tracks[track.tag] = {}
orig_track_tags.append(track.tag) # ordered list
if not track.level in tracks[track.tag]:
tracks[track.tag][track.level] = []
tracks[track.tag][track.level].append(track)
track_order = [track.tag for track in self._track_defns
if track.tag in tracks]
unexpected = [tag for tag in orig_track_tags if tag not in track_order]
if keep_unexpected is None:
keep_unexpected = self.keep_unexpected_tracks
if keep_unexpected:
track_order += unexpected
elif unexpected:
warnings.warn('dropped tracks ' + ','.join(unexpected), stacklevel=2)
sorted_tracks = []
for track_tag in track_order:
annots = []
levels = tracks[track_tag].keys()
levels.sort()
for level in levels:
annots.extend(tracks[track_tag][level])
if len(annots)> 1 and track_tag not in self.dont_merge:
sorted_tracks.append(CompositeTrack(track_tag, annots))
else:
sorted_tracks.extend(annots)
return sorted_tracks
def tracksForAlignment(self, alignment):
annot_tracks = alignment.getAnnotationTracks(self)
if self.recursive:
if self.show_gaps is None:
seqs_policy = self.copy(show_gaps=True)
else:
seqs_policy = self
seq_tracks = alignment.getChildTracks(seqs_policy)
else:
seq_tracks = []
annot_tracks = self.mergeTracks(annot_tracks)
return seq_tracks + annot_tracks
def tracksForSequence(self, sequence=None):
result = []
length = None
if length is None and sequence is not None:
length = len(sequence)
label = getattr(self, 'seqname', '')
if self.show_code and sequence is not None:
# this should be based on resolution, not rowlen, but that's all
# we have at this point
if self.seq_color_callback is not None:
cvalues = self.seq_color_callback(sequence)
else:
cvalues = None
show_text = self.show_text
draw_bases = self.draw_bases
if draw_bases is None:
draw_bases = self.rowlen <= 500 and sequence.MolType is DNA
self.rowlen <= 500 and sequence.MolType is DNA and self.draw_bases
if show_text is None:
show_text = self.rowlen <= 100
if show_text and self.rowlen <= 200:
seqrepr_class = SeqText
elif draw_bases:
seqrepr_class = SeqShapes
elif self.rowlen <= 1000 and (self.colour_sequences
or cvalues is not None):
seqrepr_class = SeqLineSegments
elif self.show_gaps:
seqrepr_class = SeqLine
else:
seqrepr_class = None
if seqrepr_class is not None:
colour_sequences = self.colour_sequences
if colour_sequences is None:
colour_sequences = seqrepr_class != SeqText
feature = seqrepr_class(self.map, sequence,
colour_sequences = colour_sequences,
font_properties = self.seq_font,
cvalues = cvalues)
result.append(Track('seq', [feature], level=2, label=label))
else:
pass
# show label somewhere
annot_tracks = sequence.getAnnotationTracks(self)
return self.mergeTracks(annot_tracks + result)
def getStyleDefnForFeature(self, feature):
if feature.type in self._track_map:
(track_defn, level, style) = self._track_map[feature.type]
elif self.keep_unexpected_tracks:
(track_defn, level, style) = self._track_map['misc_feature']
else:
if feature.type not in self._logged_drops:
warnings.warn('dropped feature ' + repr(feature.type))
self._logged_drops.append(feature.type)
return (None, None, None)
if track_defn is None:
warnings.warn('dropped feature ' + repr(feature.type))
return (None, None, None)
else:
track_tag = track_defn.tag or feature.type
return (track_tag, style, level)
def tracksForFeature(self, feature):
(track_tag, style, level) = self.getStyleDefnForFeature(feature)
if style is None:
return []
annot_tracks = feature.getAnnotationTracks(self)
return annot_tracks + [Track(track_tag,
[Feature(self.map, style, feature.Name)], level=level)]
def tracksForVariable(self, variable):
(track_tag, style, level) = self.getStyleDefnForFeature(variable)
if style is None:
return []
segments = []
max_y = 0.0
for ((x1, x2), y) in variable.xxy_list:
map = self.map[x1:x2]
segments.append(Feature(map, style, variable.Name, value=y))
if type(y) is tuple: y = max(y)
if y > max_y: max_y = y
return [Track(track_tag, segments, max_y=max_y, needs_border=True,
label=variable.Name, level=level)]
class Display(rlg2mpl.Drawable):
"""Holds a list of tracks and displays them all aligned
base: A sequence, alignment, or anything else offering .getTracks(policy)
policy: A DisplayPolicy subclass.
pad: Gap between tracks in points.
Other keyword arguments are used to modify the DisplayPolicy:
Sequence display:
show_text: Represent bases as characters. Slow.
draw_bases: Represent bases as rectangles if MolType allows.
show_gaps: Represent bases as line segments.
colour_sequences: Colour code sequences if MolType allows.
seq_color_callback: f(seq)->[colours] for flexible seq coloring.
Layout:
rowlen: wrap at this many characters per line.
min_feature_height: minimum feature symbol height in points.
min_graph_height: minimum height of any graphed features in points.
Inclusion:
recursive: include the sequences of the alignment.
ignored_features: list of feature type tags to leave out.
keep_unexpected_tracks: show features not assigned to a track by the policy.
"""
def __init__(self, base, policy=DisplayPolicy, _policy=None, pad=1,
yrange=None, **kw):
self.pad = pad
self.base = base
self.yrange = yrange
assert len(base) > 0, len(base)
if _policy is None:
policy = policy(**kw).copy(
map=Map([(0, len(base))], parent_length=len(base)),
depth=0,
rowlen=len(base))
else:
policy = _policy
self.policy = policy
self.smap=Map([(0, len(base))], parent_length=len(base))
self._calc_tracks()
def __len__(self):
return len(self.smap.inverse())
def _calc_tracks(self):
y = 0
self._tracks = []
for p in self.base.getTracks(self.policy)[::-1]:
if not isinstance(p, Track):
if not isinstance(p, list):
p = [p]
p = Track('', p)
y2 = y + p.height + self.pad
self._tracks.append((y+self.pad/2, (y+y2)/2, p))
y = y2
self.height = y
if self.yrange is None:
self.yrange = {}
for (y, ym, p) in self._tracks:
self.yrange[p.tag] = max(self.yrange.get(p.tag, 0), p.range)
def copy(self, **kw):
new = copy.copy(self)
new.policy = self.policy.copy(**kw)
new._calc_tracks()
return new
def __getitem__(self, slice):
c = copy.copy(self)
c.smap = self.smap.inverse()[slice].inverse()
return c
def makeArtist(self, vertical=False):
g = rlg2mpl.Group()
for (y, ym, p) in self._tracks:
smap = self.smap.inverse()
for s in p.getShapes(
span=(smap.Start, smap.End),
rotated=vertical,
height=float(p.height),
yrange=self.yrange[p.tag]):
trans = matplotlib.transforms.Affine2D()
trans.translate(0, y)
s.set_transform(s.get_transform() + trans)
g.add(s)
if vertical:
g.rotate(90)
g.scale(-1.0, 1.0)
return g
def asAxes(self, fig, posn, labeled=True, vertical=False):
ax = fig.add_axes(posn)
self.applyScaleToAxes(ax, labeled=labeled, vertical=vertical)
g = self.makeArtist(vertical=vertical)
ax.add_artist(g)
return ax
def applyScaleToAxes(self, ax, labeled=True, vertical=False):
(seqaxis, trackaxis) = [ax.xaxis, ax.yaxis]
if vertical:
(seqaxis, trackaxis) = (trackaxis, seqaxis)
if not labeled:
trackaxis.set_ticks([])
else:
track_positions = []
track_labels = []
for (y, ym, p) in self._tracks:
if p.height > 8:
track_labels.append(p.label)
track_positions.append(ym)
trackaxis.set_ticks(track_positions)
trackaxis.set_ticklabels(track_labels)
if vertical:
for tick in trackaxis.get_major_ticks():
tick.label1.set_rotation('vertical')
tick.label2.set_rotation('vertical')
seqaxis.set_major_formatter(
matplotlib.ticker.FuncFormatter(lambda x,pos:str(int(x))))
smap = self.smap.inverse()
seq_lim = (smap.Start, smap.End)
if vertical:
ax.set_ylim(*seq_lim)
ax.set_xlim(0, self.height)
else:
ax.set_xlim(*seq_lim)
ax.set_ylim(0, self.height)
def figureLayout(self, labeled=True, vertical=False, width=None,
height=None, left=None, **kw):
if left is None:
if labeled:
left = max(len(p.label) for (y, ym, p) in self._tracks)
left *= 12/72 * .5 # guess mixed chars, 12pt, inaccurate!
else:
left = 0
height = height or self.height/72
useful_width = len(self)*16/72 # ie bigish font, wide chars
fkw = dict(leftovers=True, width=width, height=height, left=left,
useful_width=useful_width, **kw)
(w,h),posn,kw = rlg2mpl.figureLayout(**fkw)
#points_per_base = w * posn[3] / len(self)
if vertical:
(w, h) = (h, w)
posn[0:2] = reversed(posn[0:2])
posn[2:4] = reversed(posn[2:4])
return (w, h), posn, kw
def makeFigure(self, width=None, height=None, rowlen=None, **kw):
if rowlen:
rows = [self[i:i+rowlen] for i in range(0, len(self), rowlen)]
else:
rows = [self]
rowlen = len(self)
kw.update(width=width, height=height)
((width, height), (x, y, w, h), kw) = self.figureLayout(**kw)
N = len(rows)
# since scales go below and titles go above, each row
# gets the bottom margin, but not the top margin.
vzoom = 1 + (y+h) * (N-1)
fig = self._makeFigure(width, height * vzoom)
for (i, row) in enumerate(rows):
i = len(rows) - i - 1
posn = [x, (y+i*(y+h))/vzoom, w*len(row)/rowlen, h/vzoom]
row.asAxes(fig, posn, **kw)
return fig
|