This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
server-api.py
665 lines (573 loc) · 28.7 KB
/
server-api.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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
import argparse
import functools
import os
import re
import string
from datetime import datetime
import bson
import jwt
from bson.json_util import dumps
from flask import Blueprint, Flask, abort, jsonify, request
from flask_limiter import Limiter
from pymongo import ASCENDING, DESCENDING, MongoClient
from utils import Xpos
from webargs import ValidationError, fields
from webargs.flaskparser import parser
argparser = argparse.ArgumentParser()
argparser.add_argument('--host', default = '0.0.0.0', help = 'The hostname to use to access this server.')
argparser.add_argument('--port', type = int, default = 5000, help = 'An integer for the port number.')
bp = Blueprint('bp', __name__, template_folder = 'templates', static_folder = 'static')
app = Flask(__name__, instance_relative_config = True)
# Load default config
app.config.from_object('config.default')
# Load instance configuration if exists
app.config.from_pyfile('config.py', silent = True)
# Load configuration file specified in BRAVO_CONFIG_FILE environment variable if exists
app.config.from_envvar('BRAVO_CONFIG_FILE', silent = True)
proxy = app.config['PROXY']
URL_PREFIX = app.config['URL_PREFIX']
API_URL_PREFIX = app.config['API_URL_PREFIX']
BRAVO_ACCESS_SECRET = app.config['BRAVO_ACCESS_SECRET']
mongo_host = app.config['MONGO']['host']
mongo_port = app.config['MONGO']['port']
mongo_db_name = app.config['MONGO']['name']
api_dataset_name = app.config['API_DATASET_NAME']
api_collection_name = app.config['API_COLLECTION_NAME']
api_version = app.config['API_VERSION']
pageSize = app.config['API_PAGE_SIZE']
maxRegion = app.config['API_MAX_REGION']
projection = {'_id': True, 'xpos': True, 'variant_id': True, 'chrom': True, 'pos': True, 'ref': True, 'alt': True, 'site_quality': True, 'filter': True, 'allele_num': True, 'allele_count': True, 'allele_freq': True, 'rsids': True, 'avgdp': True, 'avgdp_alt': True, 'avggq': True, 'avggq_alt': True, 'vep_annotations': True }
allowed_sort_keys = {'pos': long, 'allele_count': int, 'allele_freq': float, 'allele_num': int, 'site_quality': float, 'filter': str, 'variant_id': str}
allowed_filter_keys = {'allele_count', 'allele_freq', 'allele_num', 'site_quality', 'filter'}
annotations_ordered = [ 'Gene', 'Feature_type', 'Feature', 'Consequence', 'HGVSc', 'HGVSp', 'LoF', 'LoF_filter', 'LoF_flags', 'LoF_info']
vcf_header = '#CHROM\tPOS\tID\tREF\tALT\tQUAL\tFILTER\tINFO'
vcf_meta = [
'##fileformat=VCFv4.2',
'##FILTER=<ID=PASS,Description="All filters passed">',
'##FILTER=<ID=CEN,Description="Variant located in centromeric region with inferred sequences">',
'##FILTER=<ID=SVM,Description="Variant failed SVM filter">',
'##FILTER=<ID=DISC,Description="Mendelian or duplicate genotype discordance is high (3/5% or more)">',
'##FILTER=<ID=CHRXHET,Description="Excess heterozygosity in chrX in males">',
'##FILTER=<ID=EXHET,Description="Excess heterozygosity with HWE p-value < 1e-6">',
'##INFO=<ID=AN,Number=1,Type=Integer,Description="Number of Alleles in Samples with Coverage">',
'##INFO=<ID=AC,Number=A,Type=Integer,Description="Alternate Allele Counts in Samples with Coverage">',
'##INFO=<ID=AF,Number=A,Type=Float,Description="Alternate Allele Frequencies">',
'##INFO=<ID=AVGDP,Number=1,Type=Float,Description="Average depth per sample">',
'##INFO=<ID=AVGDP_ALT,Number=A,Type=Float,Description="Average depth per sample carrying alternate allele">',
'##INFO=<ID=AVGGQ,Number=1,Type=Float,Description="Average genotype quality per sample">',
'##INFO=<ID=AVGGQ_ALT,Number=A,Type=Float,Description="Average genotype quality per sample carrying alternate allele">',
'##INFO=<ID=CSQ,Number=.,Type=String,Description="Consequence annotations from Ensembl VEP. Format: {}">'.format('|'.join(annotations_ordered))
]
mongo = MongoClient(mongo_host, mongo_port, connect = True)
class UserError(Exception):
status_code = 400
def __init__(self, message, status_code = None):
Exception.__init__(self)
self.message = message
def get_user_ip():
if proxy:
x_forwarded_for = request.headers.get('X-Forwarded-For', '').split(',')
return x_forwarded_for[-1].strip() if len(x_forwarded_for) > 0 else ''
return request.remote_addr
def get_db():
return mongo[mongo_db_name]
def validate_access_token(access_token):
try:
decoded_access_token = jwt.decode(access_token, BRAVO_ACCESS_SECRET)
except jwt.InvalidTokenError:
return (None, None, None)
return (decoded_access_token.get('email', None), decoded_access_token.get('iat', None), decoded_access_token.get('ip', None))
def authorize_access_token(email, issued_at):
document = get_db().users.find_one({ 'email': email, 'enabled_api': True, 'agreed_to_terms': True }, projection = {'_id': False})
if not document:
return False
issued_at = datetime.utcfromtimestamp(issued_at)
revoked_at = document.get('access_token_revoked_at', None)
if revoked_at is not None and revoked_at > issued_at:
return False
return True
def request_is_valid():
if app.config['API_GOOGLE_AUTH']:
if 'Authorization' not in request.headers:
return False
authorization = request.headers.get('Authorization').split()
if len(authorization) != 2:
return False
token_type = authorization[0].lower()
if token_type != 'bearer':
return False
email, issued_at, ip = validate_access_token(authorization[1])
if email is None or issued_at is None or ip is None:
return False
if ip != get_user_ip():
return False
return authorize_access_token(email, issued_at)
elif app.config['API_IP_WHITELIST']:
if get_user_ip() in app.config['API_IP_WHITELIST']:
return True
else:
return True
def require_authorization(func):
@functools.wraps(func)
def authorization_wrapper(*args, **kwargs):
if not request_is_valid():
raise UserError('not authorized')
else:
return func(*args, **kwargs)
return authorization_wrapper
@parser.error_handler
def handle_parsing_error(error, request):
response = jsonify({ 'error': 'invalid query parameters' })
response.status_code = 400
abort(response)
@bp.errorhandler(429)
def handle_ratelimit(error):
response = jsonify({ 'error': 'too many requests' })
response.status_code = 429
return response
@bp.errorhandler(UserError)
def handle_user_error(error):
response = jsonify({ 'error': error.message })
response.status_code = error.status_code
return response
@bp.route('/', methods = ['GET'])
@require_authorization
def get_name():
response = jsonify({
'dataset': api_dataset_name,
'api_version': api_version
})
response.status_code = 200
return response
@bp.route('/variant', methods = ['GET'])
@require_authorization
def get_variant():
args = parser.parse({
'variant_id': fields.Str(required = False, validate = lambda x: len(x) > 0),
'chrom': fields.Str(required = False, validate = lambda x: len(x) > 0),
'pos': fields.Int(required = False, validate = lambda x: x >= 0),
'vcf': fields.Bool(required = False, missing = False)
}, request)
if 'variant_id' in args:
if args['variant_id'].startswith('rs'):
mongo_filter = { 'rsids' : args['variant_id'] }
else:
try:
chrom, pos, ref, alt = args['variant_id'].split('-')
pos = int(pos)
except ValueError as e:
raise UserError('Invalid variant name format.')
if not Xpos.check_chrom(chrom):
raise UserError('Invalid chromosome name.')
xpos = Xpos.from_chrom_pos(chrom, pos)
mongo_filter = { 'xpos': xpos, 'ref': ref, 'alt': alt }
elif all(x in args for x in ['chrom', 'pos']):
if not Xpos.check_chrom(args['chrom']):
raise UserError('Invalid chromosome name.')
xpos = Xpos.from_chrom_pos(args['chrom'], args['pos'])
mongo_filter = { 'xpos': xpos }
else:
raise UserError('Invalid query parameters.')
data = []
response = { 'next': None }
db = get_db()
collection = db[api_collection_name]
rename = projection.copy()
rename.pop('vep_annotations', None)
rename['annotations'] = '$vep_annotations'
cursor = collection.aggregate([
{ '$match': mongo_filter },
{ '$project': projection },
{ '$project': rename }
])
if not args['vcf']:
response['format'] = 'json'
for r in cursor:
last_object_id = r.pop('_id')
r['annotations'] = [{k: a[k] for k in annotations_ordered} for a in r['annotations']]
r.pop('xpos', None)
data.append(r)
last_variant = r
else:
response['format'] = 'vcf'
response['header'] = vcf_header
response['meta'] = vcf_meta
for r in cursor:
last_object_id = r.pop('_id')
r.pop('xpos', None)
data.append('{}\t{}\t{}\t{}\t{}\t{}\t{}\tAN={};AC={};AF={};AVGDP={};AVGDP_ALT={};AVGGQ={};AVGGQ_ALT={};CSQ={}'.format(
r['chrom'], r['pos'], ';'.join(r['rsids']) if r['rsids'] else '.', r['ref'], r['alt'], r['site_quality'], r['filter'],
r['allele_num'], r['allele_count'], r['allele_freq'], r['avgdp'], r['avgdp_alt'], r['avggq'], r['avggq_alt'],
','.join('|'.join(a[k] for k in annotations_ordered) for a in r['annotations'])
))
last_variant = r
response['data'] = data
response = jsonify(response)
response.status_code = 200
return response
def deserialize_query_sort(value):
query_sort = list()
for key_direction in (x.strip().split(':') for x in value.strip().split(',')):
if len(key_direction) == 0 or len(key_direction) > 2:
raise ValidationError('invalid sort syntax')
key = key_direction[0].lower()
if key not in allowed_sort_keys:
raise ValidationError('sort is not supported for specified key(s)')
direction = key_direction[1].lower() if len(key_direction) > 1 else ''
if direction == '' or direction == 'asc' or direction == '1':
direction = ASCENDING
elif direction == 'desc' or direction == '-1':
direction = DESCENDING
else:
raise ValidationError('unkown sort direction')
query_sort.append((key, direction))
return query_sort
def deserialize_query_filter(value, value_type):
value = value.strip()
if len(value) == 0:
raise ValidationError('empty value')
if len(value) > 1 and ((value[0] == '"' and value[-1] == '"') or (value[0] == '\'' and value[-1] == '\'')):
operator = '$eq'
value = value[1:-1]
return { operator: value }
elements = value.split(':')
if len(elements) == 1:
operator = '$eq'
value = elements[0]
elif len(elements) == 2:
operator = '${}'.format(elements[0].lower())
value = elements[1]
if operator not in ['$eq', '$ne', '$gt', '$lt', '$gte', '$lte']:
raise ValidationError('unknown operator')
else:
raise ValidationError('too many values')
try:
if value_type == int:
value = int(value)
elif value_type == long:
value = long(value)
elif value_type == float:
value = float(value)
elif value_type == str:
if len(value) > 1 and ((value[0] == '"' and value[-1] == '"') or (value[0] == '\'' and value[-1] == '\'')):
value = value[1:-1]
else:
raise ValidationError('unsupported value type')
except:
raise ValidationError('invalid value type')
return { operator: value }
def deserialize_query_last(value):
elements = value.strip().split(':')
if len(elements) == 0:
raise ValidationError('empty value')
objectid = elements[-1]
if len(objectid) != 24 or any(c not in string.hexdigits for c in objectid):
raise ValidationError('invalid value')
return elements
def validate_query(value):
# eliminate duplicated entries in filters and sort
if 'sort' in value:
value['sort'] = dict(value['sort']).items()
# check if last element is consistent with sort fields and cast to the corresponding types
if 'last' in value and len(value['last']) > 1:
if 'sort' not in value or len(value['last']) - 1 != len(value['sort']):
return False
try:
for i, key in enumerate((x for x, y in value['sort'])):
key_type = allowed_sort_keys[key]
if key_type == int:
value['last'][i] = int(value['last'][i])
elif key_type == long:
value['last'][i] = long(value['last'][i])
elif key_type == float:
value['last'][i] = float(value['last'][i])
except:
return False
return True
def build_region_query(args, xstart, xend):
# prepare sort conditions in mongo format
if 'sort' not in args or len(args['sort']) == 0:
mongo_sort = [(u'xpos', ASCENDING)] # xpos sorted by default if nothing else is specified
else:
mongo_sort = [(u'xpos', x[1]) if x[0] == 'pos' else x for x in args['sort']] # if user was sorting by 'pos', then replace 'pos' to 'xpos'
mongo_filter = []
# prepare user-specified filter conditions in mongo format
mongo_user_filter = [ {'xpos': {'$gte': xstart}}, {'xpos': {'$lte': xend}} ]
for key in allowed_filter_keys:
values = args.get(key, None)
if values is not None:
if len(values) == 1:
mongo_user_filter.append({key: values[0]})
else:
mongo_user_filter.append({'$or': [{key: v} for v in values]})
# adjust filter conditions if auto-generated 'next' field is present
mongo_last_filter = []
if 'last' in args:
for i, (key, direction) in enumerate(mongo_sort):
# adjust user-specified filter. mongodb opitmizer will take care about overlapping condtitions
# add auto-generated filter
if direction == ASCENDING:
mongo_user_filter.append({key: {'$gte': args['last'][i]}})
mongo_last_filter.append({key: {'$gt': args['last'][i]}})
else:
mongo_user_filter.append({key: {'$lte': args['last'][i]}})
mongo_last_filter.append({key: {'$lt': args['last'][i]}})
mongo_last_filter.append({'_id': {'$gt': bson.objectid.ObjectId(args['last'][-1])}})
mongo_filter.append({'$or': mongo_last_filter})
mongo_filter.extend(mongo_user_filter)
return {'$and': mongo_filter}, mongo_sort
def build_link_next(args, last_object_id, last_variant, mongo_sort):
if last_object_id is None or last_variant is None:
return None
link_next = request.base_url + '?' + '&'.join(('{}={}'.format(arg, value) for arg, value in request.args.iteritems(True) if arg != 'last'))
if ('sort' not in args or len(args['sort']) == 0) and mongo_sort:
link_next += '&sort=' + ','.join(('{}:{}'.format('pos' if key == 'xpos' else key, 'asc' if sort_direction == ASCENDING else 'desc') for key, sort_direction in mongo_sort))
if mongo_sort:
link_next += '&last=' + ':'.join(['{}'.format( dumps(last_variant[key] if key != 'xpos' else Xpos.from_chrom_pos(last_variant['chrom'], last_variant['pos'])) ) for key, direction in mongo_sort]) + ':'
return link_next + str(last_object_id)
@bp.route('/region', methods = ['GET'])
@require_authorization
def get_region():
arguments = {
'chrom': fields.Str(required = True, validate = lambda x: len(x) > 0),
'start': fields.Int(required = True, validate = lambda x: x >= 0),
'end': fields.Int(required = True, validate = lambda x: x > 0),
'allele_count': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, int))),
'allele_freq': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, float))),
'allele_num': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, int))),
'site_quality': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, float))),
'filter': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, str))),
'annotations.lof': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, str))),
'annotations.consequence': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, str))),
'sort': fields.Function(deserialize = deserialize_query_sort),
'vcf': fields.Bool(required = False, missing = False),
'limit': fields.Int(required = False, validate = lambda x: x > 0, missing = pageSize),
'last': fields.Function(deserialize = deserialize_query_last)
}
args = parser.parse(arguments, validate = validate_query)
if args['start'] >= args['end']:
raise UserError('Start position must be less than end position.')
# check if start less than end
if args['end'] - args['start'] > maxRegion:
raise UserError('Regions larger than {} base-pairs are not allowed.'.format(maxRegion))
# transform start and end to xpos
if not Xpos.check_chrom(args['chrom']):
raise UserError('Invalid chromosome name.')
xstart = Xpos.from_chrom_pos(args['chrom'], args['start'])
xend = Xpos.from_chrom_pos(args['chrom'], args['end'])
mongo_filter, mongo_sort = build_region_query(args, xstart, xend)
annotations_filter = []
annotations = args.get('annotations', None)
if annotations is not None:
filters = annotations.get('lof', None)
if filters is not None:
if len(filters) == 1:
annotations_filter.append({'LoF': filters[0]})
else:
annotations_filter.append({'$or': [{'LoF': v} for v in filters]})
filters = annotations.get('consequence', None)
if filters is not None:
annotations_filter.append({'$or': [{'Consequence': re.compile(v.values()[0])} if v.keys()[0] == '$eq' else {'Consequence': {'$not': re.compile(v.values()[0])}} for v in filters ] })
if annotations_filter:
mongo_filter['$and'].append({'vep_annotations': {'$elemMatch': {'$and': annotations_filter}}})
#print mongo_filter
data = [];
response = {}
last_variant = None
last_object_id = None
db = get_db()
collection = db[api_collection_name]
# can be replaced with collection.aggregate. However in Mongo 3.4. collection.aggregate produced different query plan than collection.find, which was not optimal
cursor = collection.find(mongo_filter, projection).sort(mongo_sort + [('_id', ASCENDING)]).limit(args['limit'])
if not args['vcf']:
response['format'] = 'json'
for r in cursor:
last_object_id = r.pop('_id')
r['annotations'] = [{k: a[k] for k in annotations_ordered} for a in r['vep_annotations']]
r.pop('vep_annotations')
r.pop('xpos', None)
data.append(r)
last_variant = r
else:
response['format'] = 'vcf'
response['header'] = vcf_header
response['meta'] = vcf_meta
for r in cursor:
last_object_id = r.pop('_id')
r.pop('xpos', None)
data.append('{}\t{}\t{}\t{}\t{}\t{}\t{}\tAN={};AC={};AF={};AVGDP={};AVGDP_ALT={};AVGGQ={};AVGGQ_ALT={};CSQ={}'.format(
r['chrom'], r['pos'], ';'.join(r['rsids']) if r['rsids'] else '.', r['ref'], r['alt'], r['site_quality'], r['filter'],
r['allele_num'], r['allele_count'], r['allele_freq'], r['avgdp'], r['avgdp_alt'], r['avggq'], r['avggq_alt'],
','.join('|'.join(a[k] for k in annotations_ordered) for a in r['vep_annotations'])
))
last_variant = r
response['data'] = data
response['next'] = build_link_next(args, last_object_id, last_variant, mongo_sort) if len(data) == args['limit'] else None
response = jsonify(response)
response.status_code = 200
return response
@bp.route('/gene', methods = ['GET'])
@require_authorization
def get_gene():
arguments = {
'name': fields.Str(required = True, validate = lambda x: len(x) > 0),
'allele_count': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, int))),
'allele_freq': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, float))),
'allele_num': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, int))),
'site_quality': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, float))),
'filter': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, str))),
'annotations.lof': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, str))),
'annotations.consequence': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, str))),
'sort': fields.Function(deserialize = deserialize_query_sort),
'vcf': fields.Bool(required = False, missing = False),
'limit': fields.Int(required = False, validate = lambda x: x > 0, missing = pageSize),
'last': fields.Function(deserialize = deserialize_query_last)
}
args = parser.parse(arguments, validate = validate_query)
db = get_db()
gene = db.genes.find_one({'$or': [
{'gene_id': args['name']}, {'gene_name': args['name']}, {'other_names': args['name']}
]}, projection={'_id': False})
if not gene:
raise UserError('Gene with name or identifier equal to {} was not found.'.format(args['name']))
response = {
'gene': {
'name': gene['gene_name'],
'id': gene['gene_id'],
'chrom': gene['chrom'],
'start': gene['start'],
'stop': gene['stop'],
'strand': gene['strand']
}
}
mongo_filter, mongo_sort = build_region_query(args, gene['xstart'], gene['xstop'])
annotations_filter = [ { 'Gene': gene['gene_id'] } ]
annotations = args.get('annotations', None)
if annotations is not None:
filters = annotations.get('lof', None)
if filters is not None:
if len(filters) == 1:
annotations_filter.append({'LoF': filters[0]})
else:
annotations_filter.append({'$or': [{'LoF': v} for v in filters]})
filters = annotations.get('consequence', None)
if filters is not None:
annotations_filter.append({'$or': [{'Consequence': re.compile(v.values()[0])} if v.keys()[0] == '$eq' else {'Consequence': {'$not': re.compile(v.values()[0])}} for v in filters ] })
mongo_filter['$and'].append({'vep_annotations': {'$elemMatch': {'$and': annotations_filter}}})
data = [];
last_variant = None
last_object_id = None
collection = db[api_collection_name]
# can be replaced with collection.aggregate. However in Mongo 3.4. collection.aggregate produced different query plan than collection.find, which was not optimal
cursor = collection.find(mongo_filter, projection).sort(mongo_sort + [('_id', ASCENDING)]).limit(args['limit'])
if not args['vcf']:
response['format'] = 'json'
for r in cursor:
last_object_id = r.pop('_id')
r['annotations'] = [{k: a[k] for k in annotations_ordered} for a in r['vep_annotations'] if a['Gene'] == gene['gene_id']]
r.pop('vep_annotations', None)
r.pop('xpos', None)
data.append(r)
last_variant = r
else:
response['format'] = 'vcf'
response['header'] = vcf_header
response['meta'] = vcf_meta
for r in cursor:
last_object_id = r.pop('_id')
r.pop('xpos', None)
data.append('{}\t{}\t{}\t{}\t{}\t{}\t{}\tAN={};AC={};AF={};AVGDP={};AVGDP_ALT={};AVGGQ={};AVGGQ_ALT={};CSQ={}'.format(
r['chrom'], r['pos'], ';'.join(r['rsids']) if r['rsids'] else '.', r['ref'], r['alt'], r['site_quality'], r['filter'],
r['allele_num'], r['allele_count'], r['allele_freq'], r['avgdp'], r['avgdp_alt'], r['avggq'], r['avggq_alt'],
','.join('|'.join(a[k] for k in annotations_ordered) for a in r['vep_annotations'] if a['Gene'] == gene['gene_id'])
))
last_variant = r
response['data'] = data
response['next'] = build_link_next(args, last_object_id, last_variant, mongo_sort) if len(data) == args['limit'] else None
response = jsonify(response)
response.status_code = 200
return response
@bp.route('/transcript', methods = ['GET'])
@require_authorization
def get_transcript():
arguments = {
'transcript_id': fields.Str(required = True, validate = lambda x: len(x) > 0),
'allele_count': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, int))),
'allele_freq': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, float))),
'allele_num': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, int))),
'site_quality': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, float))),
'filter': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, str))),
'annotations.lof': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, str))),
'annotations.consequence': fields.List(fields.Function(deserialize = lambda x: deserialize_query_filter(x, str))),
'sort': fields.Function(deserialize = deserialize_query_sort),
'vcf': fields.Bool(required = False, missing = False),
'limit': fields.Int(required = False, validate = lambda x: x > 0, missing = pageSize),
'last': fields.Function(deserialize = deserialize_query_last)
}
args = parser.parse(arguments, validate = validate_query)
db = get_db()
transcript = db.transcripts.find_one({'transcript_id': args['transcript_id']}, projection={'_id': False})
if not transcript:
raise UserError('Transcript with identifier equal to {} was not found.'.format(args['transcript_id']))
response = {
'transcript': {
'transcript_id': transcript['transcript_id'],
'gene_id': transcript['gene_id'],
'chrom': transcript['chrom'],
'start': transcript['start'],
'stop': transcript['stop'],
'strand': transcript['strand']
}
}
mongo_filter, mongo_sort = build_region_query(args, transcript['xstart'], transcript['xstop'])
annotations_filter = [ { 'Feature': transcript['transcript_id'] } ]
annotations = args.get('annotations', None)
if annotations is not None:
filters = annotations.get('lof', None)
if filters is not None:
if len(filters) == 1:
annotations_filter.append({'LoF': filters[0]})
else:
annotations_filter.append({'$or': [{'LoF': v} for v in filters]})
filters = annotations.get('consequence', None)
if filters is not None:
annotations_filter.append({'$or': [{'Consequence': re.compile(v.values()[0])} if v.keys()[0] == '$eq' else {'Consequence': {'$not': re.compile(v.values()[0])}} for v in filters ] })
mongo_filter['$and'].append({'vep_annotations': {'$elemMatch': {'$and': annotations_filter}}})
data = [];
last_variant = None
last_object_id = None
collection = db[api_collection_name]
# can be replaced with collection.aggregate. However in Mongo 3.4. collection.aggregate produced different query plan than collection.find, which was not optimal
cursor = collection.find(mongo_filter, projection).sort(mongo_sort + [('_id', ASCENDING)]).limit(args['limit'])
if not args['vcf']:
response['format'] = 'json'
for r in cursor:
last_object_id = r.pop('_id')
r['annotations'] = {k: a[k] for k in annotations_ordered for a in r['vep_annotations'] if a['Feature'] == transcript['transcript_id']}
r.pop('xpos', None)
r.pop('vep_annotations', None)
data.append(r)
last_variant = r
else:
response['format'] = 'vcf'
response['header'] = vcf_header
response['meta'] = vcf_meta
for r in cursor:
last_object_id = r.pop('_id')
r.pop('xpos', None)
data.append('{}\t{}\t{}\t{}\t{}\t{}\t{}\tAN={};AC={};AF={};AVGDP={};AVGDP_ALT={};AVGGQ={};AVGGQ_ALT={};CSQ={}'.format(
r['chrom'], r['pos'], ';'.join(r['rsids']) if r['rsids'] else '.', r['ref'], r['alt'], r['site_quality'], r['filter'],
r['allele_num'], r['allele_count'], r['allele_freq'], r['avgdp'], r['avgdp_alt'], r['avggq'], r['avggq_alt'],
','.join(['|'.join(a[k] for k in annotations_ordered) for a in r['vep_annotations'] if a['Feature'] == transcript['transcript_id']])
))
last_variant = r
response['data'] = data
response['next'] = build_link_next(args, last_object_id, last_variant, mongo_sort) if len(data) == args['limit'] else None
response = jsonify(response)
response.status_code = 200
return response
limiter = Limiter(app, default_limits = app.config['API_REQUESTS_RATE_LIMIT'], key_func = get_user_ip)
app.register_blueprint(bp, url_prefix = URL_PREFIX + API_URL_PREFIX)
if __name__ == '__main__':
args = argparser.parse_args()
app.run(host = args.host, port = args.port, threaded = True, use_reloader = True)