Skip to content

Commit

Permalink
Bugfix/Optimise: move indexing out of align group
Browse files Browse the repository at this point in the history
- otherwise all samples' alignement go in a single group
  (because they share same index)
  • Loading branch information
DrYak authored and Beerenwinkel TechnicalIdentity committed Jul 31, 2023
1 parent 90a3c99 commit 20accef
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions workflow/rules/align.smk
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,6 @@ rule ref_bwa_index:
config.ref_bwa_index["conda"]
benchmark:
"{file}_bwa_index.benchmark"
group:
"align"
resources:
disk_mb=1250,
mem_mb=config.ref_bwa_index["mem"],
Expand Down Expand Up @@ -542,8 +540,6 @@ elif config.general["aligner"] == "bowtie":
config.ref_bowtie_index["conda"]
benchmark:
"references/ref_bowtie_index.benchmark"
group:
"align"
resources:
disk_mb=1250,
mem_mb=config.ref_bowtie_index["mem"],
Expand Down Expand Up @@ -647,8 +643,6 @@ elif config.general["aligner"] == "minimap":
config.ref_minimap_index["conda"]
benchmark:
"references/ref_minimap_index.benchmark"
group:
"align"
resources:
disk_mb=1250,
mem_mb=config.ref_minimap_index["mem"],
Expand Down

0 comments on commit 20accef

Please sign in to comment.