Skip to content

Commit

Permalink
Fix: Bug in passing parameters for publishDir name
Browse files Browse the repository at this point in the history
  • Loading branch information
dileep-kishore committed Mar 11, 2021
1 parent 5f437ee commit 0d7089e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ process flashweave_graph {
input:
set val(id), val(dataset), val(level), file(otu_file) from chnl_otudata
output:
set val(id), file(otu_file), file('*_network.gml') into chnl_graph
set val(id), val(dataset), file(otu_file), file('*_network.gml') into chnl_graph
script:
{{ flashweave }}
}
Expand All @@ -41,7 +41,7 @@ process flashweave_corr {
tag "${id}"
publishDir "${output_dir}/${dataset}", mode: 'copy', overwrite: true
input:
set val(id), file(otu_file), file(network_file) from chnl_graph
set val(id), val(dataset), file(otu_file), file(network_file) from chnl_graph
output:
set val(id), file('*_corr.tsv') into chnl_corr
script:
Expand Down

0 comments on commit 0d7089e

Please sign in to comment.