Files
obitools3/python/obitools3/libalign/_nws.pxd
Celine Mercier 75a28929a7 Renamed Cython alignment library in an attempt to limit some compilation
bugs potentially involving name conflicts
2018-11-07 16:03:32 +01:00

13 lines
248 B
Cython
Executable File

#cython: language_level=3
from ._dynamic cimport *
cdef class NWS(DynamicProgramming):
cdef double _match
cdef double _mismatch
cdef double matchScore(self,int h, int v)
cdef double doAlignment(self) except? 0