Skip to content

Commit

Permalink
Merge pull request #107 from sanger-tol/fix_splitCsv_in_fetch_input.nf
Browse files Browse the repository at this point in the history
Fix split csv in fetch input.nf
  • Loading branch information
BethYates authored Jul 31, 2024
2 parents 5420de2 + a8e2bba commit 50e5431
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ General tidy up of the configuration and the pipeline
- Removed some options that were not used or not needed
- All relevant outputs are now copied to the output directory
- Fixed some blast parameters to match the behaviour of the Snakemake pipeline
- Fixed parsing of samplesheets from fetchngs to capture correct data type

### Parameters

Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/input_check.nf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ workflow INPUT_CHECK {
if ( params.fetchngs_samplesheet ) {
FETCHNGSSAMPLESHEET_CHECK ( samplesheet )
.csv
.splitCsv ( header:true, sep:',' )
.splitCsv ( header:true, sep:',', quote:'"' )
.branch { row ->
paired: row.fastq_2
[[id: row.run_accession, row:row], [row.fastq_1, row.fastq_2]]
Expand Down

0 comments on commit 50e5431

Please sign in to comment.