Skip to content

Commit

Permalink
attempted fix for missing channel #27
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed Apr 11, 2018
1 parent e20c401 commit bc378dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frog.nf
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ if (params.inputformat == "folia") {
//group documents into n (=$worker) batches
inputdocuments
.buffer( size: Math.ceil(inputdocuments_counter.count().val / params.workers).toInteger(), remainder: true)
.set(foliainput_batched)
.into(foliainput_batched)

process frog_folia2folia {
publishDir params.outputdir, pattern: "*.xml", mode: 'copy', overwrite: true
Expand Down Expand Up @@ -96,7 +96,7 @@ if (params.inputformat == "folia") {
//group documents into n (=$worker) batches
inputdocuments
.buffer( size: Math.ceil(inputdocuments_counter.count().val / params.workers).toInteger(), remainder: true)
.set(textinput_batched)
.into(textinput_batched)

process frog_text2folia {
publishDir params.outputdir, pattern: "*.xml", mode: 'copy', overwrite: true
Expand Down

0 comments on commit bc378dc

Please sign in to comment.