Skip to content

Commit

Permalink
Merge pull request #927 from Clinical-Genomics/hotfix/qc_collect
Browse files Browse the repository at this point in the history
fix(qc_collect): fixes skip_evaluation option
  • Loading branch information
jemten authored Aug 23, 2019
2 parents a71515d + 4e751b1 commit 0194e1e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
dist: trusty
language: perl
perl:
- "5.26.0"
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [7.1.1]
- Fixed bug when skipping evaluation in QC_collect

## [7.1.0]
- Updated TIDDIT to enable faster processing
Expand Down
2 changes: 1 addition & 1 deletion lib/MIP/Constants.pm
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ BEGIN {
## Constants
## Set MIP version
## Constants
Readonly our $MIP_VERSION => q{v7.1.0};
Readonly our $MIP_VERSION => q{v7.1.1};

## Cli
Readonly our $MOOSEX_APP_SCEEN_WIDTH => 160;
Expand Down
4 changes: 2 additions & 2 deletions lib/MIP/Program/Mip.pm
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ BEGIN {
use base qw{ Exporter };

# Set the version for version checking
our $VERSION = 1.00;
our $VERSION = 1.01;

# Functions and variables which can be optionally exported
our @EXPORT_OK = qw{ mip_qccollect mip_vcfparser };
Expand Down Expand Up @@ -119,7 +119,7 @@ sub mip_qccollect {

if ($skip_evaluation) {

push @commands, q{--skip_evaluation} . $SPACE . $skip_evaluation;
push @commands, q{--skip_evaluation};
}

## Infile
Expand Down
4 changes: 2 additions & 2 deletions t/mip_qccollect.t
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use MIP::Test::Commands qw{ test_function };
use MIP::Test::Fixtures qw{ test_standard_cli };

my $VERBOSE = 1;
our $VERSION = 1.00;
our $VERSION = 1.01;

$VERBOSE = test_standard_cli(
{
Expand Down Expand Up @@ -112,7 +112,7 @@ my %specific_argument = (
},
skip_evaluation => {
input => 1,
expected_output => q{--skip_evaluation 1},
expected_output => q{--skip_evaluation},
},
);

Expand Down

0 comments on commit 0194e1e

Please sign in to comment.