11 lines
245 B
Cython
11 lines
245 B
Cython
from ..utils cimport bytes2str
|
|
from .header cimport HeaderFormat
|
|
from cython.view cimport array as cvarray
|
|
|
|
cdef class FastaFormat:
|
|
|
|
cdef HeaderFormat headerFormater
|
|
|
|
cdef size_t sequenceBufferLength
|
|
cdef char* sequenceBuffer
|