-
Notifications
You must be signed in to change notification settings - Fork 116
/
CADD.pm
318 lines (237 loc) · 8.89 KB
/
CADD.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
=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
CADD
=head1 SYNOPSIS
mv CADD.pm ~/.vep/Plugins
./vep -i variations.vcf --plugin CADD,snv=/FULL_PATH_TO_CADD_FILE/whole_genome_SNVs.tsv.gz,indels=/FULL_PATH_TO_CADD_FILE/InDels.tsv.gz
./vep -i structural_variations.vcf --plugin CADD,sv=/FULL_PATH_TO_CADD_FILE/1000G_phase3_SVs.tsv.gz
./vep -i structural_variations.vcf --plugin CADD,snv=/FULL_PATH_TO_CADD_FILE/whole_genome_SNVs.tsv.gz,indels=/FULL_PATH_TO_CADD_FILE/InDels.tsv.gz,force_annotate=1
=head1 DESCRIPTION
A VEP plugin that retrieves CADD scores for variants from one or more
tabix-indexed CADD data files.
Please cite the CADD publication alongside the VEP if you use this resource:
https://www.ncbi.nlm.nih.gov/pubmed/24487276
The tabix utility must be installed in your path to use this plugin.
The CADD SNV and indels data files (and respective Tabix index files) can be downloaded from -
http://cadd.gs.washington.edu/download
The CADD SV data files (and respective Tabix index files) can be downloaded from -
https://kircherlab.bihealth.org/download/CADD-SV/v1.1/
By default the plugin is designed to not annotate SV variant if a SNV and/or indels CADD
annotation file is provided. Because it can results in too many lines matched from the annotation
files and increase run time exponentially. You can override this behavior by providing
force_annotate=1 which will force the plugin to annotate with the expense of increasing runtime.
The plugin works with all versions of available CADD files. The plugin only
reports scores and does not consider any additional annotations from a CADD
file. It is therefore sufficient to use CADD files without the additional
annotations.
=cut
package CADD;
use strict;
use warnings;
use Bio::EnsEMBL::Variation::Utils::Sequence qw(get_matched_variant_alleles);
use Bio::EnsEMBL::Variation::Utils::BaseVepTabixPlugin;
use base qw(Bio::EnsEMBL::Variation::Utils::BaseVepTabixPlugin);
# List here all columns in headers that should be included
my %SV_TERMS = (
insertion => "INS",
deletion => "DEL",
duplication => "DUP",
);
my %INCLUDE_COLUMNS = (
"PHRED" => {
"name" => "CADD_PHRED",
"description" => 'PHRED-like scaled CADD score.'
},
"RawScore" => {
"name" => "CADD_RAW",
"description" => 'Raw CADD score.'
},
"CADD-SV_PHRED-score" => {
"name" => "CADD_PHRED",
"description" => 'PHRED-like scaled CADD score.'
},
"CADD-SV_Raw-score" => {
"name" => "CADD_RAW",
"description" => 'Raw CADD score.'
}
);
my $NON_COMMERCIAL_USE_CLAUSE = "CADD is only available here for non-commercial use. See CADD website for more information.";
my $ALT_NUM = 0;
sub new {
my $class = shift;
my $self = $class->SUPER::new(@_);
# Test if tabix exists
die "\nERROR: tabix does not seem to be in your path\n" unless `which tabix 2>&1` =~ /tabix$/;
$self->expand_left(0);
$self->expand_right(0);
$self->get_user_params();
my $params = $self->params_to_hash();
my @files;
$self->{non_sv_ann_file} = 0;
# Check files in arguments
if (!keys %$params) {
@files = map { $_ ne "1" ? ($_) : () } @{$self->params};
$self->{force_annotate} = $self->params->[-1] eq "1" ? 1 : 0;
} else {
my @param_keys = keys %{$params};
for my $key ( @param_keys ){
next if $key eq "force_annotate";
push @files, $params->{$key};
$self->{non_sv_ann_file} = 1 if ($key eq "snv" || $key eq "indels");
}
$self->{force_annotate} = $params->{force_annotate} ? 1 : 0;
}
die "\nERROR: No CADD files specified\nTip: Add a file after command, example:\nvep ... --plugin CADD,/FULL_PATH_TO_CADD_FILE/whole_genome_SNVs.tsv.gz\n" unless @files > 0;
$self->add_file($_) for @files;
warn "WARNING: Using snv and/or indels CADD annotation file with structural variant can increase run time exponentially. ".
"Consider creating separate input files for SNV/indels and SV and use appropriate CADD annotation file.\n"
if $self->{force_annotate};
my $assembly = $self->{config}->{assembly};
$self->{header} = ();
foreach my $file (@files) {
open IN, "tabix -f -h ".$file." 1:1-1 |";
my @lines = <IN>;
my @assembly_header_matches = grep { /$assembly/ } @lines if (defined($assembly));
if (!@assembly_header_matches && $assembly) {
die "\nERROR: Assembly is " . $assembly .
" but CADD file does not contain " .
$assembly . " in header.\n";
}
while (my $line = shift @lines) {
next if (rindex $line, "#Chrom", 0);
chomp $line;
$self->{$file} = $line;
}
# Make sure it has a known prefix in header
die "'#Chrom' was not found on header" unless $self->{$file};
my $file_check = 0;
# Conditional header
for (split /\t/, $self->{$file}){
next unless (exists($INCLUDE_COLUMNS{$_}));
$file_check = 1;
$self->{header}{$INCLUDE_COLUMNS{$_}{"name"}} = $INCLUDE_COLUMNS{$_}{"description"} . " " . $NON_COMMERCIAL_USE_CLAUSE;
}
die "\nERROR: $file does not have a known column to be included" unless $file_check;
}
close IN;
return $self;
}
sub variant_feature_types {
return ['VariationFeature', 'StructuralVariationFeature'];
}
sub feature_types {
return ['Feature','Intergenic'];
}
sub get_header_info {
my $self = shift;
return $self->{header}
}
sub run {
my ($self, $tva) = @_;
my $bvf = $tva->base_variation_feature;
my ($start, $end, $allele, $ref, $so_term);
# get allele
if ($bvf->isa("Bio::EnsEMBL::Variation::VariationFeature")){
$start = $bvf->{start};
$end = $bvf->{end};
$allele = $bvf->alt_alleles->[$ALT_NUM];
$ref = $bvf->ref_allele_string;
if (($ALT_NUM + 1) >= scalar(@{$bvf->alt_alleles})) {
$ALT_NUM = 0;
} else {
$ALT_NUM += 1;
};
return {} unless defined($allele) && $allele =~ /^[ACGT-]+$/;
$ALT_NUM = 0; # setting $ALT_NUM = 0
} else {
# Do not annotate sv if there is snv/indels annotation file
return {} if ($self->{non_sv_ann_file} && !$self->{force_annotate});
$start = $bvf->{start} - 1;
$end = $bvf->{end};
$so_term = $bvf->class_SO_term();
$allele = $SV_TERMS{$so_term};
$ref = "-";
};
my @data = @{$self->get_data($bvf->{chr}, $start - 2, $end)};
# Do not annotate if matched lines from annotation file is over threshold
if(scalar @data > 100000 && !$self->{force_annotate}) {
my $location = $bvf->{chr} . "_" . $start . "_" . $end;
warn "WARNING: too many match found (", scalar @data, ") for CADD variant with location $location. No CADD annotation will be made. " .
"Make sure you are not using SNVs/Indels CADD annotation file with structural variant as input. If you still want to annotate please use force_annotate=1.";
return {};
}
foreach (@data) {
my $matches = get_matched_variant_alleles(
{
ref => $ref,
alts => [$allele],
pos => $start,
strand => $bvf->strand
},
{
ref => $_->{ref},
alts => [$_->{alt}],
pos => $_->{start},
}
);
return $_->{result} if (@$matches);
}
return {};
}
sub parse_data {
my ($self, $line, $file) = @_;
my @headers = split /\t/, $self->{$file};
my @values = split /\t/, $line;
my %data = map {$headers[$_] => $values[$_]} (0..(@headers - 1));
my $c = $data{"#Chrom"};
my $s = $data{"Pos"} || $data{"Start"};
my $ref = $data{"Ref"} || "-";
my $alt = $data{"Alt"} || $data{"Type"};
# Conditional result
my %result = ();
foreach (keys %INCLUDE_COLUMNS){
next unless (exists($data{$_}));
$result{$INCLUDE_COLUMNS{$_}{"name"}} = $data{$_};
}
# do VCF-like coord adjustment for mismatched subs
my $end = $data{"End"} || ($s + length($ref)) - 1;
if(length($alt) != length($ref)) {
my $first_ref = substr($ref, 0, 1);
my $first_alt = substr($alt, 0, 1);
if ($first_ref eq $first_alt) {
$s++;
$ref = substr($ref, 1);
$alt = substr($alt, 1);
$ref ||= '-';
$alt ||= '-';
}
}
return {
ref => $ref,
alt => $alt,
start => $s,
end => $end,
result => \%result
};
}
sub get_start {
return $_[1]->{start};
}
sub get_end {
return $_[1]->{end};
}
1;