Skip to content

Commit

Permalink
Updates regex * -> ** [traverse nested folders]
Browse files Browse the repository at this point in the history
  • Loading branch information
cgpu committed Oct 6, 2021
1 parent e66ab54 commit 6cc20ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ numberRepetitionsForProcessA = params.repsProcessA
numberFilesForProcessA = params.filesProcessA
processAWriteToDiskMb = params.processAWriteToDiskMb
processAInput = Channel.from([1] * numberRepetitionsForProcessA)
processAInputFiles = Channel.fromPath("${params.dataLocation}/*${params.fileSuffix}").take( numberRepetitionsForProcessA )
processAInputFiles = Channel.fromPath("${params.dataLocation}/**${params.fileSuffix}").take( numberRepetitionsForProcessA )

process processA {
publishDir "${params.output}/${task.hash}/", mode: 'copy'
Expand Down

0 comments on commit 6cc20ea

Please sign in to comment.