-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How we suggest command lining #21
base: public
Are you sure you want to change the base?
Conversation
It's unfortunately not easy to parse this command line using standard option parsing libraries, or perhaps not even possible with some libraries. Named arguments like sourmash lca gather --query --db -- query1.sig query2.sig db1.sig db2.sig where One notable example is C's
One possible solution is to repeat the named option. sourmash lca gather --query=query1.sig --query=query2.sig --db=db1.sig --db=db2.sig
sourmash lca gather -q query1.sig -q query2.sig -d db1.sig -d db2.sig A possible refinement is to make the most common option positional arguments and the other named arguments. sourmash lca gather --db=db1.sig --db=db2.sig query1.sig query2.sig query3.sig query4.sig |
See rendered version
Comments welcome