forked from Ensembl/VEP_plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpliceAI.pm
316 lines (239 loc) · 9.8 KB
/
SpliceAI.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
=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
SpliceAI
=head1 SYNOPSIS
mv SpliceAI.pm ~/.vep/Plugins
./vep -i variations.vcf --plugin SpliceAI,snv=/path/to/spliceai_snv_.vcf.gz,
indel=/path/to/spliceai_indel_.vcf.gz
=head1 DESCRIPTION
A VEP plugin that retrieves pre-calculated annotations from SpliceAI.
SpliceAI is a deep neural network, developed by Illumina, Inc
that predicts splice junctions from an arbitrary pre-mRNA transcript sequence.
Delta score of a variant, defined as the maximum of (DS_AG, DS_AL, DS_DG, DS_DL),
ranges from 0 to 1 and can be interpreted as the probability of the variant being
splice-altering. The author-suggested cutoffs are:
* 0.2 (high recall)
* 0.5 (recommended)
* 0.8 (high precision)
This plugin is available for both GRCh37 and GRCh38.
More information can be found at:
https://pypi.org/project/spliceai/
Please cite the SpliceAI publication alongside VEP if you use this resource:
https://www.ncbi.nlm.nih.gov/pubmed/30661751
Running options:
(Option 1) By default, this plugin appends all scores from SpliceAI files.
(Option 2) Besides the pre-calculated scores, it can also be specified a score
cutoff between 0 and 1.
Output:
The output includes the gene symbol, delta scores (DS) and delta positions (DP)
for acceptor gain (AG), acceptor loss (AL), donor gain (DG), and donor loss (DL).
For tab the output contains one header 'SpliceAI_pred' with all
the delta scores and positions. The format is:
SYMBOL|DS_AG|DS_AL|DS_DG|DS_DL|DP_AG|DP_AL|DP_DG|DP_DL
For JSON the output is a hash with the following format:
"spliceai":
{"DP_DL":0,"DS_AL":0,"DP_AG":0,"DS_DL":0,"SYMBOL":"X","DS_AG":0,"DP_AL":0,"DP_DG":0,"DS_DG":0}
For VCF output the delta scores and positions are stored in different headers.
The values are 'SpliceAI_pred_xx' being 'xx' the score/position.
Example: 'SpliceAI_pred_DS_AG' is the delta score for acceptor gain.
Gene matching:
SpliceAI can contain scores for multiple genes that overlap a variant,
and VEP can also predict consequences on multiple genes for a given variant.
The plugin only returns SpliceAI scores for the gene symbols that match (if any).
If plugin is run with option 2, the output also contains a flag: 'PASS' if delta score
passes the cutoff, 'FAIL' otherwise.
The following steps are necessary before running this plugin:
The files with the annotations for all possible substitutions (snv), 1 base insertions
and 1-4 base deletions (indel) within genes are available here:
https://basespace.illumina.com/s/otSPW8hnhaZR
GRCh37:
tabix -p vcf spliceai_scores.raw.snv.hg37.vcf.gz
tabix -p vcf spliceai_scores.raw.indel.hg37.vcf.gz
GRCh38:
tabix -p vcf spliceai_scores.raw.snv.hg38.vcf.gz
tabix -p vcf spliceai_scores.raw.indel.hg38.vcf.gz
The plugin can then be run:
./vep -i variations.vcf --plugin SpliceAI,snv=/path/to/spliceai_scores.raw.snv.hg38.vcf.gz,indel=/path/to/spliceai_scores.raw.indel.hg38.vcf.gz
./vep -i variations.vcf --plugin SpliceAI,snv=/path/to/spliceai_scores.raw.snv.hg38.vcf.gz,indel=/path/to/spliceai_scores.raw.indel.hg38.vcf.gz,cutoff=0.5
=cut
package SpliceAI;
use strict;
use warnings;
use List::Util qw(max);
use Bio::EnsEMBL::Variation::Utils::Sequence qw(get_matched_variant_alleles);
use Bio::EnsEMBL::Variation::Utils::BaseVepTabixPlugin;
use Bio::EnsEMBL::Variation::VariationFeature;
use base qw(Bio::EnsEMBL::Variation::Utils::BaseVepTabixPlugin);
my $output_vcf;
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->{snv});
$self->add_file($param_hash->{indel});
if(defined($param_hash->{cutoff})) {
my $cutoff = $param_hash->{cutoff};
if($cutoff < 0 || $cutoff > 1) {
die("ERROR: Cutoff score must be between 0 and 1!\n");
}
$self->{cutoff} = $cutoff;
}
if($self->{config}->{output_format} eq "vcf") {
$output_vcf = 1;
}
return $self;
}
sub feature_types {
return ['Transcript'];
}
sub get_header_info {
my $self = shift;
my %header;
if($output_vcf) {
$header{'SpliceAI_pred_SYMBOL'} = 'SpliceAI gene symbol';
$header{'SpliceAI_pred_DS_AG'} = 'SpliceAI predicted effect on splicing. Delta score for acceptor gain';
$header{'SpliceAI_pred_DS_AL'} = 'SpliceAI predicted effect on splicing. Delta score for acceptor loss';
$header{'SpliceAI_pred_DS_DG'} = 'SpliceAI predicted effect on splicing. Delta score for donor gain';
$header{'SpliceAI_pred_DS_DL'} = 'SpliceAI predicted effect on splicing. Delta score for donor loss';
$header{'SpliceAI_pred_DP_AG'} = 'SpliceAI predicted effect on splicing. Delta position for acceptor gain';
$header{'SpliceAI_pred_DP_AL'} = 'SpliceAI predicted effect on splicing. Delta position for acceptor loss';
$header{'SpliceAI_pred_DP_DG'} = 'SpliceAI predicted effect on splicing. Delta position for donor gain';
$header{'SpliceAI_pred_DP_DL'} = 'SpliceAI predicted effect on splicing. Delta position for donor loss';
}
else {
$header{'SpliceAI_pred'} = 'SpliceAI predicted effect on splicing. These include delta scores (DS) and delta positions (DP) for acceptor gain (AG), acceptor loss (AL), donor gain (DG), and donor loss (DL). Format: SYMBOL|DS_AG|DS_AL|DS_DG|DS_DL|DP_AG|DP_AL|DP_DG|DP_DL';
}
if($self->{cutoff}) {
$header{'SpliceAI_cutoff'} = 'Flag if delta score pass the cutoff (PASS) or if it does not (FAIL)';
}
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)} if(defined $chr);
return {} unless(@data);
my $result_data = '';
my $result_flag;
# Store all SpliceAI results
my %hash_aux;
foreach my $data_value (@data) {
my $ref_allele;
my $alt_allele;
my $new_allele_string = $vf->ref_allele_string.'/'.$tva->variation_feature_seq;
if($vf->ref_allele_string =~ /-/) {
# convert to vcf format to compare the alt alleles
my $vf_2 = Bio::EnsEMBL::Variation::VariationFeature->new
(-start => $start,
-end => $end,
-strand => $vf->{strand},
-allele_string => $new_allele_string
);
my $convert_to_vcf = $vf_2->to_VCF_record;
$ref_allele = ${$convert_to_vcf}[3];
$alt_allele = ${$convert_to_vcf}[4];
}
else {
$ref_allele = $vf->ref_allele_string;
$alt_allele = $tva->variation_feature_seq;
}
my $matches = get_matched_variant_alleles(
{
ref => $ref_allele,
alts => [$alt_allele],
pos => $start,
strand => $vf->strand
},
{
ref => $data_value->{ref},
alts => [$data_value->{alt}],
pos => $data_value->{start},
}
);
if (@$matches) {
my %hash;
if($output_vcf || $self->{config}->{output_format} eq "json" || $self->{config}->{rest}) {
my @data_values = split /\|/, $data_value->{result};
my $prefix ="";
$prefix = "SpliceAI_pred_" if $output_vcf;
$hash{$prefix. 'SYMBOL'} = $data_values[0];
$hash{$prefix. 'DS_AG'} = $data_values[1];
$hash{$prefix. 'DS_AL'} = $data_values[2];
$hash{$prefix. 'DS_DG'} = $data_values[3];
$hash{$prefix. 'DS_DL'} = $data_values[4];
$hash{$prefix. 'DP_AG'} = $data_values[5];
$hash{$prefix. 'DP_AL'} = $data_values[6];
$hash{$prefix. 'DP_DG'} = $data_values[7];
$hash{$prefix. 'DP_DL'} = $data_values[8];
}
else {
$hash{'SpliceAI_pred'} = $data_value->{result};
}
# Add a flag if cutoff is used
if($self->{cutoff}) {
if($data_value->{info} >= $self->{cutoff}) {
$result_flag = 'PASS';
}
else {
$result_flag = 'FAIL';
}
$hash{'SpliceAI_cutoff'} = $result_flag;
}
$hash_aux{$data_value->{gene}} = \%hash;
}
}
return {} unless(%hash_aux);
my $result = {};
# find the SpliceAI gene matching the variant gene symbol, if there is a match
my $gene_symbol = $tva->transcript->{_gene_symbol} || $tva->transcript->{_gene_hgnc};
if(($gene_symbol) && ($hash_aux{$gene_symbol})) {
$result = ($self->{config}->{output_format} eq "json" || $self->{config}->{rest}) ? {SpliceAI => $hash_aux{$gene_symbol}} : $hash_aux{$gene_symbol};
}
return $result;
}
# Parse data from SpliceAI file
sub parse_data {
my ($self, $line) = @_;
my ($chr, $start, $id, $ref, $alt, $qual, $filter, $info) = split /\t/, $line;
$info =~ s/SpliceAI=//;
my @info_splited = split (qr/\|/,$info, 3);
my $allele = $info_splited[0];
my $data = $info_splited[1] . "|" . $info_splited[2];
my $gene = $info_splited[1];
my $max_score;
if($self->{cutoff}){
my @scores = split (qr/\|/,$data);
my @scores_list = @scores[1..4];
$max_score = max(@scores_list);
}
return {
chr => $chr,
start => $start,
ref => $ref,
alt => $alt,
info => $max_score,
result => $data,
gene => $gene,
};
}
1;