Erva Ulusoy commited on
Commit
f07264d
·
1 Parent(s): 0be1ea7

sort domain locations

Browse files
Files changed (1) hide show
  1. run_domain2go_app.py +3 -1
run_domain2go_app.py CHANGED
@@ -53,7 +53,7 @@ def find_domains(email, sequence, name):
53
  for elem in json_output['matches']:
54
  entry = elem['signature']['entry']
55
 
56
- location_list = [f"{i['start']}-{i['end']}" for i in elem['locations']]
57
 
58
  if type(entry) == dict and entry['type'] == 'DOMAIN':
59
  if entry['accession'] not in entries:
@@ -72,6 +72,8 @@ def find_domains(email, sequence, name):
72
  entries[entry['accession']]['locations'].extend(location_list)
73
 
74
  entries[entry['accession']]['locations'] = list(set(entries[entry['accession']]['locations']))
 
 
75
  entries[entry['accession']]['locations'] = ';'.join(entries[entry['accession']]['locations'])
76
 
77
  if entries:
 
53
  for elem in json_output['matches']:
54
  entry = elem['signature']['entry']
55
 
56
+ location_list = [(i['start'],i['end']) for i in elem['locations']]
57
 
58
  if type(entry) == dict and entry['type'] == 'DOMAIN':
59
  if entry['accession'] not in entries:
 
72
  entries[entry['accession']]['locations'].extend(location_list)
73
 
74
  entries[entry['accession']]['locations'] = list(set(entries[entry['accession']]['locations']))
75
+ entries[entry['accession']]['locations'] = sorted(entries[entry['accession']]['locations'], key=lambda x: x[0])
76
+ entries[entry['accession']]['locations'] = [f'{i[0]}-{i[1]}' for i in entries[entry['accession']]['locations']]
77
  entries[entry['accession']]['locations'] = ';'.join(entries[entry['accession']]['locations'])
78
 
79
  if entries: