Skip to content

Commit

Permalink
Make linting happy
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseEspinosa committed Jul 4, 2024
1 parent 90a440a commit 50f1b0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/check_samplesheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def check_samplesheet(file_in, file_out, with_control=False):
sample, fastq_1, fastq_2, replicate = lspl[: len(HEADER) - 2 if with_control else len(HEADER)]
control = lspl[len(HEADER) - 2] if with_control else ""
control_replicate = lspl[len(HEADER) - 1] if with_control else ""

if sample.find(" ") != -1:
print(f"WARNING: Spaces have been replaced by underscores for sample: {sample}")
sample = sample.replace(" ", "_")
Expand Down

0 comments on commit 50f1b0d

Please sign in to comment.