File tree Expand file tree Collapse file tree 6 files changed +17
-23
lines changed
Expand file tree Collapse file tree 6 files changed +17
-23
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33All notable changes to this project will be documented in this file.
44This 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
Original file line number Diff line number Diff 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
8888Readonly our $MOOSEX_APP_SCEEN_WIDTH => 160;
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments