Skip to content

Commit

Permalink
Fix meta.expected_cells not passing to commnad call (nf-core#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrittoborges committed Sep 13, 2024
1 parent 9829a3d commit 2282422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ process {
ext.args = {
[
"--epochs ${params.cellbender_epochs}",
meta.expected_cells > 0 ? '--expected-cells ${meta.expected_cells}' : ''
meta.expected_cells > 0 ? "--expected-cells ${meta.expected_cells}" : ''
].join(' ').trim()
}

Expand Down

0 comments on commit 2282422

Please sign in to comment.