-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from centre-for-microbiome-research/snakemake_…
…mem_mb_fix snakemake_mqsub: Handle when mem_mb is missing in snakemake v8.
- Loading branch information
Showing
3 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
executor: cluster-generic | ||
cluster-generic-submit-cmd: snakemake_mqsub --segregated-log-files --queue lyra | ||
cluster-generic-status-cmd: snakemake_mqstat | ||
jobs: 10000 | ||
cluster-generic-cancel-cmd: qdel | ||
use-conda: true | ||
conda-frontend: mamba | ||
rerun-incomplete: true # Without this, snakemake will attempt to resume when rerunning a rule, which fails immediately without error |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
executor: cluster-generic | ||
cluster-generic-submit-cmd: snakemake_mqsub --segregated-log-files | ||
cluster-generic-status-cmd: snakemake_mqstat | ||
jobs: 10000 | ||
cluster-generic-cancel-cmd: qdel | ||
use-conda: true | ||
conda-frontend: mamba | ||
rerun-incomplete: true # Without this, snakemake will attempt to resume when rerunning a rule, which fails immediately without error |