Skip to content

Commit

Permalink
Merge pull request #538 from aparton/bugfix/rsIDsorting97
Browse files Browse the repository at this point in the history
Prevent sorting check for list of rsIDs
  • Loading branch information
at7 authored Jul 23, 2019
2 parents 9a2d6bf + 507e55a commit 306e3f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/Bio/EnsEMBL/VEP/Constants.pm
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ use warnings;
use base qw(Exporter);

our $VEP_VERSION = 97;
our $VEP_SUB_VERSION = 1;
our $VEP_SUB_VERSION = 2;

our @EXPORT_OK = qw(
@FLAG_FIELDS
Expand Down
2 changes: 1 addition & 1 deletion modules/Bio/EnsEMBL/VEP/InputBuffer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ sub next {
else {
push @$buffer, $vf;
$prev_chr = $vf->{chr};
if (!$self->param('no_check_variants_order')) {
if (!$self->param('no_check_variants_order') && $self->param('format') ne 'id') {
# Use a default distance to check if the variant is still in the same region
# even if it's not ordered with the previous variant location: we use the VF start and not the VCF start
# (they can be different when the variant is a deletion for instance and/or when the alleles can be minimised)
Expand Down

0 comments on commit 306e3f4

Please sign in to comment.