Taxonomy: added functions to check if a taxonomy already exists in a

DMS, and added taxdump import from a compressed file
This commit is contained in:
Celine Mercier
2018-07-28 16:48:11 +02:00
parent 1de308a856
commit 7f6d1597fc
5 changed files with 120 additions and 12 deletions

View File

@ -165,9 +165,9 @@ def __addTaxdumpInputOption(optionManager):
group = optionManager.add_argument_group("Input format options for taxdump")
group.add_argument('--taxdump',
action="store", dest="obi:taxdump",
default=None,
help="Taxdump path")
action="store_true", dest="obi:taxdump",
default=False,
help="Whether the input is a taxdump")
def addMinimalInputOption(optionManager):
__addInputOption(optionManager)