Mercurial > repos > kkonganti > cfsan_cronology
view 0.2.0/lib/help/masurcapolca.nf @ 17:b571995ddb51
planemo upload
author | kkonganti |
---|---|
date | Mon, 15 Jul 2024 19:01:29 -0400 |
parents | a5f31c44f8c9 |
children |
line wrap: on
line source
// Help text for `masurca's polca.sh` within CPIPES. def masurcapolcaHelp(params) { Map tool = [:] Map toolspecs = [:] tool.text = [:] tool.helpparams = [:] toolspecs = [ 'masurcapolca_run': [ clihelp: 'Run `polca.sh` from masurca. Default: ' + (params.masurcapolca_run ?: false), cliflag: null, clivalue: null ], 'masurcapolca_n': [ clihelp: 'Do not polish, just create vcf file, evaluate the assembly and exit. ' + "Default: ${params.masurcapolca_n}", cliflag: '-n', clivalue: (params.masurcapolca_n ? ' ' : '') ] ] toolspecs.each { k, v -> tool.text['--' + k] = "${v.clihelp}" tool.helpparams[k] = [ cliflag: "${v.cliflag}", clivalue: v.clivalue ] } return tool }