Skip to content

Commit

Permalink
Remove pbrun_genotypegvcf rule - doesn't actually use GPUs
Browse files Browse the repository at this point in the history
  • Loading branch information
Leah Kemp committed Oct 9, 2020
1 parent 6e62500 commit 2fdc57b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 19 deletions.
Binary file modified images/rulegraph_cohort_gpu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Author: Miles Benton and Leah Kemp
Affiliation: ESR
Aim: A simple Snakemake workflow to process paired-end sequencing data (WGS) using bwa/GATK4. Designed to be used before vcf_annotation_pipeline.
Date created: 2019-08-21
Modified: 2020-09-09
Modified: 2020-10-09
"""

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

##### load rules #####

localrules: multiqc, pbrun_fq2bam, pbrun_haplotypecaller_single, pbrun_haplotypecaller_cohort, pbrun_genotypegvcf
localrules: multiqc, pbrun_fq2bam, pbrun_haplotypecaller_single, pbrun_haplotypecaller_cohort

include: "rules/fastqc.smk"

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

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

if (config['DATA'] == "Cohort" or config['DATA'] == 'cohort') and (config['GPU_ACCELERATED'] == "Yes" or config['GPU_ACCELERATED'] == "yes"):
include: "rules/pbrun_haplotypecaller_cohort.smk"

if (config['DATA'] == "Cohort" or config['DATA'] == 'cohort'):
include: "rules/gatk_CombineGVCFs.smk"
include: "rules/pbrun_genotypegvcf.smk"
include: "rules/gatk_GenotypeGVCFs.smk"
14 changes: 0 additions & 14 deletions workflow/rules/pbrun_genotypegvcf.smk

This file was deleted.

0 comments on commit 2fdc57b

Please sign in to comment.