2016-08-03 10:09:20 +02:00
|
|
|
from ..utils cimport bytes2str
|
2016-06-02 19:10:33 +02:00
|
|
|
from .header cimport HeaderFormat
|
|
|
|
from cython.view cimport array as cvarray
|
|
|
|
|
|
|
|
cdef class FastaFormat:
|
|
|
|
|
|
|
|
cdef HeaderFormat headerFormater
|
|
|
|
|
|
|
|
cdef size_t sequenceBufferLength
|
2016-07-03 09:18:52 +02:00
|
|
|
cdef char* sequenceBuffer
|