Skip to content

Commit

Permalink
Merge pull request #980 from Clinical-Genomics/hotfix/vcfparser
Browse files Browse the repository at this point in the history
Hotfix/vcfparser
  • Loading branch information
henrikstranneheim authored Sep 11, 2019
2 parents ada7077 + 4149e7b commit 3e5cd42
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [7.1.4]
- Fix bug in outfile_path when mitochondria contig is not part of gene panel

## [7.1.3]
- Increased sv_varianteffectpredictor memory parameter 8 -> 9 Gb

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.3};
Readonly our $MIP_VERSION => q{v7.1.4};

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

# Set the version for version checking
our $VERSION = 1.15;
our $VERSION = 1.16;

# Functions and variables which can be optionally exported
our @EXPORT_OK =
Expand Down Expand Up @@ -1224,7 +1224,6 @@ sub _add_all_mt_var_from_research_to_clinical {
strict_type => 1,
},
outfile_path => {
defined => 1,
required => 1,
store => \$outfile_path,
strict_type => 1,
Expand All @@ -1233,6 +1232,8 @@ sub _add_all_mt_var_from_research_to_clinical {

check( $tmpl, $arg_href, 1 ) or croak q{Could not parse arguments!};

return if ( not defined $outfile_path );

if ( $add_all_mt_var and $contig =~ / MT | M /sxm ) {

say {$FILEHANDLE} q{## Replacing clinical MT variants with research MT variants};
Expand Down

0 comments on commit 3e5cd42

Please sign in to comment.