Skip to content

Commit

Permalink
Merge pull request #2060 from Clinical-Genomics/release/12.0.2
Browse files Browse the repository at this point in the history
fixes #2057
  • Loading branch information
jemten authored Oct 24, 2023
2 parents ef074ab + 9996106 commit 443391f
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 23 deletions.
3 changes: 0 additions & 3 deletions 643594-miptest_metrics_deliverables.yaml

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [12.0.2]

- Fixes the relatedness check in mip qccollect

## [12.0.1]

- Adds loqudb and gnomad frequencies to vcf2cytosure filtering
Expand Down
2 changes: 1 addition & 1 deletion lib/MIP/Constants.pm
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Readonly our %ANALYSIS => (
);

## Set MIP version
Readonly our $MIP_VERSION => q{12.0.1};
Readonly our $MIP_VERSION => q{12.0.2};

## Cli
Readonly our $MOOSEX_APP_SCEEN_WIDTH => 160;
Expand Down
18 changes: 0 additions & 18 deletions lib/MIP/Recipes/Analysis/Gatk_variantrecalibration.pm
Original file line number Diff line number Diff line change
Expand Up @@ -453,15 +453,6 @@ sub analysis_gatk_variantrecalibration_wes {
}
);

# Used to find order of samples in qccollect downstream
set_recipe_outfile_in_sample_info(
{
path => $outfile_path,
recipe_name => q{pedigree_check},
sample_info_href => $sample_info_href,
}
);

submit_recipe(
{
base_command => $profile_base_command,
Expand Down Expand Up @@ -917,15 +908,6 @@ sub analysis_gatk_variantrecalibration_wgs {
}
);

# Used to find order of samples in qccollect downstream
set_recipe_outfile_in_sample_info(
{
path => $outfile_path,
recipe_name => q{pedigree_check},
sample_info_href => $sample_info_href,
}
);

submit_recipe(
{
base_command => $profile_base_command,
Expand Down
11 changes: 11 additions & 0 deletions lib/MIP/Recipes/Analysis/Plink.pm
Original file line number Diff line number Diff line change
Expand Up @@ -483,6 +483,17 @@ sub analysis_plink {
sample_info_href => $sample_info_href,
}
);
if ($outfile_tag eq q{relation_check}) {

## Used to identify samples in mibs
set_recipe_outfile_in_sample_info(
{
path => $uniq_outfile_path,
recipe_name => q{pedigree_check},
sample_info_href => $sample_info_href,
}
);
}

}

Expand Down
2 changes: 1 addition & 1 deletion templates/mip_install_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ container:
mip:
executable:
mip:
uri: docker.io/clinicalgenomics/mip:v12.0.1
uri: docker.io/clinicalgenomics/mip:v12.0.2
multiqc:
executable:
multiqc:
Expand Down

0 comments on commit 443391f

Please sign in to comment.