Skip to content

Commit

Permalink
fix: change string formatting, GH Actions is adding whitespaces for r…
Browse files Browse the repository at this point in the history
…easonsnakefmt workflow/!
  • Loading branch information
ftabaro committed Mar 7, 2024
1 parent 546e39d commit 632f1b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -321,15 +321,15 @@ def get_fastqc(wildcards):
os.path.join(
raw_reads_folder,
wildcards.serie,
f"{sample.strip()}{m[0]}.{ext}",
sample.strip() + m[0] + "." + ext,
)
for sample in s
]
m2 = [
os.path.join(
raw_reads_folder,
wildcards.serie,
f"{sample.strip()}{m[1]}.{ext}",
sample.strip() + m[1] + "." + ext,
)
for sample in s
]
Expand Down

0 comments on commit 632f1b0

Please sign in to comment.