Mercurial > repos > galaxytrakr > hfp_nowayout_awsbatch
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/0.5.0/lib/help/gsatpy.nf Fri May 29 13:37:56 2026 +0000 @@ -0,0 +1,32 @@ +// 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 +} \ No newline at end of file
