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
|
#!/usr/bin/python3
import numpy as np
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
from ipywidgets.widgets import interact
import interface_utils as util
import sys
import os
os.environ['PATH'] += ':/data/pacbio_assembly/AwesomeAssembler/DALIGNER'
#print os.popen("export").read()
left = int(sys.argv[1])
right = int(sys.argv[2])
#rst = range(1,1399)
path = '/data/pacbio_assembly/AwesomeAssembler/data/ecoli/'
aln = []
bb = []
with open('ecoli.linear.edges') as f:
for line in f:
e = line.split(" ")[0]
if e[-1] == '\'':
e = e[:-1]
bb.append(int(e))
print(bb)
bb = set(bb)
for i,item in enumerate(util.get_alignments_mapping2(path+'draft', path +'ecoli', path +'draft.ecoli.las')):
if i%2000 == 0:
print(i, item)
if item[3] >= left and item[4] <= right:
aln.append(item)
print('number:',len(aln))
aln.sort(key = lambda x:x[2])
alns = []
current_b = aln[0][2]
aln_group = []
for item in aln:
if current_b != item[2]:
alns.append(aln_group)
aln_group = []
aln_group.append(item)
current_b = item[2]
else:
aln_group.append(item)
num = len(alns)
print(len(aln), len(alns))
alns.sort(key = lambda x:min([item[3] for item in x]))
plt.figure(figsize = (15,10))
plt.axes()
#plt.gca().axes.get_yaxis().set_visible(False)
#l = aln[0][5]
tip = (right-left)/5000
ed = (right-left)/2000
grid_size = 1.0
plt.xlim(left-2000,right+2000)
plt.ylim(-5,num*grid_size)
points = [[left,0], [right,0], [right+tip,grid_size/4], [right,grid_size/2], [left,grid_size/2]]
#rectangle = plt.Rectangle((0, 0), l, 5, fc='r',ec = 'none')
polygon = plt.Polygon(points,fc = 'r', ec = 'none', alpha = 0.6)
plt.gca().add_patch(polygon)
dotted_line = plt.Line2D((left, left), (0, num*grid_size ),ls='-.')
plt.gca().add_line(dotted_line)
dotted_line2 = plt.Line2D((right, right), (0, num*grid_size ),ls='-.')
plt.gca().add_line(dotted_line2)
for i,aln_group in enumerate(alns):
for item in aln_group:
abpos = item[3]
aepos = item[4]
bbpos = item[6]
bepos = item[7]
blen = item[8]
strand = item[0]
points_start = []
points_end = []
if strand == 'n':
points = [[abpos, (i+1)*grid_size], [aepos, (i+1)*grid_size], [aepos + tip, (i+1)*grid_size + grid_size/4], [aepos, (i+1)*grid_size+grid_size/2], [abpos, (i+1)*grid_size+grid_size/2]]
if (bepos < blen):
points_end = [[aepos, (i+1)*grid_size], [aepos + tip, (i+1)*grid_size + grid_size/4], [aepos, (i+1)*grid_size+grid_size/2], [aepos+ed, (i+1)*grid_size+grid_size/2], [aepos + ed+ tip, (i+1)*grid_size + grid_size/4], [aepos+ed, (i+1)*grid_size]]
if (bbpos > 0):
points_start = [[abpos, (i+1)*grid_size], [abpos, (i+1)*grid_size+grid_size/2], [abpos-ed, (i+1)*grid_size+grid_size/2], [abpos-ed, (i+1)*grid_size]]
else:
points = [[abpos, (i+1)*grid_size], [aepos, (i+1)*grid_size], [aepos, (i+1)*grid_size+grid_size/2], [abpos, (i+1)*grid_size+grid_size/2], [abpos - tip, (i+1)*grid_size + grid_size/4]]
if (bepos < blen):
points_end = [[aepos, (i+1)*grid_size], [aepos, (i+1)*grid_size+grid_size/2], [aepos+ed, (i+1)*grid_size+grid_size/2], [aepos+ed, (i+1)*grid_size]]
if (bbpos > 0):
points_start = [[abpos, (i+1)*grid_size],[abpos-tip, (i+1)*grid_size+grid_size/4], [abpos, (i+1)*grid_size+grid_size/2], [abpos-ed, (i+1)*grid_size+grid_size/2],[abpos-ed-tip, (i+1)*grid_size+grid_size/4], [abpos-ed, (i+1)*grid_size]]
if item[2] in bb:
polygon = plt.Polygon(points,fc = 'r', ec = 'none', alpha = 0.8)
else:
polygon = plt.Polygon(points,fc = 'b', ec = 'none', alpha = 0.6)
polygon.set_url("http://shannon.stanford.edu:5000/aln" + str(item[2]+1) + ".pdf")
plt.gca().add_patch(polygon)
if points_end != []:
polygon2 = plt.Polygon(points_end,fc = 'g', ec = 'none', alpha = 0.6)
plt.gca().add_patch(polygon2)
if points_start != []:
polygon2 = plt.Polygon(points_start,fc = 'g', ec = 'none', alpha = 0.6)
plt.gca().add_patch(polygon2)
plt.savefig('mapping/map.' + str(left) +'_'+ str(right)+ '.svg')
|