-
Notifications
You must be signed in to change notification settings - Fork 42
/
rename_scaffolds.py
executable file
·127 lines (96 loc) · 2.89 KB
/
rename_scaffolds.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
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
#!/usr/bin/env python3
"""Rename scaffolds using a correspondence file
Rename chromosomes to wanted names and then automatically rename shorter
contigs numerically by decreasing size.
Usage:
<program> input_fasta correspondence min_length output_fasta
The correspondence file has two tab-separated columns with the prsent name on
the left and the wanted name on the right.
Scaffolds below min_length will be removed
"""
# Modules
import gzip
import sys
# Classes
class Fasta(object):
"""Fasta object with name and sequence
"""
def __init__(self, name, sequence):
self.name = name
self.sequence = sequence
def write_to_file(self, handle):
handle.write(">" + self.name + "\n")
handle.write(self.sequence + "\n")
def __repr__(self):
return self.name + " " + self.sequence[:31]
# Defining functions
def myopen(_file, mode="rt"):
if _file.endswith(".gz"):
return gzip.open(_file, mode=mode)
else:
return open(_file, mode=mode)
def fasta_iterator(input_file):
"""Takes a fasta file input_file and returns a fasta iterator
"""
with myopen(input_file) as f:
sequence = ""
name = ""
begun = False
for line in f:
line = line.strip()
if line.startswith(">"):
if begun:
yield Fasta(name, sequence)
name = line[1:]
sequence = ""
begun = True
else:
sequence += line
if name != "":
yield Fasta(name, sequence)
# Parsing user input
try:
input_fasta = sys.argv[1]
correspondence = sys.argv[2]
min_length = int(sys.argv[3])
output_fasta = sys.argv[4]
except:
print(__doc__)
sys.exit(1)
# Read renaming info
corr = dict()
with open(correspondence) as corr_file:
for line in corr_file:
_from, _to = line.strip().split()
if _to.startswith("Un"):
_to = f"Un{int(_to[2:]):04d}"
corr[_from] = _to
# Rename sequences (keep in memory)
sequences = fasta_iterator(input_fasta)
chroms = []
others = []
for s in sequences:
if s.name in corr:
new_name = corr[s.name]
s.name = new_name
chroms.append((new_name, s))
else:
others.append((len(s.sequence), s))
# Write sequences to file
scaff_num = 1
with myopen(output_fasta, "wt") as outfile:
# Sort LGs by name
for s in sorted(chroms):
# Stop if scaffold is too short
if len(s[1].sequence) < min_length:
continue
s[1].write_to_file(outfile)
# Sort other contigs/scaffols per length
for s in sorted(others, reverse=True, key=lambda x: x[0]):
seq = s[1]
# Stop if scaffold is too short
if len(seq.sequence) < min_length:
break
seq.name = "scaf" + str(scaff_num).zfill(4)
scaff_num += 1
seq.write_to_file(outfile)