Skip to content

Commit

Permalink
make sure all 'rule all's are named 'rule workflow_all' and marked as…
Browse files Browse the repository at this point in the history
… default target
  • Loading branch information
tedil committed May 21, 2024
1 parent 327eba3 commit 4bbee84
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
3 changes: 2 additions & 1 deletion snappy_pipeline/workflows/adapter_trimming/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ localrules:
adapter_trimming_link_out_fastq_run,


rule all:
rule adapter_trimming_all:
input:
wf.get_result_files(),
default_target: True


# House-Keeping ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ localrules:
somatic_gene_fusion_calling_link_out_run,


rule all:
rule somatic_msi_calling_all:
input:
wf.get_result_files(),
default_target: True


# House-Keeping ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
3 changes: 2 additions & 1 deletion snappy_pipeline/workflows/somatic_hla_loh_calling/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,10 @@ localrules:
somatic_hla_loh_calling_link_out_run,


rule all:
rule somatic_hla_loh_calling_all:
input:
wf.get_result_files(),
default_target: True


# House-Keeping ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
3 changes: 2 additions & 1 deletion snappy_pipeline/workflows/somatic_msi_calling/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,10 @@ localrules:
somatic_msi_calling_link_out_run,


rule all:
rule somatic_msi_calling_all:
input:
wf.get_result_files(),
default_target: True


# House-Keeping ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
3 changes: 2 additions & 1 deletion snappy_pipeline/workflows/variant_export_external/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ localrules:
variant_export_external_write_pedigree_run,


rule all:
rule variant_export_external_all:
input:
wf.get_result_files(),
default_target: True


# House-Keeping ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
3 changes: 2 additions & 1 deletion snappy_pipeline/workflows/variant_filtration/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,10 @@ localrules:
variant_filtration_link_out_run,


rule all:
rule variant_filtration_all:
input:
wf.get_result_files(),
default_target: True


# House-Keeping ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
3 changes: 2 additions & 1 deletion snappy_pipeline/workflows/wgs_cnv_export_external/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ localrules:
wgs_cnv_export_external_write_pedigree_run,


rule all:
rule wgs_cnv_export_external_all:
input:
wf.get_result_files(),
default_target: True


# House-Keeping ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
3 changes: 2 additions & 1 deletion snappy_pipeline/workflows/wgs_sv_export_external/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ localrules:
wgs_sv_export_external_write_pedigree_run,


rule all:
rule wgs_sv_export_external_all:
input:
wf.get_result_files(),
default_target: True


# House-Keeping ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit 4bbee84

Please sign in to comment.