@@ -304,6 +304,7 @@ workflow GATKSVPipelineSingleSample {
304304 RuntimeAttr ? runtime_attr_rewritesrcoords
305305
306306 RuntimeAttr ? runtime_attr_merge_pesr_vcfs
307+ RuntimeAttr ? runtime_attr_get_male_only
307308
308309 ############################################################
309310 ## GenotypeBatch
@@ -773,6 +774,15 @@ workflow GATKSVPipelineSingleSample {
773774 sv_base_docker = sv_base_docker
774775 }
775776
777+ call batchmetrics .GetMaleOnlyVariantIDs {
778+ input :
779+ vcf = ClusterBatch .depth_vcf ,
780+ female_samples = SamplesList .female_samples ,
781+ male_samples = SamplesList .male_samples ,
782+ sv_pipeline_docker = sv_pipeline_docker ,
783+ runtime_attr_override = runtime_attr_get_male_only
784+ }
785+
776786 call SRTest .SRTest as SRTest {
777787 input :
778788 splitfile = GatherBatchEvidence .merged_SR ,
@@ -788,6 +798,7 @@ workflow GATKSVPipelineSingleSample {
788798 samples = SamplesList .samples_file ,
789799 male_samples = SamplesList .male_samples ,
790800 female_samples = SamplesList .female_samples ,
801+ male_only_variant_ids = GetMaleOnlyVariantIDs .male_only_variant_ids ,
791802 run_common = false ,
792803 sv_base_mini_docker = sv_base_mini_docker ,
793804 linux_docker = linux_docker ,
0 commit comments