Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
Fix wrong value for quote param
Browse files Browse the repository at this point in the history
  • Loading branch information
koenbossers authored Jun 29, 2023
1 parent 9e2926c commit c5dcb07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class SamplesheetConverter {
}
else {
Path fileSamplesheet = Nextflow.file(samplesheetFile) as Path
samplesheetList = fileSamplesheet.splitCsv(header:true, strip:true, sep:delimiter, quote:true)
samplesheetList = fileSamplesheet.splitCsv(header:true, strip:true, sep:delimiter, quote:'"')
}

// Field checks + returning the channels
Expand Down

0 comments on commit c5dcb07

Please sign in to comment.