-
Notifications
You must be signed in to change notification settings - Fork 4
/
ENCODE_collection.py
executable file
·265 lines (233 loc) · 8.4 KB
/
ENCODE_collection.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
#!/usr/bin/env python
# -*- coding: latin-1 -*-
'''GET an ENCODE collection and output a tsv of all objects and their properties suitable for spreadsheet import'''
'''use requests to handle the HTTP connection'''
import requests
'''use json to convert between Python dictionaries and JSON objects'''
import json
'''use jsonschema to validate objects against the JSON schemas'''
import jsonschema
import sys, os.path, urlparse
import pdb
EPILOG = '''Limitations:
Arrays of strings come back with the items quoted, SO NOT SUITABLE FOR DIRECT PATCH back
Examples:
Dump all the biosamples, with all schema properties, from the default server with default keypair and save to a file
# be patient, this takes some time to run
%(prog)s biosamples > biosamples.tsv
Same for human-donors
%(prog)s human-donors > human-donors.tsv
'''
'''force return from the server in JSON format'''
HEADERS = {'content-type': 'application/json'}
def get_ENCODE(uri):
'''GET an ENCODE object as JSON and return as dict'''
if 'search' in uri: #assume that a search query is complete except for &limit=all
pass
else:
if '?' in uri: # have to do this because it might be the first directive in the URL
uri += '&datastore=database'
else:
uri += '?datastore=database'
uri += '&limit=all'
url = urlparse.urljoin(SERVER, uri)
if DEBUG:
print "DEBUG: GET %s" %(url)
response = requests.get(url, auth=(AUTHID, AUTHPW), headers=HEADERS)
if DEBUG:
print "DEBUG: GET RESPONSE code %s" %(response.status_code)
try:
if response.json():
print "DEBUG: GET RESPONSE JSON"
print json.dumps(response.json(), indent=4, separators=(',', ': '))
except:
print "DEBUG: GET RESPONSE text %s" %(response.text)
if not response.status_code == 200:
print >> sys.stderr, response.text
return response.json()
def processkeys(args):
keysf = open(args.keyfile,'r')
keys_json_string = keysf.read()
keysf.close()
keys = json.loads(keys_json_string)
key_dict = keys[args.key]
global AUTHID
global AUTHPW
global SERVER
if not args.authid:
AUTHID = key_dict['key']
else:
AUTHID = args.authid
if not args.authpw:
AUTHPW = key_dict['secret']
else:
AUTHPW = args.authpw
if not args.server:
SERVER = key_dict['server']
else:
SERVER = args.server
if not SERVER.endswith("/"):
SERVER += "/"
def flat_one(JSON_obj):
try:
return [JSON_obj[identifier] for identifier in \
['accession', 'name', 'email', 'title', 'uuid', 'href'] \
if identifier in JSON_obj][0]
except:
return JSON_obj
def flat_ENCODE(JSON_obj):
flat_obj = {}
for key in JSON_obj:
if isinstance(JSON_obj[key], dict):
flat_obj.update({key:flat_one(JSON_obj[key])})
elif isinstance(JSON_obj[key], list) and JSON_obj[key] != [] and isinstance(JSON_obj[key][0], dict):
newlist = []
for obj in JSON_obj[key]:
newlist.append(flat_one(obj))
flat_obj.update({key:newlist})
else:
flat_obj.update({key:JSON_obj[key]})
return flat_obj
def pprint_ENCODE(JSON_obj):
if ('type' in JSON_obj) and (JSON_obj['type'] == "object"):
print json.dumps(JSON_obj['properties'], sort_keys=True, indent=4, separators=(',', ': '))
else:
print json.dumps(flat_ENCODE(JSON_obj), sort_keys=True, indent=4, separators=(',', ': '))
def main():
import argparse
parser = argparse.ArgumentParser(
description=__doc__, epilog=EPILOG,
formatter_class=argparse.RawDescriptionHelpFormatter,
)
parser.add_argument('collection',
help="The collection to get")
parser.add_argument('--es',
default=False,
action='store_true',
help="Use elasticsearch")
parser.add_argument('--query',
help="A complete query to run rather than GET the whole collection. \
E.g. \"search/?type=biosample&lab.title=Ross Hardison, PennState\". Implies --es.")
parser.add_argument('--submittable',
default=False,
action='store_true',
help="Show only properties you might want a submitter to submit.")
parser.add_argument('--server',
help="Full URL of the server.")
parser.add_argument('--key',
default='default',
help="The keypair identifier from the keyfile. Default is --key=default")
parser.add_argument('--keyfile',
default=os.path.expanduser("~/keypairs.json"),
help="The keypair file. Default is --keyfile=%s" %(os.path.expanduser("~/keypairs.json")))
parser.add_argument('--authid',
help="The HTTP auth ID.")
parser.add_argument('--authpw',
help="The HTTP auth PW.")
parser.add_argument('--debug',
default=False,
action='store_true',
help="Print debug messages. Default is False.")
args = parser.parse_args()
processkeys(args)
global DEBUG
DEBUG = args.debug
supplied_name = args.collection
if supplied_name.endswith('s'):
schema_name = supplied_name.rstrip('s').replace('-','_') + '.json'
elif supplied_name.endswith('.json'):
schema_name = supplied_name
else:
schema_name = supplied_name.replace('-','_') + '.json'
schema_uri = '/profiles/' + schema_name
object_schema = get_ENCODE(schema_uri)
headings = []
for schema_property in object_schema["properties"]:
property_type = object_schema["properties"][schema_property]["type"]
if isinstance(property_type, list): # hack to deal with multi-typed properties, just pick the first one
property_type = property_type[0]
if property_type == 'string': #if it's a string type, the heading is just the property name
headings.append(schema_property)
elif property_type == 'array': #format the heading to be property_name:type:array or, if an array of strings, property_name:array
if 'items' in object_schema["properties"][schema_property].keys():
whateveritscalled = "items"
elif 'reference' in object_schema["properties"][schema_property].keys():
whateveritscalled = "reference"
elif 'url' in object_schema["properties"][schema_property].keys():
whateveritscalled = "url"
else:
print object_schema["properties"][schema_property].keys()
raise NameError("None of these match anything I know")
if object_schema["properties"][schema_property][whateveritscalled]["type"] == 'string':
headings.append(schema_property + ':array')
else:
try:
headings.append(schema_property + ':' + object_schema["properties"][schema_property][whateveritscalled]["type"] + ':array')
except:
headings.append(schema_property + ':mixed:array')
else: #it isn't a string, and it isn't an array, so make the heading property_name:type
headings.append(schema_property + ':' + property_type)
headings.sort()
if 'file' in supplied_name or 'dataset' in supplied_name or 'source' in supplied_name or 'award' in supplied_name:
pass
else:
#headings.append('award.rfa') #need to add a parameter to specify additional properties
pass
if 'file' in supplied_name:
headings.append('replicate.biological_replicate_number')
headings.append('replicate.technical_replicate_number')
if 'biosample' in supplied_name:
headings.append('organ_slims')
if 'access-key' in supplied_name:
headings.append('user.title')
if 'user' in supplied_name:
headings.append('title')
exclude_unsubmittable = ['accession', 'uuid', 'schema_version', 'alternate_accessions', 'submitted_by']
if args.query:
uri = args.query
elif args.es:
uri = '/search/?format=json&limit=all&type=' + supplied_name
else:
uri = supplied_name
global collection
collection = get_ENCODE(uri)
collected_items = collection['@graph']
headstring = ""
for heading in headings:
if args.submittable and heading.split(':')[0] in exclude_unsubmittable:
pass
else:
headstring += heading + '\t'
headstring = headstring.rstrip()
print headstring
for item in collected_items:
#obj = get_ENCODE(item['@id'])
obj = item
obj = flat_ENCODE(obj)
rowstring = ""
for header in headstring.split('\t'):
prop_key = header.split(':')[0]
if prop_key in obj:
tempstring = json.dumps(obj[prop_key]).lstrip('"').rstrip('"')
if tempstring == '[]':
tempstring = ""
rowstring += tempstring + '\t'
elif '.' in prop_key:
try:
embedded_key = obj[prop_key.split('.')[0]]
if '/' in embedded_key:
embedded_obj = get_ENCODE(embedded_key)
else:
embedded_obj = get_ENCODE(prop_key.split('.')[0] + '/' + obj[prop_key.split('.')[0]])
embedded_value_string = json.dumps(embedded_obj[prop_key.split('.')[1]]).lstrip('"').rstrip('"')
if embedded_value_string == '[]':
embedded_value_string = ""
except KeyError:
embedded_value_string = ""
rowstring += embedded_value_string + '\t'
else:
rowstring += '\t'
rowstring = rowstring.rstrip()
print rowstring
if __name__ == '__main__':
main()