import: now imports and adds taxids for SILVA and RDP files, added

import of lists, fixed skipping of errors (was not overwriting), and
fixed --no-progress-bar option
This commit is contained in:
mercierc
2021-06-01 09:21:07 +12:00
parent c2f3d90dc1
commit 3e45c34491
4 changed files with 122 additions and 41 deletions

View File

@ -49,7 +49,13 @@ def __addImportInputOption(optionManager):
action="store_const", dest="obi:inputformat",
default=None,
const=b'silva',
help="Input file is in SILVA fasta format")
help="Input file is in SILVA fasta format. If NCBI taxonomy provided with --taxonomy, taxid and scientific name will be added for each sequence.")
group.add_argument('--rdp-input',
action="store_const", dest="obi:inputformat",
default=None,
const=b'rdp',
help="Input file is in RDP training set fasta format. If NCBI taxonomy provided with --taxonomy, taxid and scientific name will be added for each sequence.")
group.add_argument('--embl-input',
action="store_const", dest="obi:inputformat",