-
Notifications
You must be signed in to change notification settings - Fork 116
/
LocalID.pm
executable file
·349 lines (252 loc) · 10.4 KB
/
LocalID.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
=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
LocalID
=head1 SYNOPSIS
mv LocalID.pm ~/.vep/Plugins
## first run create database
# EITHER create from Ensembl variation database
# VERY slow but includes variant synonyms, if not required see next command
./vep -i variant_ids.txt --plugin LocalID,create_db=1 -safe
# OR create from cache directory
# faster but does not include synonyms
# parameter passed to from_cache may be full path to cache e.g. $HOME/.vep/homo_sapiens/88_GRCh38
# cache may be tabix converted or in default state (http://www.ensembl.org/info/docs/tools/vep/script/vep_cache.html#convert)
./vep -i variant_ids.txt --plugin LocalID,create_db=1,from_cache=1 -safe
# subsequent runs
./vep -i variant_ids.txt --plugin LocalID
# db file can be specified with db=[file]
# default file name is $HOME/.vep/[species]_[version]_[assembly].variant_ids.sqlite3
./vep -i variant_ids.txt --plugin LocalID,db=my_db_file.txt
=head1 DESCRIPTION
The LocalID plugin allows you to use variant IDs as input without making a database connection.
Requires sqlite3.
A local sqlite3 database is used to look up variant IDs; this is generated either from Ensembl's
public database (very slow, but includes synonyms), or from a VEP cache file (faster, excludes
synonyms).
NB this plugin is NOT compatible with the ensembl-tools variant_effect_predictor.pl version of VEP.
=cut
package LocalID;
use strict;
use warnings;
use Bio::EnsEMBL::Variation::Utils::BaseVepPlugin;
use Bio::EnsEMBL::VEP::Parser::ID;
use Bio::EnsEMBL::VEP::Constants;
use Bio::EnsEMBL::VEP::Utils qw(get_compressed_filehandle);
use base qw(Bio::EnsEMBL::Variation::Utils::BaseVepPlugin);
sub new {
my $class = shift;
my $self = $class->SUPER::new(@_);
my $param_hash = $self->params_to_hash();
my $config = $self->{config};
my $species = $config->{species} || 'homo_sapiens';
my $db;
unless($db = $param_hash->{db}) {
my $version =
$config->{db_version} ||
$config->{cache_version} ||
$Bio::EnsEMBL::VEP::Constants::VEP_VERSION ||
'Bio::EnsEMBL::Registry'->software_version ||
undef;
my $assembly = $config->{assembly};
my $dir = $param_hash->{dir} || $config->{dir};
die("ERROR: Unable to determine software version - if using --offline, add --cache_version [version] or add the ID database name to your --plugin string as \"db=[file]\"\n") unless $version;
die("ERROR: Unable to determine assembly version - if using --offline, add --assembly [version] or add the ID database name to your --plugin string as \"db=[file]\"\n") unless $assembly;
$db = sprintf("%s/%s_%i_%s.variant_ids.sqlite3", $dir, $species, $version, $assembly);
}
# create DB?
$self->create_db($db, $species, $param_hash) if $param_hash->{create_db};
die("ERROR: DB file $db not found - you need to download or create it first, see documentation in plugin file\n") unless -e $db;
$self->config->{_localid_db_file} = $db;
return $self;
}
sub create_db {
my ($self, $db, $species, $param_hash) = @_;
# requites sqlite3 command line tool
die("ERROR: sqlite3 command not found in path\n") unless `which sqlite3` =~ /\/sqlite3/;
my $config = $self->{config};
die("ERROR: DB file $db already exists - remove and re-run to overwrite\n") if -e $db;
print STDERR "## LocalID plugin\n # Creating database of variant IDs - this may take some time\n" unless $config->{quiet};
my $tmpfile = "$db.tmp$$";
open my $tmp_handle, ">$tmpfile" or die "ERROR: Unable to write to $tmpfile\n";
if(my $cache_dir = $param_hash->{from_cache}) {
# attempt to interpret cache dir from command line opts
if($cache_dir eq '1') {
my $version =
$config->{cache_version} ||
$config->{db_version} ||
$Bio::EnsEMBL::VEP::Constants::VEP_VERSION ||
($config->{reg} ? $config->{reg}->software_version : undef);
my $assembly = $config->{assembly};
my $dir = $config->{dir_cache} || $config->{dir};
$cache_dir = "$dir\/$species\/$version\_$assembly";
}
print STDERR " # attempting to create from $cache_dir\n" unless $config->{quiet};
$self->_tmp_file_from_cache($cache_dir, $tmp_handle);
}
else {
print STDERR " # attempting to create from variation database for $species\n" unless $config->{quiet};
$self->_tmp_file_from_var_db($species, $tmp_handle);
}
close $tmp_handle;
# create database
my $dbh = DBI->connect("dbi:SQLite:dbname=$db","","");
$dbh->do("CREATE TABLE ids(id, chr, start, end, alleles, strand)");
# load tmp file into table
print STDERR " # loading database\n" unless $config->{quiet};
my $cmd = qq{sqlite3 $db '.import $tmpfile ids'};
`$cmd 2>&1` and die("ERROR: Failed to import $tmpfile to $db\n");
unlink($tmpfile);
# index
print STDERR " # indexing database\n" unless $config->{quiet};
$dbh->do("CREATE INDEX id_idx ON ids(id)");
print STDERR " # successfully built database $db\n" unless $config->{quiet};
}
sub _tmp_file_from_cache {
my ($self, $cache_dir, $tmp_handle) = @_;
my $config = $self->{config};
die("ERROR: Cache dir $cache_dir not found or not a directory\n") unless -d $cache_dir;
# read info
open INFO, $cache_dir.'/info.txt' or die("ERROR: No info.txt file found in $cache_dir\n");
my %cols;
while(<INFO>) {
next unless /^variation_cols/;
chomp;
my @tmp_cols = split(',', (split("\t", $_))[1]);
$cols{$tmp_cols[$_]} = $_ for 0..$#tmp_cols;
last;
}
close INFO;
# get all chromosome dirs
opendir DIR, $cache_dir or die("ERROR: Could not read dir $cache_dir\n");
my @chrs = grep {-d $cache_dir.'/'.$_ && !/^\./} readdir DIR;
closedir DIR;
foreach my $chr(@chrs) {
opendir CHR, $cache_dir.'/'.$chr;
my @all_files = grep {/var/ && !/\.(tb|cs)i$/} readdir CHR;
closedir CHR;
my @files = grep {/all_vars/} @all_files;
@files = @all_files unless @files;
foreach my $file(@files) {
my $fh = get_compressed_filehandle($cache_dir.'/'.$chr.'/'.$file, 1);
my $delim;
while(<$fh>) {
unless($delim) {
$delim = /\t/ ? "\t" : " ";
}
chomp;
my @split = map {($_ || '') eq '.' ? undef : $_} split($delim);
# id, chr, start, end, alleles, strand
print $tmp_handle join("|",
$split[$cols{variation_name}],
$chr,
$split[$cols{start}],
$split[$cols{end}] || $split[$cols{start}],
$split[$cols{allele_string}] || '',
$split[$cols{strand}] || 1,
)."\n";
}
close $fh;
}
}
}
sub _tmp_file_from_var_db {
my ($self, $species, $tmp_handle) = @_;
my $config = $self->{config};
my $var_dbc = Bio::EnsEMBL::Registry->get_adaptor($species, 'variation', 'variation')->db->dbc;
my $mysql = $var_dbc->prepare(qq{
SELECT v.name, s.name, vf.seq_region_start, vf.seq_region_end, vf.allele_string, vf.seq_region_strand
FROM variation v, variation_feature vf, seq_region s
WHERE v.variation_id = vf.variation_id
AND vf.seq_region_id = s.seq_region_id
}, {mysql_use_result => 1});
my ($i, $c, $s, $e, $a, $d);
$mysql->execute();
$mysql->bind_columns(\$i, \$c, \$s, \$e, \$a, \$d);
print $tmp_handle join("|", ($i, $c, $s, $e, $a, $d))."\n" while $mysql->fetch();
$mysql->finish();
# do synonyms
print STDERR "Processing synonyms\n" unless $config->{quiet};
$mysql = $var_dbc->prepare(qq{
SELECT v.name, s.name, vf.seq_region_start, vf.seq_region_end, vf.allele_string, vf.seq_region_strand
FROM variation_synonym v, variation_feature vf, seq_region s
WHERE v.variation_id = vf.variation_id
AND vf.seq_region_id = s.seq_region_id
}, {mysql_use_result => 1});
$mysql->execute();
$mysql->bind_columns(\$i, \$c, \$s, \$e, \$a, \$d);
print $tmp_handle join("|", ($i, $c, $s, $e, $a, $d))."\n" while $mysql->fetch();
$mysql->finish();
}
sub run {
return {};
}
1;
###########################################
### Redefine methods in existing module ###
###########################################
package Bio::EnsEMBL::VEP::Parser::ID;
no warnings qw(redefine);
sub new {
my $caller = shift;
my $class = ref($caller) || $caller;
my $self = $class->SUPER::new(@_);
return $self;
}
sub create_VariationFeatures {
my $self = shift;
my $parser = $self->parser;
$parser->next();
$self->skip_empty_lines();
return [] unless $parser->{record};
$self->line_number($self->line_number + 1);
my $id = $parser->get_value;
# remove whitespace
$id =~ s/\s+//g;
my $db = $self->id_db;
my $sth = $self->{_id_sth} ||= $db->prepare("SELECT chr, start, end, alleles, strand FROM ids WHERE id = ?");
my $ad = $self->{_var_ad} ||= $self->get_adaptor('variation', 'VariationFeature');
my @vfs;
my ($c, $s, $e, $a, $d);
$sth->execute($id);
$sth->bind_columns(\$c, \$s, \$e, \$a, \$d);
push @vfs, Bio::EnsEMBL::Variation::VariationFeature->new_fast({
start => $s,
end => $e,
allele_string => $a,
strand => $d,
map_weight => 1,
adaptor => $ad,
variation_name => $id,
chr => $c,
}) while $sth->fetch;
$sth->finish();
unless(@vfs) {
$self->warning_msg("WARNING: No mappings found for variant \'$id\'");
return $self->create_VariationFeatures();
}
return $self->post_process_vfs(\@vfs);
}
sub id_db {
my $self = shift;
unless(exists($self->{_id_db})) {
throw("ERROR: ID database not defined or detected - possible plugin compile failure\n") unless my $db = $self->config->{_params}->{_localid_db_file};
throw("ERROR: ID database file $db not found - you need to download or create it first, see documentation in plugin file\n") unless -e $db;
$self->{_id_db} = DBI->connect("dbi:SQLite:dbname=$db","","");
}
return $self->{_id_db};
}
1;