Skip to content

Commit 2fdc57b

Browse files
author
Leah Kemp
committed
Remove pbrun_genotypegvcf rule - doesn't actually use GPUs
1 parent 6e62500 commit 2fdc57b

File tree

3 files changed

+5
-19
lines changed

3 files changed

+5
-19
lines changed

images/rulegraph_cohort_gpu.png

438 Bytes
Loading

workflow/Snakefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Author: Miles Benton and Leah Kemp
33
Affiliation: ESR
44
Aim: A simple Snakemake workflow to process paired-end sequencing data (WGS) using bwa/GATK4. Designed to be used before vcf_annotation_pipeline.
55
Date created: 2019-08-21
6-
Modified: 2020-09-09
6+
Modified: 2020-10-09
77
"""
88

99
##### Set up #####
@@ -35,7 +35,7 @@ if config['DATA'] == "Cohort" or config['DATA'] == 'cohort':
3535

3636
##### load rules #####
3737

38-
localrules: multiqc, pbrun_fq2bam, pbrun_haplotypecaller_single, pbrun_haplotypecaller_cohort, pbrun_genotypegvcf
38+
localrules: multiqc, pbrun_fq2bam, pbrun_haplotypecaller_single, pbrun_haplotypecaller_cohort
3939

4040
include: "rules/fastqc.smk"
4141

@@ -63,10 +63,10 @@ if (config['DATA'] == "Single" or config['DATA'] == 'single') and (config['GPU_A
6363

6464
if (config['DATA'] == "Cohort" or config['DATA'] == 'cohort') and (config['GPU_ACCELERATED'] == "No" or config['GPU_ACCELERATED'] == "no"):
6565
include: "rules/gatk_HaplotypeCaller_cohort.smk"
66-
include: "rules/gatk_CombineGVCFs.smk"
67-
include: "rules/gatk_GenotypeGVCFs.smk"
6866

6967
if (config['DATA'] == "Cohort" or config['DATA'] == 'cohort') and (config['GPU_ACCELERATED'] == "Yes" or config['GPU_ACCELERATED'] == "yes"):
7068
include: "rules/pbrun_haplotypecaller_cohort.smk"
69+
70+
if (config['DATA'] == "Cohort" or config['DATA'] == 'cohort'):
7171
include: "rules/gatk_CombineGVCFs.smk"
72-
include: "rules/pbrun_genotypegvcf.smk"
72+
include: "rules/gatk_GenotypeGVCFs.smk"

workflow/rules/pbrun_genotypegvcf.smk

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)