You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# configuration of display in snakemake workflow catalog: https://snakemake.github.io/snakemake-workflow-catalog
2
+
1
3
usage:
2
-
software-stack-deployment: # definition of software deployment method (at least one of conda, singularity, or singularity+conda)
3
-
conda: true # whether pipeline works with --use-conda
4
-
singularity: false # whether pipeline works with --use-singularity
5
-
singularity+conda: false # whether pipeline works with --use-singularity --use-conda
6
-
report: true # add this to confirm that the workflow allows to use 'snakemake --report report.zip' to generate a report containing all results and explanations
4
+
mandatory-flags:
5
+
desc: # describe your flags here in a few sentences
6
+
flags: # put your flags here
7
+
software-stack-deployment:
8
+
conda: true # whether pipeline works with '--sdm conda'
9
+
apptainer: false # whether pipeline works with '--sdm apptainer/singularity'
10
+
apptainer+conda: true # whether pipeline works with '--sdm conda apptainer/singularity'
11
+
report: true # whether creation of reports using 'snakemake --report report.zip' is supported
0 commit comments