Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ffb33f61a9 | |||
| adbeac9684 | |||
| 4aac47e639 | |||
| 2028c69b3f |
@@ -19,7 +19,7 @@ from os import path
|
||||
|
||||
|
||||
PACKAGE = "OBITools"
|
||||
VERSION = "1.2.2"
|
||||
VERSION = "1.2.3"
|
||||
AUTHOR = 'Eric Coissac'
|
||||
EMAIL = 'eric@coissac.eu'
|
||||
URL = 'metabarcoding.org/obitools'
|
||||
|
||||
+2
-1
@@ -48,7 +48,7 @@ Otherwise,
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
> obiaddtaxids -T species_name -g genus_identified.fasta \\
|
||||
> obiaddtaxids -k species_name -g genus_identified.fasta \\
|
||||
-u unidentified.fasta -d my_ecopcr_database \\
|
||||
my_sequences.fasta > identified.fasta
|
||||
|
||||
@@ -340,6 +340,7 @@ if __name__=='__main__':
|
||||
entries = entryIterator(entries)
|
||||
elif options.db_type == 'UNITE_FULL' :
|
||||
entryIterator = UNITEIterator_FULL
|
||||
entries = entryIterator(entries)
|
||||
elif options.db_type == 'UNITE_GENERAL' :
|
||||
entryIterator = UNITEIterator_GENERAL
|
||||
entries = entryIterator(entries)
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
major = 1
|
||||
minor = 2
|
||||
serial= '2'
|
||||
serial= '3'
|
||||
|
||||
version = "%2d.%02d %s" % (major,minor,serial)
|
||||
|
||||
Reference in New Issue
Block a user