File tree 6 files changed +17
-23
lines changed
6 files changed +17
-23
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
5
5
6
+ ## [ 12.0.2]
7
+
8
+ - Fixes the relatedness check in mip qccollect
9
+
6
10
## [ 12.0.1]
7
11
8
12
- 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 => (
82
82
);
83
83
84
84
# # Set MIP version
85
- Readonly our $MIP_VERSION => q{ 12.0.1 } ;
85
+ Readonly our $MIP_VERSION => q{ 12.0.2 } ;
86
86
87
87
# # Cli
88
88
Readonly 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 {
453
453
}
454
454
);
455
455
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
-
465
456
submit_recipe(
466
457
{
467
458
base_command => $profile_base_command ,
@@ -917,15 +908,6 @@ sub analysis_gatk_variantrecalibration_wgs {
917
908
}
918
909
);
919
910
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
-
929
911
submit_recipe(
930
912
{
931
913
base_command => $profile_base_command ,
Original file line number Diff line number Diff line change @@ -483,6 +483,17 @@ sub analysis_plink {
483
483
sample_info_href => $sample_info_href ,
484
484
}
485
485
);
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
+ }
486
497
487
498
}
488
499
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ container:
125
125
mip :
126
126
executable :
127
127
mip :
128
- uri : docker.io/clinicalgenomics/mip:v12.0.1
128
+ uri : docker.io/clinicalgenomics/mip:v12.0.2
129
129
multiqc :
130
130
executable :
131
131
multiqc :
You can’t perform that action at this time.
0 commit comments