forked from Ensembl/VEP_plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Phenotypes.pm
434 lines (311 loc) · 12.8 KB
/
Phenotypes.pm
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
=head1 LICENSE
Copyright [1999-2015] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute
Copyright [2016-2023] EMBL-European Bioinformatics Institute
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
=head1 CONTACT
Ensembl <http://www.ensembl.org/info/about/contact/index.html>
=cut
=head1 NAME
Phenotypes
=head1 SYNOPSIS
mv Phenotypes.pm ~/.vep/Plugins
./vep -i variations.vcf --plugin Phenotypes
=head1 DESCRIPTION
A VEP plugin that retrieves overlapping phenotype information.
On the first run for each new version/species/assembly will
download a GFF-format dump to ~/.vep/Plugins/
Ensembl provides phenotype annotations mapped to a number of genomic
feature types, including genes, variants and QTLs.
This plugin is best used with JSON output format; the output will be
more verbose and include all available phenotype annotation data and
metadata.
For other output formats, only a concatenated list of phenotype
description strings is returned.
Several paramters can be set using a key=value system:
dir : provide a dir path, where either to create anew the species
specific file from the download or to look for an existing file
file : provide a file path, either to create anew from the download
or to point to an existing file
exclude_sources: exclude sources of phenotype information. By default
HGMD and COSMIC annotations are excluded. See
http://www.ensembl.org/info/genome/variation/phenotype/sources_phenotype_documentation.html
Separate multiple values with '&'
include_sources: force include sources, as exclude_sources
exclude_types : exclude types of features. By default StructuralVariation
and SupportingStructuralVariation annotations are excluded
due to their size. Separate multiple values with '&'.
Valid types: Gene, Variation, QTL, StructuralVariation,
SupportingStructuralVariation, RegulatoryFeature
include_types : force include types, as exclude_types
expand_right : sets cache size in bp. By default annotations 100000bp (100kb)
downstream of the initial lookup are cached
phenotype_feature : report the specific gene or variation the phenotype is
linked to, this can be an overlapping gene or structural variation,
and the source of the annotation (default 0)
Example:
--plugin Phenotypes,file=${HOME}/phenotypes.gff.gz,include_types=Gene
--plugin Phenotypes,dir=${HOME},include_types=Gene
=cut
package Phenotypes;
use strict;
use warnings;
use Bio::EnsEMBL::Variation::Utils::BaseVepTabixPlugin;
use base qw(Bio::EnsEMBL::Variation::Utils::BaseVepTabixPlugin);
# default config
my %CONFIG = (
exclude_sources => 'HGMD-PUBLIC&COSMIC',
exclude_types => 'StructuralVariation&SupportingStructuralVariation',
expand_right => 100000,
phenotype_feature => 0,
);
my %output_format;
my $char_sep = "|";
my %cols = (phenotype => 1, source => 1, id => 1);
my @fields_order = ("phenotype", "source", "id");
my @FIELDS = qw(seq_region_name source type start end score strand frame attributes comments);
sub new {
my $class = shift;
my $self = $class->SUPER::new(@_);
my $params_hash = $self->params_to_hash();
$CONFIG{$_} = $params_hash->{$_} for keys %$params_hash;
die("ERROR: File not found (".$CONFIG{file}.") and unable to generate GFF file in offline mode\n") if $self->{config}{offline} && ($CONFIG{file} && !-e $CONFIG{file}) ;
#for REST calls report all data (use json output flag)
$self->{config}->{output_format} ||= $CONFIG{output_format};
# get output format
if ($self->{config}->{output_format}) {
$output_format{$self->{config}->{output_format}} = 1;
}
$char_sep = "+" if ($output_format{'vcf'});
#DEFAULTS are not refreshed automatically by multiple REST calls unless forced
my $refresh = 0;
$refresh = 1 if (exists $CONFIG{species} && $CONFIG{species} ne $self->{config}{species});
unless($CONFIG{file} && !$refresh) {
die("ERROR: Unable to generate GFF file in offline mode\n") if $self->{config}->{offline};
my $pkg = __PACKAGE__;
$pkg .= '.pm';
my $config = $self->{config};
my $species = $config->{species};
my $version = $config->{db_version} || 'Bio::EnsEMBL::Registry'->software_version;
my $assembly = $config->{assembly};
my $dir = $CONFIG{dir};
if(defined $dir && -d $dir){
$dir =~ s/\/?$/\//; #ensure dir path string ends in slash
if( $species eq 'homo_sapiens' || $species eq 'human'){
$assembly ||= $config->{human_assembly};
$CONFIG{file} = sprintf("%s_%s_%i_%s.gvf.gz", $dir.$pkg, $species, $version, $assembly);
} else {
$CONFIG{file} = sprintf("%s_%s_%i.gvf.gz", $dir.$pkg, $species, $version);
}
} else { #assembly value will be automatically populated by VEP script but not by REST server
$CONFIG{file} = sprintf("%s_%s_%i_%s.gvf.gz", $INC{$pkg}, $species, $version, $assembly);
}
$CONFIG{species} = $species;
}
$self->generate_phenotype_gff($CONFIG{file}) if !(-e $CONFIG{file}) || (-e $CONFIG{file}.'.lock');
$self->add_file($CONFIG{file});
$self->get_user_params();
return $self;
}
sub feature_types {
return ['Feature','Intergenic'];
}
sub variant_feature_types {
return ['BaseVariationFeature'];
}
sub get_header_info {
my $self = shift;
return {
PHENOTYPES => 'Phenotypes associated with overlapping genomic features'
}
}
sub generate_phenotype_gff {
my ($self, $file) = @_;
my $config = $self->{config};
die("ERROR: Unable to generate GFF file in offline mode\n") if $config->{offline};
die("ERROR: Not allowed to generate GFF file in rest mode\n") if $config->{rest};
# test bgzip
die "ERROR: bgzip does not seem to be in your path\n" unless `which bgzip 2>&1` =~ /bgzip$/;
unless($config->{quiet}) {
print STDERR "### Phenotypes plugin: Generating GFF file $file from database\n";
print STDERR "### Phenotypes plugin: This will take some time but it will only run once per species, assembly and release\n";
}
my $pfa = $self->{config}->{reg}->get_adaptor($config->{species}, 'variation', 'phenotypefeature');
die ("ERROR: no variation db found, please check that it exists for this release \n") unless defined $pfa;
print STDERR "### Phenotypes plugin: Querying database\n" unless $config->{quiet};
my $sth = $pfa->dbc->prepare(qq{
SELECT
sr.name AS seqname,
REPLACE(s.name, " ", "_") AS source,
pf.type AS feature,
pf.seq_region_start AS start,
pf.seq_region_end AS end,
NULL AS score,
IF(pf.seq_region_strand = 1, '+', '-') AS strand,
NULL AS frame,
CONCAT_WS('; ',
CONCAT('id=', pf.object_id),
CONCAT('phenotype="', REPLACE(p.description, '"', ''), '"'),
GROUP_CONCAT(at.code, "=", concat('"', pfa.value, '"') SEPARATOR '; '),
GROUP_CONCAT('submitter_name="', sub.description, '"')
) AS attribute
FROM
seq_region sr,
source s,
phenotype p,
phenotype_feature pf
LEFT JOIN phenotype_feature_attrib pfa
ON pf.phenotype_feature_id = pfa.phenotype_feature_id
LEFT JOIN attrib_type `at`
ON pfa.attrib_type_id = at.attrib_type_id
LEFT JOIN submitter sub
ON (
pfa.value = sub.submitter_id
AND pfa.attrib_type_id = at.attrib_type_id
AND at.code = 'submitter_id'
)
WHERE sr.seq_region_id = pf.seq_region_id
AND s.source_id = pf.source_id
AND pf.phenotype_id = p.phenotype_id
GROUP BY pf.phenotype_feature_id
ORDER BY pf.seq_region_id, pf.seq_region_start, pf.seq_region_end
}, { mysql_use_result => 1});
$sth->execute();
print STDERR "### Phenotypes plugin: Writing to file\n" unless $config->{quiet};
my $file_sorted = $file;
$file .= ".tmp";
my $lock = "$file\.lock";
open LOCK, ">$lock" or die "ERROR: Unable to write to lock file $lock\n";
print LOCK "1\n";
close LOCK;
open OUT, " | bgzip -c > $file" or die "ERROR: Unable to write to file $file\n";
print OUT "##gvf-version 1.10\n"; #HEADER
while(my $row = $sth->fetchrow_arrayref()) {
# swap start end for insertions
@$row[3,4] = @$row[4,3] if (@$row[3] > @$row[4]);
print OUT join("\t", map {defined($_) ? $_ : '.'} @$row)."\n";
}
close OUT;
unlink($lock);
$sth->finish();
print STDERR "### Phenotypes plugin: Sorting file with sort\n" unless $config->{quiet};
system("(zgrep '^#' $file; LC_ALL=C zgrep -v '^#' $file | sort -k1,1 -k4,4n ) | bgzip -c > $file_sorted") and die("ERROR: sort failed\n");
print STDERR "### Phenotypes plugin: Indexing file with tabix\n" unless $config->{quiet};
system("tabix -p gff $file_sorted") and die("ERROR: tabix failed\n");
print STDERR "### Phenotypes plugin: All done!\n" unless $config->{quiet};
}
sub run {
my ($self, $bvfo) = @_;
my $vf = $bvfo->base_variation_feature;
# adjust coords for tabix
my ($s, $e) = ($vf->{start}, $vf->{end});
($s, $e) = ($vf->{end}, $vf->{start}) if ($vf->{start} > $vf->{end}); # swap for insertions
my $data = $self->get_data($vf->{chr}, $s, $e);
return {} unless $data && scalar @$data;
return { PHENOTYPES => $data } if ($output_format{'json'} && !$CONFIG{phenotype_feature});
if ($CONFIG{phenotype_feature}){
my %tmp_res_uniq;
my @result_str = ();
my @result_data = ();
foreach my $tmp_data(@{$data}) {
# subset phenotype data columns
my %tmp = map { $_ => $tmp_data->{$_} } keys %cols;
$tmp_data = \%tmp;
if (!$output_format{'json'}) {
# replace link characters with _
$tmp_data->{phenotype} =~ tr/ ;,)(/\_\_\_\_\_/;
# report only unique set of fields
my $record_line = join(",", values %$tmp_data);
next if defined $tmp_res_uniq{$record_line};
$tmp_res_uniq{$record_line} = 1;
push(@result_str, join($char_sep, @$tmp_data{@fields_order}));
}
push @result_data, $tmp_data;
}
# output options: phenotype_feature + json OR phenotype_feature + vep|vcf|tab
return {
PHENOTYPES => defined($output_format{'json'}) ? \@result_data : \@result_str
};
}
my %result_uniq = map { $_ => 1} map {$_->{phenotype} =~ tr/ ;,)(/\_\_\_\_\_/; $_->{phenotype}} @$data;
return {
PHENOTYPES => join(",", keys %result_uniq )
};
}
sub parse_data {
my ($self, $line) = @_;
my @split = split /\t/, $line;
my $data;
# parse split data into hash
for my $i(0..$#split) {
$data->{$FIELDS[$i]} = $split[$i];
}
my $inc_sources = $self->include_sources;
if(scalar keys %$inc_sources) {
return undef if $data->{source} && !$inc_sources->{$data->{source}};
}
else {
return undef if $data->{source} && $self->exclude_sources->{$data->{source}};
}
my $inc_types = $self->include_types;
if(scalar keys %$inc_types) {
return undef if $data->{type} && !$inc_types->{$data->{type}};
}
else {
return undef if $data->{type} && $self->exclude_types->{$data->{type}};
}
# parse attributes
if(defined($data->{attributes})) {
$data->{attributes} =~ s/^\s+//g;
my %attribs;
foreach my $pair(split /;\s*/, $data->{attributes}) {
my ($key, $value) = split /\=/, $pair;
next unless defined($key) and defined($value);
next if $key eq 'submitter_id'; # if submitter_id exists, submitter_name should also exist and displayed
# remove quote marks
$value =~ s/\"//g;
# avoid overwriting if an attrib key duplicates a main key
$key = 'attrib_'.$key if exists($data->{lc($key)});
# lowercase key to reduce chances of mess up!
$data->{lc($key)} = $value;
}
delete $data->{attributes};
}
# delete empty
map {delete $data->{$_}} grep {$data->{$_} eq '.' || $data->{$_} eq ''} keys %$data;
return $data;
}
sub get_start {
return $_[1]->{start};
}
sub get_end {
return $_[1]->{end};
}
sub exclude_sources {
return $_[0]->_generic_inc_exc('exclude_sources');
}
sub exclude_types {
return $_[0]->_generic_inc_exc('exclude_types');
}
sub include_sources {
return $_[0]->_generic_inc_exc('include_sources');
}
sub include_types {
return $_[0]->_generic_inc_exc('include_types');
}
sub _generic_inc_exc {
my ($self, $key) = @_;
if(!exists($self->{'_'.$key})) {
my %exc = map {$_ => 1} split('&', $CONFIG{$key} || '');
$self->{'_'.$key} = \%exc;
}
return $self->{'_'.$key};
}
1;