Cython: minor fixes
This commit is contained in:
@ -110,7 +110,7 @@ cdef class Taxonomy(OBIWrapper) :
|
||||
if type(ref) == int :
|
||||
return self.get_taxon_by_taxid(ref)
|
||||
else :
|
||||
raise Exception("Not implemented")
|
||||
raise NotImplementedError()
|
||||
|
||||
|
||||
cpdef Taxon get_taxon_by_taxid(self, int taxid): # TODO check deleted taxon behavior (403122)
|
||||
|
@ -101,7 +101,7 @@ def fastaNucIterator(lineiterator,
|
||||
cdef dict tags
|
||||
cdef list s
|
||||
cdef bytes sequence
|
||||
cdef int lines_to_skip, ionly, read
|
||||
cdef int skipped, ionly, read
|
||||
cdef Nuc_Seq seq
|
||||
|
||||
if only is None:
|
||||
|
Reference in New Issue
Block a user