You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use koi but I'm facing a problem with the section Available commands.
Below is my script and command output:
#!/bin/bash#set -x #For development purpose onlyset -o pipefail
source koi/koi
koiname=gwgfscan
koidescription="GWGFScan: A pipeline to perform genome wide identification of gene families of interest"functiongreet {
__addarg "-h""--help""help""optional""""Just a little help on how to run this tool"
__addarg """name""positionalvalue""required""""The name of someone you like"
__addarg "-s""--salutation""storevalue""optional""Hello""The greeting to use"
__addarg "-e""--exclaim""flag""optional""""If include, greeting will be exclaimed"
__parseargs "$@"local exclaim_text=
if [[ $exclaim-eq 1 ]] ;then
exclaim_text='!'fiecho"${salutation}, ${name}${exclaim_text}"
}
__koirun "$@"
Output:
GWGFScan: A pipeline to perform genome wide identification of gene families of interest
Usage:
gwgfscan COMMAND [args]
Available commands:
declare
-fx
_module_raw
greet
help
list
declare
-fx
ml
declare
-fx
module
Hints:
gwgfscan help --verbose Show complete command documentation
gwgfscan COMMAND --help Show individual command documentation
Is there a way to remove these other command options?
Thanks,
Willian
The text was updated successfully, but these errors were encountered:
Hi
I'm trying to use koi but I'm facing a problem with the section Available commands.
Below is my script and command output:
Output:
Is there a way to remove these other command options?
Thanks,
Willian
The text was updated successfully, but these errors were encountered: