Skip to content

Commit

Permalink
implement reviewer comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Joon-Klaps committed Oct 16, 2024
1 parent 5c6f57c commit 73352be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ workflow SAMPLESHEET_MAG {
// Throw a warning that only long reads are not supported yet by MAG
ch_list_for_samplesheet_all
.filter{ it.long_reads !="" && it.short_reads_1=="" }
.collect{ log.warn("Standalone long reads are not yet supported by the nf-core/mag pipeline and ARE REMOVED from the samplesheet 'mag-se.csv' \n sample: ${it.sample}" )}
.collect{ log.warn("Standalone long reads are not yet supported by the nf-core/mag pipeline and ARE REMOVED from the samplesheet 'mag-{se,pe}.csv' \n sample: ${it.sample}" )}

channelToSamplesheet(ch_list_for_samplesheet.pe,"${params.outdir}/downstream_samplesheets/mag-pe", format)
channelToSamplesheet(ch_list_for_samplesheet.se, "${params.outdir}/downstream_samplesheets/mag-se", format)
Expand Down

0 comments on commit 73352be

Please sign in to comment.