-
Notifications
You must be signed in to change notification settings - Fork 116
/
DisGeNET.pm
312 lines (228 loc) · 8.34 KB
/
DisGeNET.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
=head1 LICENSE
Copyright [1999-2015] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute
Copyright [2016-2024] 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
DisGeNET
=head1 SYNOPSIS
mv DisGeNET.pm ~/.vep/Plugins
./vep -i variations.vcf --plugin DisGeNET,file=/path/to/disgenet/data.tsv.gz
./vep -i variations.vcf --plugin DisGeNET,file=/path/to/disgenet/data.tsv.gz,disease=1
=head1 DESCRIPTION
This is a plugin for the Ensembl Variant Effect Predictor (VEP) that
adds Variant-Disease-PMID associations from the DisGeNET database.
It is available for GRCh38.
Please cite the DisGeNET publication alongside the VEP if you use this resource:
https://academic.oup.com/nar/article/48/D1/D845/5611674
Options are passed to the plugin as key=value pairs:
file : Path to DisGeNET data file (mandatory).
disease : Set value to 1 to include the diseases/phenotype names reporting
the Variant-PMID association (optional).
rsid : Set value to 1 to include the dbSNP variant Identifier (optional).
filter_score : Only reports citations with score greater or equal than input value (optional).
filter_source : Only reports citations from input sources (optional).
Accepted sources are: UNIPROT, CLINVAR, GWASDB, GWASCAT, BEFREE
Separate multiple values with '&'.
Output:
Each element of the output includes:
- PMID of the publication reporting the Variant-Disease association (default)
- DisGeNET score for the Variant-Disease association (default)
- diseases/phenotype names (optional)
- dbSNP variant Identifier (optional)
This plugin uses file 'all_variant_disease_pmid_associations.tsv.gz'.
File can be downloaded from: https://www.disgenet.org/downloads.
The following steps are necessary before running this plugin (tested with DisGeNET export date 2020-05-26):
gunzip all_variant_disease_pmid_associations.tsv.gz
awk '($1 ~ /^snpId/ || $2 ~ /NA/) {next} {print $0}' all_variant_disease_pmid_associations.tsv > all_variant_disease_pmid_associations_clean.tsv
sort -t $'\t' -k2,2 -k3,3n all_variant_disease_pmid_associations_clean.tsv > all_variant_disease_pmid_associations_sorted.tsv
awk '{ gsub (/\t +/, "\t", $0); print}' all_variant_disease_pmid_associations_sorted.tsv > all_variant_disease_pmid_associations_final.tsv
bgzip all_variant_disease_pmid_associations_final.tsv
tabix -s 2 -b 3 -e 3 all_variant_disease_pmid_associations_final.tsv.gz
The plugin can then be run as default:
./vep -i variations.vcf --plugin DisGeNET,file=all_variant_disease_pmid_associations_final.tsv.gz
or with an option to include optional data or/and filters:
./vep -i variations.vcf --plugin DisGeNET,file=all_variant_disease_pmid_associations_final.tsv.gz,disease=1
./vep -i variations.vcf --plugin DisGeNET,file=all_variant_disease_pmid_associations_final.tsv.gz,disease=1,filter_source='GWASDB&GWASCAT'
Of notice: this plugin only matches the chromosome and the position in the
chromosome, the alleles are not taken into account to append the DisGeNET data.
The rsid is provided (optional) in the output in order to help to filter the relevant data.
=cut
package DisGeNET;
use strict;
use warnings;
use List::MoreUtils qw(uniq);
use Bio::EnsEMBL::Variation::Utils::BaseVepTabixPlugin;
use base qw(Bio::EnsEMBL::Variation::Utils::BaseVepTabixPlugin);
my $valid_sources = {
UNIPROT => 1,
CLINVAR => 1,
GWASDB => 1,
GWASCAT => 1,
BEFREE => 1
};
sub new {
my $class = shift;
my $self = $class->SUPER::new(@_);
$self->expand_left(0);
$self->expand_right(0);
my $param_hash = $self->params_to_hash();
$self->add_file($param_hash->{file});
if(defined($param_hash->{disease})) {
my $disease = $param_hash->{disease};
$self->{disease} = $disease;
}
if(defined($param_hash->{rsid})) {
my $rsid = $param_hash->{rsid};
$self->{rsid} = $rsid;
}
if(defined($param_hash->{filter_score})) {
my $filter_score = $param_hash->{filter_score};
if($filter_score < 0 || $filter_score > 1) {
die("ERROR: Score must be between 0 and 1!\n");
}
$self->{filter_score} = $filter_score;
}
if(defined($param_hash->{filter_source})) {
my @sources_filter;
foreach my $source (split(/[\;\&\|]/, $param_hash->{filter_source})) {
if (!$valid_sources->{$source}) {
die "ERROR: $source is not a supported source name. Supported sources are: ", join(', ', keys %$valid_sources), "\n";
}
else {
push @sources_filter, $source;
}
}
if (scalar @sources_filter > 0) {
$self->{source_to_filter} = \@sources_filter;
}
}
return $self;
}
sub feature_types {
return ['Feature','Intergenic'];
}
sub get_header_info {
my $self = shift;
my %header;
$header{"DisGeNET"} = "Variant-Disease-PMID associations from the DisGeNET database. The output includes the PMID of the publication reporting the Variant-Disease association, DisGeNET score for the Variant-Disease association";
if($self->{disease}) {
$header{"DisGeNET"} .= ", name of associated disease";
}
if($self->{rsid}) {
$header{"DisGeNET"} .= ", dbSNP variant Identifier";
}
$header{"DisGeNET"} .= ". Each value is separated by ':'";
return \%header;
}
sub run {
my ($self, $tva) = @_;
my $vf = $tva->variation_feature;
my $chr = $vf->{chr};
my $end = $vf->{end};
my $start = $vf->{start};
($start, $end) = ($end, $start) if $start > $end;
my @data = @{$self->get_data($chr, $start, $end)};
return {} unless(@data);
my %hash;
my @final_result;
my @final_result_json;
my $format;
if($self->{config}->{output_format} eq 'json' || $self->{config}->{rest}) {
$format = 1;
}
foreach my $data_value (@data) {
my @result;
my %result_json;
my $pmid = $data_value->{pmid};
my $rsid = $data_value->{rsid};
my $score = $data_value->{score};
my $source = $data_value->{source};
if($self->{filter_score}) {
next if($score < $self->{filter_score});
}
if($self->{source_to_filter}) {
my $sources_aux = $self->{source_to_filter};
my $check = check_source($sources_aux, $source);
next if(!$check);
}
if($format) {
$result_json{'pmid'} = $pmid;
$result_json{'score'} = $score;
}
else {
push @result, $pmid;
push @result, $score;
}
if($self->{disease}) {
if($format) {
$result_json{'diseaseName'} = $data_value->{diseaseName};
}
else {
push @result, $data_value->{diseaseName};
}
}
if($self->{rsid}) {
if($format) {
$result_json{'rsid'} = $rsid;
}
else {
push @result, $rsid;
}
}
if($format) {
push @final_result_json, \%result_json;
}
else {
push @final_result, join(':', @result);
}
}
$hash{"DisGeNET"} = [@final_result];
return $format ? {DisGeNET => [@final_result_json]} : \%hash;
}
sub parse_data {
my ($self, $line) = @_;
# Data in file is:
# 'snpId, chromosome, position, DSI, DPI, diseaseId, diseaseName, diseaseType, diseaseClass,
# diseaseSemanticType, score, EI, YearInitial, YearFinal, pmid, source'
my @all_data = split /\t/, $line;
# Delete commas from phenotype/disease description
my $disease = $all_data[6];
if($disease =~ /,/) {
$disease =~ s/,//g;
}
return {
rsid => $all_data[0],
diseaseName => $disease,
score => $all_data[10],
pmid => $all_data[14],
source => $all_data[15]
};
}
sub get_start {
return $_[1]->{start};
}
sub get_end {
return $_[1]->{end};
}
sub check_source {
my $input_sources = shift;
my $var_source = shift;
my $result = 0;
my %hash_sources = map { $_ => 1 } @$input_sources;
if(exists($hash_sources{$var_source})) {
$result = 1;
}
return $result;
}
1;