Skip to content

Commit

Permalink
Merge pull request #89 from tbrittoborges/dev
Browse files Browse the repository at this point in the history
Fix `meta.expected_cells` not passing to commnad call (#88)
  • Loading branch information
nictru authored Sep 13, 2024
2 parents 9829a3d + 2282422 commit fd4a89e
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 fd4a89e

Please sign in to comment.