Skip to content

Commit 9546cbc

Browse files
committed
Snakefile moved to workflow directory
1 parent 3a6c224 commit 9546cbc

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/main.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: snakemake/[email protected]
1818
with:
1919
directory: .test
20-
snakefile: Snakefile
20+
snakefile: workflow/Snakefile
2121
args: "--lint"
2222

2323
Testing:
@@ -32,12 +32,12 @@ jobs:
3232
uses: snakemake/[email protected]
3333
with:
3434
directory: .test
35-
snakefile: Snakefile
35+
snakefile: workflow/Snakefile
3636
args: "--use-conda --show-failed-logs --cores 10 --conda-cleanup-pkgs cache --conda-frontend mamba"
3737

3838
- name: Test report
3939
uses: snakemake/[email protected]
4040
with:
4141
directory: .test
42-
snakefile: Snakefile
42+
snakefile: workflow/Snakefile
4343
args: "--report report.zip"

Snakefile workflow/Snakefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@
3030
# * add header to results of BLAST analysis (rule blast_header) and create plots (rule plots_blast)
3131

3232

33-
include: "workflow/rules/common.smk"
34-
include: "workflow/rules/qc.smk"
35-
include: "workflow/rules/cutadapt.smk"
36-
include: "workflow/rules/noderad.smk"
37-
include: "workflow/rules/evaluation.smk"
33+
include: "rules/common.smk"
34+
include: "rules/qc.smk"
35+
include: "rules/cutadapt.smk"
36+
include: "rules/noderad.smk"
37+
include: "rules/evaluation.smk"
3838

3939
rule all:
4040
input: all_input

0 commit comments

Comments
 (0)