Mercurial > repos > galaxytrakr > hfp_nowayout_awsbatch
view 0.5.0/lib/help/gsatpy.nf @ 0:3c767f9cfd88 draft default tip
planemo upload
| author | galaxytrakr |
|---|---|
| date | Fri, 29 May 2026 13:37:56 +0000 |
| parents | |
| children |
line wrap: on
line source
// Help text for gen_sim_abn_table.py (gsat) within CPIPES. def gsatpyHelp(params) { Map tool = [:] Map toolspecs = [:] tool.text = [:] tool.helpparams = [:] toolspecs = [ 'gsatpy_run': [ clihelp: 'Run the gen_sim_abn_table.py script. Default: ' + (params.gsatpy_run ?: false), cliflag: null, clivalue: null ], 'gsatpy_header': [ clihelp: 'Does the taxonomic summary result files have ' + 'a header line. ' + " Default: ${params.gsatpy_header}", cliflag: '-header', clivalue: (params.gsatpy_header ? ' ' : '') ] ] toolspecs.each { k, v -> tool.text['--' + k] = "${v.clihelp}" tool.helpparams[k] = [ cliflag: "${v.cliflag}", clivalue: v.clivalue ] } return tool }
