-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoolSelenzyme.py
48 lines (42 loc) · 1.56 KB
/
toolSelenzyme.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mar 19
@author: Pablo Carbonell
@description: Query Selenzme: Enzyme sequence selection.
"""
import requests
import argparse
import csv
import os
import json
def arguments():
parser = argparse.ArgumentParser(description='toolSelenzyme: Enzyme sequence selection. Pablo Carbonell, SYNBIOCHEM, 2019')
parser.add_argument('infile',
help='Input csv file.')
parser.add_argument('outfile',
help='Input csv file.')
parser.add_argument('-server', default='http://selenzyme.synbiochem.co.uk/REST',
help='Selenzyme server.')
return parser
# Output columns, to be improved
columns = ['Seq. ID', 'Score', 'Organism Source', 'Description']
if __name__ == "__main__":
parser = arguments()
arg = parser.parse_args()
assert os.path.exists(arg.infile)
with open(arg.infile) as handler:
cv = csv.DictReader(handler)
row = next(cv)
url = arg.server
assert 'smarts' in row
r = requests.post( os.path.join(url, 'Query') , json={'smarts': row['smarts']} )
res = json.loads( r.content.decode('utf-8') )
assert res['data'] is not None
val = json.loads( res['data'] )
assert 'Seq. ID' in val and len(val['Seq. ID'])>0
with open(arg.outfile, 'w' ) as writer:
cw = csv.writer( writer )
cw.writerow( columns )
for ix in sorted(val['Seq. ID'], key=lambda z: int(z)):
cw.writerow( [val[j][ix] for j in columns] )