Closed jessicalumian closed 1 year ago
Yep!
The argument parser we use, argparse
, will (should?) match to any substring of a long-form argument that uniquely matches that argument - so --ou
should work to match --output-dir
, since there's no other long-form argument that starts with --ou
.
ISTR not supporting -o
explicitly because in most commands, -o
specifies an output filename, not a directory.
closing! extra things working is fine in any case 😆
I just ran the command
sourmash sig split <input> --output DATA/split_sigs_filtered/
without checking help documentation and it worked! However the help message only claims that--output-dir
or--outdir
will work.Maybe it would be worth adding
--output
as a flag for this option? Or you can keep secretly supporting it.I also tried
-o
because I like to break things and that did not work.