-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathadd_prefix.py
executable file
·36 lines (29 loc) · 1.28 KB
/
add_prefix.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
#!/usr/bin/env python
#==============================================================================
# author : Pavel Polishchuk
# date : 01-11-2014
# version : 0.1
# python_version : 3.2
# copyright : Pavel Polishchuk 2014
# license : GPL3
#==============================================================================
import argparse
def main():
parser = argparse.ArgumentParser(description='Add a prefix to molecule names in SDF file .')
parser.add_argument('-i', '--input', metavar='FILENAME', required=True,
help='input SDF file, molecules should have titles')
parser.add_argument('-o', '--output', metavar='FILENAME', required=True,
help='output SDF file with updated mol names.')
parser.add_argument('-p', '--prefix', metavar='STRING', default=True,
help='prefix to add to molecule names')
args = parser.parse_args()
with open(args.input) as f_in, open(args.output, 'wt') as f_out:
molstr = []
for line in f_in:
molstr.append(line)
if line.strip() == '$$$$':
molstr[0] = args.prefix + molstr[0]
f_out.writelines(molstr)
molstr = []
if __name__ == '__main__':
main()