Skip to content

Commit

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

Please sign in to comment.