Skip to content

Commit

Permalink
Add suggestions by @mdozmorov
Browse files Browse the repository at this point in the history
  • Loading branch information
apeltzer committed Sep 11, 2023
1 parent c65dc16 commit 21b10e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/check_samplesheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ def check_samplesheet(file_in, file_out):
# Check valid number of columns per row
if len(lspl) != len(header):
print_error(
"Invalid number of columns: found {} columns (header has {})".format(
line_number, len(lspl), len(header)
"Invalid number of columns found - header has {} columns, content has {}. Number of rows {})".format(
len(header), len(lspl), line_number
),
f"Line #{line_number+2}",
line,
Expand Down

0 comments on commit 21b10e9

Please sign in to comment.