加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
SameCodon.pm 3.11 KB
一键复制 编辑 原始数据 按行查看 历史
Helen Schuilenburg 提交于 2020-02-25 15:02 . Yearly copyright update
=head1 LICENSE
Copyright [1999-2015] Wellcome Trust Sanger Institute and the EMBL-European Bioinformatics Institute
Copyright [2016-2020] 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
SameCodon
=head1 SYNOPSIS
mv SameCodon.pm ~/.vep/Plugins
./vep -i variations.vcf --plugin SameCodon
=head1 DESCRIPTION
A VEP plugin that reports existing variants that fall in the same codon.
=cut
package SameCodon;
use strict;
use warnings;
use Bio::EnsEMBL::Variation::Utils::BaseVepPlugin;
use base qw(Bio::EnsEMBL::Variation::Utils::BaseVepPlugin);
sub version {
return '3.0';
}
sub feature_types {
return ['Transcript'];
}
sub get_header_info {
return {
SameCodon => "Existing variant IDs that fall in the same codon",
};
}
sub run {
my ($self, $tva) = @_;
if ($self->config->{offline}) {
die "A connection to the database is required to use the plugin SameCodon\n";
}
my $tv = $tva->transcript_variation;
my $vf = $tv->variation_feature;
my ($pep_start, $pep_end) = ($tv->translation_start, $tv->translation_end);
my ($vf_start, $vf_end) = ($vf->start, $vf->end);
return {} unless defined($pep_start) && defined($pep_end);
my $config = $self->{config};
# we need to map the TV start and end coords to the genome
# needs to be done through the mapper in case the codon spans exons
my $mapper = $tv->_mapper();
return {} unless defined($mapper);
my @coords = $mapper->pep2genomic($pep_start, $pep_end);
return {} unless scalar @coords;
return {} if grep {!$_->isa('Bio::EnsEMBL::Mapper::Coordinate')} @coords;
my @results;
# we might get multiple "slices" if the codon that the variant falls in spans exons
foreach my $coord(@coords) {
my ($slice_start, $slice_end) = ($coord->start, $coord->end);
my $sub_slice = $vf->slice->sub_Slice($slice_start, $slice_end);
my $vf_adaptor = $vf->slice->_get_VariationFeatureAdaptor();
push @results,
map {$_->variation_name}
grep {
$_->variation_name ne $vf->variation_name &&
$_->seq_region_start != $vf_start &&
$_->seq_region_end != $vf_end &&
scalar $mapper->genomic2cds($_->seq_region_start, $_->seq_region_end, 1) >= 1
}
@{$vf_adaptor->fetch_all_by_Slice_SO_terms($sub_slice)};
}
return {} unless scalar @results;
return {
SameCodon => join ",", @results
}
}
1;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化