Skip to content
This repository was archived by the owner on Dec 31, 2025. It is now read-only.

Commit 9c8f3ae

Browse files
committed
add linter
1 parent 9f6daa2 commit 9c8f3ae

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

  • src/BetterCodeBetterScience/simple_workflow/snakemake_workflow

src/BetterCodeBetterScience/simple_workflow/snakemake_workflow/Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ clean:
99
run:
1010
snakemake --cores 1 --config output_dir=$(OUTPUT_DIR)
1111

12+
lint:
13+
snakemake --lint --cores 1 --config output_dir=$(OUTPUT_DIR)
14+
1215
dryrun:
1316
snakemake --dry-run --cores 1 --config output_dir=$(OUTPUT_DIR)
1417

@@ -17,3 +20,7 @@ report:
1720

1821
graph:
1922
snakemake --rulegraph --config output_dir=$(OUTPUT_DIR) --cores 2 | dot -Tpng -Gdpi=300 > output/rulegraph.png
23+
24+
export-env:
25+
-mkdir envs
26+
micromamba env export -n bettercode > envs/bettercode.yml

0 commit comments

Comments
 (0)