Skip to content

Commit

Permalink
adding default BLAZE params to custom config docs
Browse files Browse the repository at this point in the history
  • Loading branch information
lianov authored Jul 1, 2024
1 parent c66bb77 commit 52a676f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,17 @@ process
}
}
//NOTE: reminder that params set in modules.config need to be copied over to a custom config
process
{
withName: '.*:BLAZE'
{
cpus = 24
ext.args = '--threads 30'
ext.args = {
[
"--threads 30",
params.barcode_format == "10X_3v3" ? "--kit-version 3v3" : params.barcode_format == "10X_5v2" ? "--kit-version 5v2" : ""
].join(' ').trim()
}
}
}
Expand Down

0 comments on commit 52a676f

Please sign in to comment.