-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlcsm.py
executable file
·54 lines (38 loc) · 1.08 KB
/
lcsm.py
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
#! /usr/bin/python3
import sys
import argparse
import signal
import itertools
import bisect
import tools
def mlcs(strings):
stree = tools.suffix_tree.SuffixTree()
for string in strings:
stree.add(string)
lcs = ''
for v in stree.traverse():
if len(strings) == len(v.sids):
path = stree.path(v)
if len(path) > len(lcs):
lcs = stree.path(v)
# print(stree)
return lcs
def main(args):
records = tools.io.read_fasta(sys.stdin)
strings = [''.join(seq) for _, seq in records]
# for i, s in enumerate(strings):
# if 'GAGGGCATTGATTGGTATACTTAATGTAACGGTAAT' not in s:
# print(i)
# return
subseq = mlcs(strings)
print(subseq)
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='description',
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
args = parser.parse_args()
try:
main(args)
except BrokenPipeError:
sys.exit(128 + signal.SIGPIPE)
except KeyboardInterrupt:
sys.exit(128 + signal.SIGINT)