Skip to content

Commit 443391f

Browse files
authored
Merge pull request #2060 from Clinical-Genomics/release/12.0.2
fixes #2057
2 parents ef074ab + 9996106 commit 443391f

File tree

6 files changed

+17
-23
lines changed

6 files changed

+17
-23
lines changed

643594-miptest_metrics_deliverables.yaml

-3
This file was deleted.

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
This project adheres to [Semantic Versioning](http://semver.org/).
55

6+
## [12.0.2]
7+
8+
- Fixes the relatedness check in mip qccollect
9+
610
## [12.0.1]
711

812
- Adds loqudb and gnomad frequencies to vcf2cytosure filtering

lib/MIP/Constants.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Readonly our %ANALYSIS => (
8282
);
8383

8484
## Set MIP version
85-
Readonly our $MIP_VERSION => q{12.0.1};
85+
Readonly our $MIP_VERSION => q{12.0.2};
8686

8787
## Cli
8888
Readonly our $MOOSEX_APP_SCEEN_WIDTH => 160;

lib/MIP/Recipes/Analysis/Gatk_variantrecalibration.pm

-18
Original file line numberDiff line numberDiff line change
@@ -453,15 +453,6 @@ sub analysis_gatk_variantrecalibration_wes {
453453
}
454454
);
455455

456-
# Used to find order of samples in qccollect downstream
457-
set_recipe_outfile_in_sample_info(
458-
{
459-
path => $outfile_path,
460-
recipe_name => q{pedigree_check},
461-
sample_info_href => $sample_info_href,
462-
}
463-
);
464-
465456
submit_recipe(
466457
{
467458
base_command => $profile_base_command,
@@ -917,15 +908,6 @@ sub analysis_gatk_variantrecalibration_wgs {
917908
}
918909
);
919910

920-
# Used to find order of samples in qccollect downstream
921-
set_recipe_outfile_in_sample_info(
922-
{
923-
path => $outfile_path,
924-
recipe_name => q{pedigree_check},
925-
sample_info_href => $sample_info_href,
926-
}
927-
);
928-
929911
submit_recipe(
930912
{
931913
base_command => $profile_base_command,

lib/MIP/Recipes/Analysis/Plink.pm

+11
Original file line numberDiff line numberDiff line change
@@ -483,6 +483,17 @@ sub analysis_plink {
483483
sample_info_href => $sample_info_href,
484484
}
485485
);
486+
if ($outfile_tag eq q{relation_check}) {
487+
488+
## Used to identify samples in mibs
489+
set_recipe_outfile_in_sample_info(
490+
{
491+
path => $uniq_outfile_path,
492+
recipe_name => q{pedigree_check},
493+
sample_info_href => $sample_info_href,
494+
}
495+
);
496+
}
486497

487498
}
488499

templates/mip_install_config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ container:
125125
mip:
126126
executable:
127127
mip:
128-
uri: docker.io/clinicalgenomics/mip:v12.0.1
128+
uri: docker.io/clinicalgenomics/mip:v12.0.2
129129
multiqc:
130130
executable:
131131
multiqc:

0 commit comments

Comments
 (0)