nf-core/bacass

sample sheet check reports wrong row item

antunderwood opened this issue · 1 comments

In the checks for long reads and fast5 files the wrong file is reported if there is an error

exit 1, "ERROR: Please check input samplesheet -> Long FastQ file does not exist!\n${row.R1}"

Should read

 exit 1, "ERROR: Please check input samplesheet -> Long FastQ file does not exist!\n${row.LongFastQ}"

exit 1, "ERROR: Please check input samplesheet -> Fast5 file does not exist!\n${row.R1}"

Should read

exit 1, "ERROR: Please check input samplesheet -> Fast5 file does not exist!\n${row.Fast5}"

True, thanks for the report, will be fixed in a new version!