annotate: fixed a bug where a column type could be wrongly guessed and

switch to version 3.0.1b16
This commit is contained in:
mercierc
2022-03-30 16:32:07 +13:00
parent ce2833c04b
commit f9b99a9397
2 changed files with 5 additions and 1 deletions

View File

@ -16,6 +16,8 @@ from obitools3.dms.capi.obiview cimport NUC_SEQUENCE_COLUMN, \
QUALITY_COLUMN, \
COUNT_COLUMN, \
TAXID_COLUMN
from obitools3.dms.capi.obitypes cimport OBI_STR
from obitools3.dms.column.column cimport Column
import time
import math
@ -187,6 +189,8 @@ def sequenceTaggerGenerator(config, taxo=None):
else:
scn=None
seq[rank]=rtaxid
if "%s_name"%rank not in seq.view:
Column.new_column(seq.view, "%s_name"%rank, OBI_STR)
seq["%s_name"%rank]=scn
if add_rank:

View File

@ -1,5 +1,5 @@
major = 3
minor = 0
serial= '1b15'
serial= '1b16'
version ="%d.%d.%s" % (major,minor,serial)