-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreader.py
More file actions
executable file
·542 lines (493 loc) · 25.5 KB
/
Copy pathreader.py
File metadata and controls
executable file
·542 lines (493 loc) · 25.5 KB
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
import re
__author__ = 'mwelland'
__version__ = 1.3
__version_date__ = '11/02/2015'
''' This is the Reader class which uses the completed dictionary
from the Parser classes as input and create a list object
containing each of the lines to be used as output in the
appropriate order to be printed.
Partitioning the output process will allow the program to be
able to output to a simple .txt format or to a LaTex document
with appropriate headers and formatting
This will also allow the output to be formally tested or a
variety of assertions to be performed before attempting to
generate output'''
class Reader:
"""
This class is used to create list object which will contain the lines
to be printed to a final output file
This separates the creation of the dictionary, the writing of the
output and the actual creation of the output file
"""
def __init__(self):
self.username = ''
self.list_of_versions = []
self.nm = ''
self.transcriptdict = {}
self.write_as_LaTex = True
self.file_type = ''
self.filename = ''
self.transcript = ''
self.output_list = []
self.amino_printing = False
self.amino_spacing = False
self.exon_spacing = False
self.exon_printed = False
self.dont_print = False
self.check_AA = True
self.print_clashes = True
self.line_break_print = False
self.pattern = re.compile(r'\\p.*?l{')
self.found_first_slash = False
# This is a codon-AA dictionary construction created by Peter Collingridge
# http://www.petercollingridge.co.uk/book/export/html/474
bases = ['T', 'C', 'A', 'G']
codons = [a+b+c for a in bases for b in bases for c in bases]
amino_acids = 'FFLLSSSSYY**CC*WLLLLPPPPHHQQRRRRIIIMTTTTNNKKSSRRVVVVAAAADDEEGGGG'
self.codon_table = dict(zip(codons, amino_acids))
@property
def get_version(self):
"""
Quick function to grab version details for final printing
:return:
"""
return 'Version: {0}, Version Date: {1}'.format(str(__version__), __version_date__)
def decide_number_string_character(self, char, wait_value, cds_count, amino_acid_counter, post_protein_printer,
intron_offset, intron_in_padding, protein_length, intron_out):
"""
:param char: the next base character to be written
:param wait_value: variable indicating whether a number has already been written
:param cds_count: the CDS position of the current char/base
:param amino_acid_counter: position of the amino acid in the protein sequence
:param post_protein_printer: to indicate the position of the exon after stop codon
:param intron_offset:
:param intron_in_padding:
:param protein_length: length of protein sequence
:param intron_out:
:return: all input values complete with appropriate additions and subtractions, and
the new character(s) to be added to the number string
This function is responsible for determining the next value(s) to be added to the
output string which will appear above the base sequence.
"""
output = ''
if char.isupper():
# Upper case
if amino_acid_counter < protein_length:
if cds_count % 10 == 1 and wait_value == 0:
output = '|' + str(cds_count)
wait_value = len(str(cds_count))
cds_count += 1
elif wait_value != 0:
cds_count += 1
wait_value -= 1
elif wait_value == 0:
output = ' '
cds_count += 1
elif amino_acid_counter >= protein_length:
if post_protein_printer % 10 == 0 and wait_value == 0:
output = '|*' + str(post_protein_printer + 1)
wait_value = len(str(post_protein_printer + 1)) + 1
post_protein_printer += 1
elif wait_value != 0:
wait_value -= 1
post_protein_printer += 1
elif wait_value == 0:
post_protein_printer += 1
output = ' '
# print 'space'
else:
# Lower case
if not self.exon_printed:
# Intron before exon
self.dont_print = True
if intron_offset != 0:
intron_offset -= 1
intron_in_padding -= 1
output = ' '
elif intron_offset == 0 and intron_in_padding % 5 == 0:
output = '.'
intron_in_padding -= 1
elif intron_offset == 0 and intron_in_padding % 5 != 0:
output = ' '
intron_in_padding -= 1
elif self.exon_printed:
# Intron after exon
if wait_value != 0:
wait_value -= 1
intron_out += 1
elif wait_value == 0:
if intron_out % 5 == 4:
output = '.'
intron_out += 1
elif intron_out % 5 != 4:
output = ' '
intron_out += 1
return (output, wait_value, cds_count, amino_acid_counter,
post_protein_printer, intron_offset, intron_in_padding,intron_out)
def decide_amino_string_character(self, char, codon_count, amino_acid_counter, codon_numbered, protein):
"""
:param char: the next base character to be written
:param codon_count: the position of the current base within the reading frame
:param amino_acid_counter: the position of the current AA in the protein sequence
:param codon_numbered: Boolean; has the current codon been numbered
:param protein: the full protein sequence
:return: all input values complete with appropriate additions and subtractions, and
the new character(s) to be added to the amino number string
This function determines the next character to be added to the string which shows
the numbering for the amino acid labelling line
"""
output = ''
if char.isupper() and amino_acid_counter < len(protein): # Bug, condition added
if self.amino_printing:
self.amino_spacing = True
if codon_count == 3:
# print 'AA = ' + protein[amino_acid_counter:amino_acid_counter+1][0]
output = protein[amino_acid_counter:amino_acid_counter + 1][0]
amino_acid_counter += 1
codon_numbered = False
codon_count = 1
else:
codon_count += 1
output = ' '
elif not self.amino_printing:
output = ' '
elif char.islower():
output = ' '
return output, codon_count, amino_acid_counter, codon_numbered
def print_latex_header(self, refseqid):
"""
:param refseqid: reference sequence identifier for current input
This function can be called if the file to be written out is designed to be
executed as a LaTex script. This will insert the appropriate preamble to
allow an article class document to be produced which uses a verbatim output
operation
"""
try:
self.nm = self.transcriptdict['transcripts'][self.transcript]['NM_number']
rep_nm = self.transcriptdict['transcripts'][self.transcript]['NM_number'].replace('_', '\_') # Required for LaTex
np = self.transcriptdict['transcripts'][self.transcript]['NP_number'].replace('_', '\_') # Required for LaTex
except KeyError:
print 'Additional details not present'
self.line_printer('\\documentclass{article}')
self.line_printer('\\usepackage{color, soul}')
self.line_printer('\\usepackage{alltt}')
self.line_printer('\\usepackage{pdfcomment}')
self.print_pdfinfo()
self.line_printer('\\begin{document}')
self.line_printer('\\begin{center}')
self.line_printer('\\begin{large}')
self.line_printer('Gene: %s - Sequence: %s\\\\' % (self.transcriptdict['genename'],
refseqid))
self.line_printer('Transcript: %s - Protein: %s' % (rep_nm, np))
self.line_printer(' ')
if self.file_type == 'lrg':
self.line_printer('LRG: %s - Date : \\today' % self.filename)
else:
self.line_printer('Date : \\today')
self.print_pdfinfo()
self.line_printer('\\end{large}')
self.line_printer('\\end{center}')
self.line_printer('$1^{st}$ line: Base numbering. Full stops for intronic +/- 5, 10, 15...\\\\')
self.line_printer('$2^{nd}$ line: Base sequence. lower case Introns, upper case Exons\\\\')
self.line_printer('$3^{rd}$ line: Amino acid sequence. Printed on FIRST base of codon\\\\')
self.line_printer('$4^{th}$ line: Amino acid numbering. Numbered on $1^{st}$ and increments of 10\\\\')
self.line_printer('\\begin{alltt}')
def print_pdfinfo(self):
self.line_printer('\\hypersetup{pdfauthor={%s},' % self.username)
self.line_printer('pdftitle={Reference sequence for gene: %s}}' % self.nm)
def print_latex(self):
"""
This large class imports the entire dictionary and scans through the input dictionary
to build the output. This output will be kept as a list of strings (with the appropriate
order maintained) to allow a later decision on whether to print to LaTex, txt or other.
This function makes a range of calls out to other functions to determine the numbers and
formatting to use as it scans through the exon(s) base by base
"""
latex_dict = self.transcriptdict['transcripts'][self.transcript]
''' Creates a LaTex file which can be converted to a final document
Lengths of numbers calculated using len(#)'''
protein = latex_dict['protein_seq']
refseqid = self.transcriptdict['refseqname'].replace('_', '\_') # Required for LaTex
assert isinstance(latex_dict, dict)
# A variable to keep a count of the
# transcript length across all exons
cds_count = 1 - latex_dict['cds_offset']
# Account for the number 0 being skipped
cds_count -= 1
# The CDS begins at one, the preceeding base is -1. There is no 0
# The writer must skip 0, so the extra length compensates to keep
# values in the correct places
# The initial line(s) of the LaTex file, required to execute
if self.write_as_LaTex:
self.print_latex_header(refseqid)
lines_on_page = 10
extra_lines = 0
wait_value = 0
codon_count = 3 # Print AA at start of codon
amino_acid_counter = 0 # Begin at AA index 0 (first)
amino_wait = 0 # No number string printed, no wait yet
codon_numbered = False # First AA has not been numbered already
post_protein_printer = 0 # The number for 3' intron '+###' counting
exon_list = latex_dict['list_of_exons']
for position in range(len(exon_list)):
exon_number = latex_dict['list_of_exons'][position]
intron_offset = self.transcriptdict['pad_offset']
intron_in_padding = self.transcriptdict['pad']
intron_out = 0 # Or 0?
self.exon_printed = False
number_string = []
dna_string = []
amino_string = []
amino_number_string = []
self.amino_spacing = False
self.exon_spacing = False
exon_dict = latex_dict['exons'][exon_number]
ex_start = exon_dict['genomic_start']
ex_end = exon_dict['genomic_end']
if self.file_type == 'gbk': ex_start += 1
self.line_printer('Exon %s | Start: %s | End: %s | Length: %s' %
(exon_number, str(ex_start), str(ex_end), str(ex_end - ex_start)))
if self.print_clashes:
""" This section allows for a note to be written where the 'intronic' flanking sequence
of an exon contains part of the next exon. This serves to clarify whether any overlap
may take place. This will not impact the printed output
A companion segment in the parser classes is responsible for altering the flanking region
if the regions are to avoid overlaps.
"""
clash_after = False
clash_before = False
if exon_number < len(latex_dict['list_of_exons'])-1:
try:
# next_exon = exon_number+1
if ex_end > latex_dict['exons'][latex_dict['list_of_exons'][position+1]]['genomic_start']-(self.transcriptdict['pad']*2):
clash_after = True
except KeyError:
print 'potential undetected clash after exon ' + str(exon_number)
if exon_number > 1:
# prev_exon = exon_number-1
# print exon_number
# print latex_dict['list_of_exons'][exon_index-2]
if exon_number > latex_dict['list_of_exons'][position-1]:
if ex_start < latex_dict['exons'][latex_dict['list_of_exons'][position-1]]['genomic_end']+(self.transcriptdict['pad']*2):
clash_before = True
if clash_after is True and clash_before is True:
self.line_printer('BE AWARE: Flanking intron is shared with both adjacent exons')
elif clash_after is True:
self.line_printer('BE AWARE: Flanking intron is shared with the following exon')
elif clash_before is True:
self.line_printer('BE AWARE: Flanking intron is shared with the previous exon')
sequence = exon_dict['sequence']
characters_on_line = 0
self.line_printer('')
pdfannotation_timer = 0
for base_position in range(len(sequence)):
# Stop each line at a specific length
if characters_on_line % 60 == 0 and characters_on_line != 0\
and pdfannotation_timer == 0:
amino_was_printed = bool(" ".join(amino_string).strip())
amino_was_numbered = bool(" ".join(amino_number_string).strip())
# print lines_on_page
if lines_on_page >= 41:
extra_lines = 2 # Base and numbering strings as default
if amino_was_numbered: extra_lines += 1
if amino_was_printed: extra_lines += 1
# print 'total lines: ' + str((lines_on_page) + extra_lines)
if ((lines_on_page) + extra_lines) >= 45:
if self.write_as_LaTex:
self.print_exon_end()
else:
self.line_printer(' ')
self.line_printer(' ')
lines_on_page = 0
wait_value = 0
amino_wait = 0
self.line_printer(number_string)
if self.line_break_print:
dna_string.append('}')
self.line_printer(dna_string)
lines_on_page += 2
if amino_was_printed:
self.line_printer(amino_string)
lines_on_page += 1
if amino_was_numbered:
self.line_printer(amino_number_string)
lines_on_page += 1
self.line_printer('')
characters_on_line = 0
lines_on_page += 1
amino_string = []
number_string = []
if self.line_break_print:
dna_string = ['\\hl{']
self.line_break_print = False
else:
dna_string = []
amino_number_string = []
self.exon_spacing = False
self.amino_spacing = False
char = sequence[base_position]
if pdfannotation_timer > 0:
pdfannotation_timer -=1
dna_string.append(char)
if pdfannotation_timer == 0:
self.line_break_print = True
elif char == '}':
dna_string.append(char)
self.line_break_print = False
pass
#Deal with the insertions of PDF annotations and highlighting
elif char == '\\':
dna_string.append(char)
subseq = sequence[base_position:]
match = re.search(self.pattern, subseq)
try:
pdfannotation_timer = len(match.group())-1
except AttributeError:
print subseq
else:
dna_string.append(char)
if char.isupper(): self.exon_printed = True
if cds_count == 0:
self.amino_printing = True
cds_count = 1
if amino_acid_counter >= len(protein): self.amino_printing = False
# Calls specific methods for character decision
# Simplifies local logic
(next_amino_string, codon_count, amino_acid_counter,
codon_numbered) = self.decide_amino_string_character(char, codon_count, amino_acid_counter,
codon_numbered, protein)
amino_string.append(next_amino_string)
if next_amino_string == '*': self.check_AA = False
pos3 = ''
pos2 = ''
if next_amino_string != ' ' and self.check_AA:
pos1 = char
check_position = base_position + 1
check_sequence = sequence
#This should only fail on the final exon; where it is not called
try:
check_next_exon = latex_dict['list_of_exons'][position+1]
except IndexError:
pass
if check_sequence[check_position].isupper():
pos2 = check_sequence[check_position]
check_position += 1
else:
check_sequence = latex_dict['exons'][check_next_exon]['sequence']
# print check_sequence
# this = raw_input()
check_position = 0
pos2 = check_sequence[check_position]
while pos2.islower():
check_position += 1
pos2 = check_sequence[check_position]
# print 'pos2 ' + pos2
check_position += 1
if check_sequence[check_position].isupper():
pos3 = check_sequence[check_position]
else:
check_sequence = latex_dict['exons'][check_next_exon]['sequence']
check_position = 0
pos3 = check_sequence[check_position]
while pos3.islower():
check_position += 1
pos3 = check_sequence[check_position]
if pos1 == '\\' or pos1 == '}':
pass
elif pos2 == '\\' or pos2 == '}':
pass
elif pos3 == '\\' or pos3 == '}':
pass
else:
index = pos1+pos2+pos3
try:
if self.codon_table[index] != next_amino_string:
print 'There is an error with the amino acid - codon pairing in exon %s: %s - %s, AA# %s' % (str(check_next_exon), index, next_amino_string, str(amino_acid_counter))
print 'Base 3 position = %s' % str(check_position)
print 'Next few: %s' % check_sequence[check_position+1:check_position+5]
this = raw_input()
except KeyError:
print "The key '%s' does not have a codon entry: %s"\
% (index, self.transcriptdict['genename'])
print dna_string
(next_amino_number, amino_wait, codon_numbered,
amino_acid_counter) = self.decide_amino_number_string_character(amino_wait, codon_numbered,
amino_acid_counter)
amino_number_string.append(next_amino_number)
(next_number_string, wait_value, cds_count, amino_acid_counter, post_protein_printer, intron_offset,
intron_in_padding, intron_out) = self.decide_number_string_character(char, wait_value, cds_count,
amino_acid_counter,
post_protein_printer,
intron_offset, intron_in_padding,
len(protein), intron_out)
number_string.append(next_number_string)
characters_on_line += 1
# Section for incomplete lines (has not reached line-limit print)
# Called after exon finishes printing bases
if len(dna_string) != 0:
if lines_on_page >= 44:
if self.write_as_LaTex:
self.print_exon_end()
else:
self.line_printer(' ')
self.line_printer(' ')
wait_value = 0
amino_wait = 0
if bool(" ".join(number_string).strip()): self.line_printer(number_string)
self.line_printer(dna_string)
if bool(" ".join(amino_string).strip()): self.line_printer(amino_string)
if bool(" ".join(amino_number_string).strip()): self.line_printer(amino_number_string)
if self.write_as_LaTex: self.print_exon_end()
lines_on_page = 2
for version in self.list_of_versions:
assert isinstance(version, str)
self.line_printer(version)
if self.write_as_LaTex:
self.print_latex_footer()
def print_exon_end(self):
self.line_printer('\\end{alltt}')
self.line_printer('\\newpage')
self.line_printer('\\begin{alltt}')
def print_latex_footer(self):
"""
A brief function to set the final lines of the document if the output
is to be in a LaTex parse-able format
"""
self.line_printer('\\end{alltt}')
self.line_printer('\\end{document}')
def line_printer(self, string):
"""
:param string: next string to be written to output list
:return: none
Generic print method to handle all list output in one location
"""
self.output_list.append(''.join(string))
@staticmethod
def decide_amino_number_string_character(amino_wait, codon_numbered, amino_acid_counter):
output = ''
if amino_wait != 0:
amino_wait -= 1
elif amino_wait == 0:
if amino_acid_counter % 10 == 1:
if not codon_numbered:
output = '|' + str(amino_acid_counter)
amino_wait = len(str(amino_acid_counter))
codon_numbered = True
elif codon_numbered:
output = ' '
elif amino_acid_counter % 10 != 1:
output = ' '
return output, amino_wait, codon_numbered, amino_acid_counter
def run(self, dictionary, transcript, write_as_latex, list_of_versions, print_clashes, file_type, filename, username):
print 'Transcript: ' + str(transcript)
print 'Exon numbers: ' + str(dictionary['transcripts'][transcript]['list_of_exons'])
self.username = username
self.list_of_versions = list_of_versions
self.transcriptdict = dictionary
self.filename = filename
self.write_as_LaTex = write_as_latex
self.transcript = transcript
self.print_clashes = print_clashes
self.file_type = file_type
self.print_latex()
return self.output_list, self.nm