Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulthran committed Nov 22, 2023
1 parent bf2bba8 commit 5ffa3f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion workflow/scripts/adapter_removal_paired.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"--cores",
str(snakemake.threads),
]
args += snakemake.config["qc"]["cutadapt_opts"].split(" ")
args += snakemake.config["qc"]["cutadapt_opts"].split(" ") if snakemake.config["qc"]["cutadapt_opts"] else []
args += fwd_adapter_str.split(" ")
args += rev_adapter_str.split(" ")
args += [
Expand Down
2 changes: 1 addition & 1 deletion workflow/scripts/adapter_removal_unpaired.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"--cores",
str(snakemake.threads),
]
args += snakemake.config["qc"]["cutadapt_opts"].split(" ")
args += snakemake.config["qc"]["cutadapt_opts"].split(" ") if snakemake.config["qc"]["cutadapt_opts"] else []
args += fwd_adapter_str.split(" ")
args += rev_adapter_str.split(" ")
args += [
Expand Down

0 comments on commit 5ffa3f0

Please sign in to comment.