Closed mbhall88 closed 1 year ago
In the docs for compute it says
compute
-k, --kmer ints ► K-mer size(s). (default [21])
I tried -k 15 21 but that didn't work. How should multiple values be delimited?
-k 15 21
It 's comma-delimited,
-k 15,21
Or setting multiple times
-k 15 -k 21
Ahhh I see. Thanks! Maybe add an example to the docs (and a comment in the --help)?
--help
In the docs for
compute
it saysI tried
-k 15 21
but that didn't work. How should multiple values be delimited?