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
Fixes#2684
This PR adds a function that creates an `args` object for a particular
sourmash command - so that you can do something like this:
```python
import sourmash.commands, sourmash.cli
# create args object:
args = sourmash.cli.parse_args(['plot', 'cmp'])
# run 'sourmash plot'
sourmash.commands.plot(args)
```
For convenience, this PR also makes all of the `sourmash sig` functions
available in Python via `sourmash.sig.<fn>`.
ref #2521
and #245
The text was updated successfully, but these errors were encountered: