Skip to content

Commit

Permalink
Issue #187 | fix cut+paste error, restore FORMAT defs
Browse files Browse the repository at this point in the history
  • Loading branch information
tseemann committed Aug 15, 2018
1 parent c2b119c commit 284ee36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/snippy-vcf_extract_subs
Expand Up @@ -25,7 +25,7 @@ my @keep_info = split m/,/, $info_tags;
my %keep_info = (map { $_ => 1 } @keep_info);

my @keep_format = split m/,/, $format_tags;
my %keep_format = (map { $_ => 1 } @keep_info);
my %keep_format = (map { $_ => 1 } @keep_format);

# . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
# Main
Expand Down
2 changes: 1 addition & 1 deletion perl5/Snippy/Version.pm
Expand Up @@ -4,7 +4,7 @@ use base Exporter;
@EXPORT_OK = qw(version);
%EXPORT_TAGS = ( 'all' => [ @EXPORT_OK ] );

our $VERSION = "4.0.4";
our $VERSION = "4.0.5";

use strict;
use File::Basename;
Expand Down

0 comments on commit 284ee36

Please sign in to comment.