added missing bytes type in _generic_search.ALLOWED_TYPES

This commit is contained in:
Tal Einat 2014-04-12 12:54:47 +03:00
parent 31036827b6
commit 54e166392e
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ cdef struct GenericSearchCandidate:
int start, subseq_index, l_dist, n_subs, n_ins, n_dels
ALLOWED_TYPES = (str,)
ALLOWED_TYPES = (bytes, str,)
try:
from Bio.Seq import Seq
except ImportError: