Skip to content

Commit 802058a

Browse files
committed
updated
1 parent 19ea48a commit 802058a

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

README.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -253,20 +253,24 @@ For example, a profile `config.yaml` can be stored at /home/user/.config/snakema
253253
cores: 40
254254
latency-wait: 20
255255
use-conda: True
256+
use-apptainer: True
256257
keep-going: False
257258
rerun-incomplete: True
258259
printshellcmds: True
259-
cache: True
260260
show-failed-logs: True
261261
```
262262

263-
Snakemake supports between workflow caching, so that certain resource files, such as the Bowtie2 index, can be re-used between different analyses.
264-
265-
To enable this append this line to your `~/.bashrc`:
266-
```shell
267-
export SNAKEMAKE_OUTPUT_CACHE=/path/to/snakemake-cache/
263+
When running on a slurm-based HPC, the following lines can be included in `config.yaml`:
264+
```yaml
265+
executor: slurm
266+
jobs: 100
267+
default-resources:
268+
slurm_partition: icelake
269+
slurm_account: <ACCOUNT>
268270
```
269271

272+
Snakemake supports between workflow caching, so that certain resource files, such as the Bowtie2 index, can be re-used between different analyses.
273+
270274
## Dry-run of the analysis
271275

272276
Before running the actual analyis with your own data, a dry-run can be performed:

0 commit comments

Comments
 (0)