Skip to content

Commit

Permalink
double unmapping group threads to 32
Browse files Browse the repository at this point in the history
  • Loading branch information
AroneyS committed Apr 9, 2024
1 parent 98fc508 commit 7e5fcb0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions binchicken/workflow/coassemble.smk
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ rule qc_reads:
quality_cutoff = 15,
unqualified_percent_limit = 40,
min_length = 80,
threads: 16
threads: 32
resources:
mem_mb=get_mem_mb,
runtime = lambda wildcards, attempt: 4*60*attempt,
Expand Down Expand Up @@ -520,7 +520,7 @@ rule map_reads:
output:
dir = temp(directory(output_dir + "/mapping/{read}_coverm")),
group: "unmapping"
threads: 16
threads: 32
resources:
mem_mb=get_mem_mb,
runtime = lambda wildcards, attempt: 12*60*attempt,
Expand Down Expand Up @@ -550,7 +550,7 @@ rule filter_bam_files:
reads_1 = lambda wildcards: os.path.basename(config["reads_1"][wildcards.read]) if not config["run_qc"] else wildcards.read + "_1.fastq.gz",
sequence_identity = config["unmapping_max_identity"],
alignment_percent = config["unmapping_max_alignment"],
threads: 16
threads: 32
resources:
mem_mb=get_mem_mb,
runtime = lambda wildcards, attempt: 4*60*attempt,
Expand All @@ -577,7 +577,7 @@ rule bam_to_fastq:
reads_1 = output_dir + "/mapping/{read}_unmapped.1.fq.gz",
reads_2 = output_dir + "/mapping/{read}_unmapped.2.fq.gz",
group: "unmapping"
threads: 16
threads: 32
resources:
mem_mb=get_mem_mb,
runtime = lambda wildcards, attempt: 4*60*attempt,
Expand Down

0 comments on commit 7e5fcb0

Please sign in to comment.