Skip to content

Commit

Permalink
fix: update resource config for bcl2fastq
Browse files Browse the repository at this point in the history
  • Loading branch information
rroutsong committed Feb 2, 2024
1 parent d1d46e1 commit 74c84e8
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions workflow/demux.smk
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,16 @@ rule bcl2fastq:
out_dir = config["out_to"] + "/demux",
container: config["resources"]["sif"] + "bcl2fastq.sif",
log: config["out_to"] + "/logs/bcl2fastq/" + config["run_ids"] + "_" + config["project"] + ".log",
threads: 26
threads: 75
resources:
mem_mb = "32G",
slurm_partition = "quick",
runtime = 60*4,
tasks = 1,
disk_mb = 5*1024
mem_mb = int(64e3),
shell:
"""
bcl2fastq \
--sample-sheet {input.samplesheet} \
--runfolder-dir {input.run_dir} \
--min-log-level=TRACE \
-r 8 -p 8 -w 8 \
-r 16 -p 40 -w 16 \
--fastq-compression-level 9 \
--no-lane-splitting \
-o {params.out_dir}
Expand Down

0 comments on commit 74c84e8

Please sign in to comment.