Skip to content

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemSokolov committed Oct 19, 2023
1 parent b80ca42 commit 01fe957
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions config/schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ workflow:
- cellpose-model
- background-method
- flowsom-model
- scanpy-model
- fastpg-model
deprecated:
quantification-mask: "--quant-opts '--masks ...'"
illum: --start-at illumination
Expand Down
2 changes: 1 addition & 1 deletion modules/downstream.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ workflow downstream {
// Determine if there are any custom models specified
inp = Channel.of( mcp.modules['downstream'] )
.flatten()
.map{ it -> String m = "${it.name}Model";
.map{ it -> String m = "${it.name}-model";
tuple(it, mcp.workflow.containsKey(m) ?
file(mcp.workflow[m]) : 'built-in') }
.combine(input)
Expand Down

0 comments on commit 01fe957

Please sign in to comment.