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
$ ./launch.sh plugin nf-foo:run
command array: [[]]
$ ./launch.sh plugin nf-foo:run --foo bar
Unknown option: --foo=bar -- Check the available commands and options and syntax with 'help'
Did I miss anything?
The text was updated successfully, but these errors were encountered:
@sfc-gh-hyu my understanding is that anything prefixed by - or -- will currently be treated by nextflow as an option for nextflow itself. You can pass arguments to the plugin command without prefixes, like so:
$ ./launch.sh plugin nf-foo:run bar
command array: [[bar]]
$ ./launch.sh plugin nf-foo:run foo bar
command array: [[foo, bar]]
I am trying to develop a plugin against nextflow, however, it seems that subcommand options is considered as a parent command options:
Here is a simple plugin:
When I run the plugin
Did I miss anything?
The text was updated successfully, but these errors were encountered: