Skip to content

Commit

Permalink
Merge pull request #100 from phac-nml/HotfixMLST
Browse files Browse the repository at this point in the history
bugfix add --output mlst to Search.py
  • Loading branch information
apetkau authored Sep 27, 2019
2 parents 741c06c + ec65d4c commit a6da633
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.6.1

* Added --output-mlst in Search.py

# Version 0.6.0

* Added [coloredlogs](https://pypi.org/project/coloredlogs/) library to format the output
Expand Down
Binary file modified images/search_command.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion staramr/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.6.0'
__version__ = '0.6.1'
4 changes: 4 additions & 0 deletions staramr/subcommand/Search.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,10 @@ def _setup_args(self, arg_parser):
output_group.add_argument('--output-hits-dir', action='store', dest='hits_output_dir', type=str,
help="The name of the directory to contain the BLAST hit files. Not be be used with '--output-dir'. [None]",
default=None, required=False)
output_group.add_argument('--output-mlst', action='store', dest='output_mlst', type=str,
help="The name of the output file containing the mlst results. Not be be used with '--output-dir'. [None]",
default=None, required=False)


arg_parser.add_argument('files', nargs='+')

Expand Down

0 comments on commit a6da633

Please sign in to comment.