/* Generated by Cython 0.17.2 on Mon Sep 23 10:07:33 2013 */ #define PY_SSIZE_T_CLEAN #include "Python.h" #ifndef Py_PYTHON_H #error Python headers needed to compile C extensions, please install development version of Python. #elif PY_VERSION_HEX < 0x02040000 #error Cython requires Python 2.4+. #else #include /* For offsetof */ #ifndef offsetof #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) #endif #if !defined(WIN32) && !defined(MS_WINDOWS) #ifndef __stdcall #define __stdcall #endif #ifndef __cdecl #define __cdecl #endif #ifndef __fastcall #define __fastcall #endif #endif #ifndef DL_IMPORT #define DL_IMPORT(t) t #endif #ifndef DL_EXPORT #define DL_EXPORT(t) t #endif #ifndef PY_LONG_LONG #define PY_LONG_LONG LONG_LONG #endif #ifndef Py_HUGE_VAL #define Py_HUGE_VAL HUGE_VAL #endif #ifdef PYPY_VERSION #define CYTHON_COMPILING_IN_PYPY 1 #define CYTHON_COMPILING_IN_CPYTHON 0 #else #define CYTHON_COMPILING_IN_PYPY 0 #define CYTHON_COMPILING_IN_CPYTHON 1 #endif #if PY_VERSION_HEX < 0x02050000 typedef int Py_ssize_t; #define PY_SSIZE_T_MAX INT_MAX #define PY_SSIZE_T_MIN INT_MIN #define PY_FORMAT_SIZE_T "" #define CYTHON_FORMAT_SSIZE_T "" #define PyInt_FromSsize_t(z) PyInt_FromLong(z) #define PyInt_AsSsize_t(o) __Pyx_PyInt_AsInt(o) #define PyNumber_Index(o) ((PyNumber_Check(o) && !PyFloat_Check(o)) ? PyNumber_Int(o) : \ (PyErr_Format(PyExc_TypeError, \ "expected index value, got %.200s", Py_TYPE(o)->tp_name), \ (PyObject*)0)) #define __Pyx_PyIndex_Check(o) (PyNumber_Check(o) && !PyFloat_Check(o) && \ !PyComplex_Check(o)) #define PyIndex_Check __Pyx_PyIndex_Check #define PyErr_WarnEx(category, message, stacklevel) PyErr_Warn(category, message) #define __PYX_BUILD_PY_SSIZE_T "i" #else #define __PYX_BUILD_PY_SSIZE_T "n" #define CYTHON_FORMAT_SSIZE_T "z" #define __Pyx_PyIndex_Check PyIndex_Check #endif #if PY_VERSION_HEX < 0x02060000 #define Py_REFCNT(ob) (((PyObject*)(ob))->ob_refcnt) #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size) #define PyVarObject_HEAD_INIT(type, size) \ PyObject_HEAD_INIT(type) size, #define PyType_Modified(t) typedef struct { void *buf; PyObject *obj; Py_ssize_t len; Py_ssize_t itemsize; int readonly; int ndim; char *format; Py_ssize_t *shape; Py_ssize_t *strides; Py_ssize_t *suboffsets; void *internal; } Py_buffer; #define PyBUF_SIMPLE 0 #define PyBUF_WRITABLE 0x0001 #define PyBUF_FORMAT 0x0004 #define PyBUF_ND 0x0008 #define PyBUF_STRIDES (0x0010 | PyBUF_ND) #define PyBUF_C_CONTIGUOUS (0x0020 | PyBUF_STRIDES) #define PyBUF_F_CONTIGUOUS (0x0040 | PyBUF_STRIDES) #define PyBUF_ANY_CONTIGUOUS (0x0080 | PyBUF_STRIDES) #define PyBUF_INDIRECT (0x0100 | PyBUF_STRIDES) #define PyBUF_RECORDS (PyBUF_STRIDES | PyBUF_FORMAT | PyBUF_WRITABLE) #define PyBUF_FULL (PyBUF_INDIRECT | PyBUF_FORMAT | PyBUF_WRITABLE) typedef int (*getbufferproc)(PyObject *, Py_buffer *, int); typedef void (*releasebufferproc)(PyObject *, Py_buffer *); #endif #if PY_MAJOR_VERSION < 3 #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ PyCode_New(a, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) #else #define __Pyx_BUILTIN_MODULE_NAME "builtins" #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) \ PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) #endif #if PY_MAJOR_VERSION < 3 && PY_MINOR_VERSION < 6 #define PyUnicode_FromString(s) PyUnicode_Decode(s, strlen(s), "UTF-8", "strict") #endif #if PY_MAJOR_VERSION >= 3 #define Py_TPFLAGS_CHECKTYPES 0 #define Py_TPFLAGS_HAVE_INDEX 0 #endif #if (PY_VERSION_HEX < 0x02060000) || (PY_MAJOR_VERSION >= 3) #define Py_TPFLAGS_HAVE_NEWBUFFER 0 #endif #if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) #define CYTHON_PEP393_ENABLED 1 #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ? \ 0 : _PyUnicode_Ready((PyObject *)(op))) #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) #else #define CYTHON_PEP393_ENABLED 0 #define __Pyx_PyUnicode_READY(op) (0) #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) #define __Pyx_PyUnicode_READ(k, d, i) ((k=k), (Py_UCS4)(((Py_UNICODE*)d)[i])) #endif #if PY_MAJOR_VERSION >= 3 #define PyBaseString_Type PyUnicode_Type #define PyStringObject PyUnicodeObject #define PyString_Type PyUnicode_Type #define PyString_Check PyUnicode_Check #define PyString_CheckExact PyUnicode_CheckExact #endif #if PY_VERSION_HEX < 0x02060000 #define PyBytesObject PyStringObject #define PyBytes_Type PyString_Type #define PyBytes_Check PyString_Check #define PyBytes_CheckExact PyString_CheckExact #define PyBytes_FromString PyString_FromString #define PyBytes_FromStringAndSize PyString_FromStringAndSize #define PyBytes_FromFormat PyString_FromFormat #define PyBytes_DecodeEscape PyString_DecodeEscape #define PyBytes_AsString PyString_AsString #define PyBytes_AsStringAndSize PyString_AsStringAndSize #define PyBytes_Size PyString_Size #define PyBytes_AS_STRING PyString_AS_STRING #define PyBytes_GET_SIZE PyString_GET_SIZE #define PyBytes_Repr PyString_Repr #define PyBytes_Concat PyString_Concat #define PyBytes_ConcatAndDel PyString_ConcatAndDel #endif #if PY_VERSION_HEX < 0x02060000 #define PySet_Check(obj) PyObject_TypeCheck(obj, &PySet_Type) #define PyFrozenSet_Check(obj) PyObject_TypeCheck(obj, &PyFrozenSet_Type) #endif #ifndef PySet_CheckExact #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) #endif #define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) #if PY_MAJOR_VERSION >= 3 #define PyIntObject PyLongObject #define PyInt_Type PyLong_Type #define PyInt_Check(op) PyLong_Check(op) #define PyInt_CheckExact(op) PyLong_CheckExact(op) #define PyInt_FromString PyLong_FromString #define PyInt_FromUnicode PyLong_FromUnicode #define PyInt_FromLong PyLong_FromLong #define PyInt_FromSize_t PyLong_FromSize_t #define PyInt_FromSsize_t PyLong_FromSsize_t #define PyInt_AsLong PyLong_AsLong #define PyInt_AS_LONG PyLong_AS_LONG #define PyInt_AsSsize_t PyLong_AsSsize_t #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask #endif #if PY_MAJOR_VERSION >= 3 #define PyBoolObject PyLongObject #endif #if PY_VERSION_HEX < 0x03020000 typedef long Py_hash_t; #define __Pyx_PyInt_FromHash_t PyInt_FromLong #define __Pyx_PyInt_AsHash_t PyInt_AsLong #else #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t #endif #if (PY_MAJOR_VERSION < 3) || (PY_VERSION_HEX >= 0x03010300) #define __Pyx_PySequence_GetSlice(obj, a, b) PySequence_GetSlice(obj, a, b) #define __Pyx_PySequence_SetSlice(obj, a, b, value) PySequence_SetSlice(obj, a, b, value) #define __Pyx_PySequence_DelSlice(obj, a, b) PySequence_DelSlice(obj, a, b) #else #define __Pyx_PySequence_GetSlice(obj, a, b) (unlikely(!(obj)) ? \ (PyErr_SetString(PyExc_SystemError, "null argument to internal routine"), (PyObject*)0) : \ (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_GetSlice(obj, a, b)) : \ (PyErr_Format(PyExc_TypeError, "'%.200s' object is unsliceable", (obj)->ob_type->tp_name), (PyObject*)0))) #define __Pyx_PySequence_SetSlice(obj, a, b, value) (unlikely(!(obj)) ? \ (PyErr_SetString(PyExc_SystemError, "null argument to internal routine"), -1) : \ (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_SetSlice(obj, a, b, value)) : \ (PyErr_Format(PyExc_TypeError, "'%.200s' object doesn't support slice assignment", (obj)->ob_type->tp_name), -1))) #define __Pyx_PySequence_DelSlice(obj, a, b) (unlikely(!(obj)) ? \ (PyErr_SetString(PyExc_SystemError, "null argument to internal routine"), -1) : \ (likely((obj)->ob_type->tp_as_mapping) ? (PySequence_DelSlice(obj, a, b)) : \ (PyErr_Format(PyExc_TypeError, "'%.200s' object doesn't support slice deletion", (obj)->ob_type->tp_name), -1))) #endif #if PY_MAJOR_VERSION >= 3 #define PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : PyInstanceMethod_New(func)) #endif #if PY_VERSION_HEX < 0x02050000 #define __Pyx_GetAttrString(o,n) PyObject_GetAttrString((o),((char *)(n))) #define __Pyx_SetAttrString(o,n,a) PyObject_SetAttrString((o),((char *)(n)),(a)) #define __Pyx_DelAttrString(o,n) PyObject_DelAttrString((o),((char *)(n))) #else #define __Pyx_GetAttrString(o,n) PyObject_GetAttrString((o),(n)) #define __Pyx_SetAttrString(o,n,a) PyObject_SetAttrString((o),(n),(a)) #define __Pyx_DelAttrString(o,n) PyObject_DelAttrString((o),(n)) #endif #if PY_VERSION_HEX < 0x02050000 #define __Pyx_NAMESTR(n) ((char *)(n)) #define __Pyx_DOCSTR(n) ((char *)(n)) #else #define __Pyx_NAMESTR(n) (n) #define __Pyx_DOCSTR(n) (n) #endif #if PY_MAJOR_VERSION >= 3 #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) #else #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) #endif #ifndef __PYX_EXTERN_C #ifdef __cplusplus #define __PYX_EXTERN_C extern "C" #else #define __PYX_EXTERN_C extern #endif #endif #if defined(WIN32) || defined(MS_WINDOWS) #define _USE_MATH_DEFINES #endif #include #define __PYX_HAVE__cerrormodel #define __PYX_HAVE_API__cerrormodel #include "stdlib.h" #include "tandem.h" #ifdef _OPENMP #include #endif /* _OPENMP */ #ifdef PYREX_WITHOUT_ASSERTIONS #define CYTHON_WITHOUT_ASSERTIONS #endif /* inline attribute */ #ifndef CYTHON_INLINE #if defined(__GNUC__) #define CYTHON_INLINE __inline__ #elif defined(_MSC_VER) #define CYTHON_INLINE __inline #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L #define CYTHON_INLINE inline #else #define CYTHON_INLINE #endif #endif /* unused attribute */ #ifndef CYTHON_UNUSED # if defined(__GNUC__) # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) # define CYTHON_UNUSED __attribute__ ((__unused__)) # else # define CYTHON_UNUSED # endif # elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) # define CYTHON_UNUSED __attribute__ ((__unused__)) # else # define CYTHON_UNUSED # endif #endif typedef struct {PyObject **p; char *s; const long n; const char* encoding; const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; /*proto*/ /* Type Conversion Predeclarations */ #define __Pyx_PyBytes_FromUString(s) PyBytes_FromString((char*)s) #define __Pyx_PyBytes_AsUString(s) ((unsigned char*) PyBytes_AsString(s)) #define __Pyx_Owned_Py_None(b) (Py_INCREF(Py_None), Py_None) #define __Pyx_PyBool_FromLong(b) ((b) ? (Py_INCREF(Py_True), Py_True) : (Py_INCREF(Py_False), Py_False)) static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); static CYTHON_INLINE PyObject* __Pyx_PyNumber_Int(PyObject* x); static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); static CYTHON_INLINE size_t __Pyx_PyInt_AsSize_t(PyObject*); #if CYTHON_COMPILING_IN_CPYTHON #define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) #else #define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) #endif #define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) #ifdef __GNUC__ /* Test for GCC > 2.95 */ #if __GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95)) #define likely(x) __builtin_expect(!!(x), 1) #define unlikely(x) __builtin_expect(!!(x), 0) #else /* __GNUC__ > 2 ... */ #define likely(x) (x) #define unlikely(x) (x) #endif /* __GNUC__ > 2 ... */ #else /* __GNUC__ */ #define likely(x) (x) #define unlikely(x) (x) #endif /* __GNUC__ */ static PyObject *__pyx_m; static PyObject *__pyx_b; static PyObject *__pyx_empty_tuple; static PyObject *__pyx_empty_bytes; static int __pyx_lineno; static int __pyx_clineno = 0; static const char * __pyx_cfilenm= __FILE__; static const char *__pyx_filename; static const char *__pyx_f[] = { "cerrormodel.pyx", }; /*--- Type declarations ---*/ #ifndef CYTHON_REFNANNY #define CYTHON_REFNANNY 0 #endif #if CYTHON_REFNANNY typedef struct { void (*INCREF)(void*, PyObject*, int); void (*DECREF)(void*, PyObject*, int); void (*GOTREF)(void*, PyObject*, int); void (*GIVEREF)(void*, PyObject*, int); void* (*SetupContext)(const char*, int, const char*); void (*FinishContext)(void**); } __Pyx_RefNannyAPIStruct; static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); /*proto*/ #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; #ifdef WITH_THREAD #define __Pyx_RefNannySetupContext(name, acquire_gil) \ if (acquire_gil) { \ PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure(); \ __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__); \ PyGILState_Release(__pyx_gilstate_save); \ } else { \ __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__); \ } #else #define __Pyx_RefNannySetupContext(name, acquire_gil) \ __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) #endif #define __Pyx_RefNannyFinishContext() \ __Pyx_RefNanny->FinishContext(&__pyx_refnanny) #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) #else #define __Pyx_RefNannyDeclarations #define __Pyx_RefNannySetupContext(name, acquire_gil) #define __Pyx_RefNannyFinishContext() #define __Pyx_INCREF(r) Py_INCREF(r) #define __Pyx_DECREF(r) Py_DECREF(r) #define __Pyx_GOTREF(r) #define __Pyx_GIVEREF(r) #define __Pyx_XINCREF(r) Py_XINCREF(r) #define __Pyx_XDECREF(r) Py_XDECREF(r) #define __Pyx_XGOTREF(r) #define __Pyx_XGIVEREF(r) #endif /* CYTHON_REFNANNY */ #define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) #define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) static PyObject *__Pyx_GetName(PyObject *dict, PyObject *name); /*proto*/ #if PY_MAJOR_VERSION >= 3 static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) { PyObject *value; value = PyDict_GetItemWithError(d, key); if (unlikely(!value)) { if (!PyErr_Occurred()) PyErr_SetObject(PyExc_KeyError, key); return NULL; } Py_INCREF(value); return value; } #else #define __Pyx_PyDict_GetItem(d, key) PyObject_GetItem(d, key) #endif #if CYTHON_COMPILING_IN_CPYTHON static CYTHON_INLINE int __Pyx_PyList_Append(PyObject* list, PyObject* x) { PyListObject* L = (PyListObject*) list; Py_ssize_t len = Py_SIZE(list); if (likely(L->allocated > len)) { Py_INCREF(x); PyList_SET_ITEM(list, len, x); Py_SIZE(list) = len+1; return 0; } return PyList_Append(list, x); } #else #define __Pyx_PyList_Append(L,x) PyList_Append(L,x) #endif static PyObject* __Pyx_PyDict_GetItemDefault(PyObject* d, PyObject* key, PyObject* default_value) { PyObject* value; #if PY_MAJOR_VERSION >= 3 value = PyDict_GetItemWithError(d, key); if (unlikely(!value)) { if (unlikely(PyErr_Occurred())) return NULL; value = default_value; } Py_INCREF(value); #else if (PyString_CheckExact(key) || PyUnicode_CheckExact(key) || PyInt_CheckExact(key)) { value = PyDict_GetItem(d, key); if (unlikely(!value)) { value = default_value; } Py_INCREF(value); } else { PyObject *m; m = __Pyx_GetAttrString(d, "get"); if (!m) return NULL; value = PyObject_CallFunctionObjArgs(m, key, (default_value == Py_None) ? NULL : default_value, NULL); Py_DECREF(m); } #endif return value; } static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Generic(PyObject *o, PyObject* j) { PyObject *r; if (!j) return NULL; r = PyObject_GetItem(o, j); Py_DECREF(j); return r; } #define __Pyx_GetItemInt_List(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ __Pyx_GetItemInt_List_Fast(o, i) : \ __Pyx_GetItemInt_Generic(o, to_py_func(i))) static CYTHON_INLINE PyObject *__Pyx_GetItemInt_List_Fast(PyObject *o, Py_ssize_t i) { #if CYTHON_COMPILING_IN_CPYTHON if (likely((0 <= i) & (i < PyList_GET_SIZE(o)))) { PyObject *r = PyList_GET_ITEM(o, i); Py_INCREF(r); return r; } else if ((-PyList_GET_SIZE(o) <= i) & (i < 0)) { PyObject *r = PyList_GET_ITEM(o, PyList_GET_SIZE(o) + i); Py_INCREF(r); return r; } return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); #else return PySequence_GetItem(o, i); #endif } #define __Pyx_GetItemInt_Tuple(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ __Pyx_GetItemInt_Tuple_Fast(o, i) : \ __Pyx_GetItemInt_Generic(o, to_py_func(i))) static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Tuple_Fast(PyObject *o, Py_ssize_t i) { #if CYTHON_COMPILING_IN_CPYTHON if (likely((0 <= i) & (i < PyTuple_GET_SIZE(o)))) { PyObject *r = PyTuple_GET_ITEM(o, i); Py_INCREF(r); return r; } else if ((-PyTuple_GET_SIZE(o) <= i) & (i < 0)) { PyObject *r = PyTuple_GET_ITEM(o, PyTuple_GET_SIZE(o) + i); Py_INCREF(r); return r; } return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); #else return PySequence_GetItem(o, i); #endif } #define __Pyx_GetItemInt(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ __Pyx_GetItemInt_Fast(o, i) : \ __Pyx_GetItemInt_Generic(o, to_py_func(i))) static CYTHON_INLINE PyObject *__Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i) { #if CYTHON_COMPILING_IN_CPYTHON if (PyList_CheckExact(o)) { Py_ssize_t n = (likely(i >= 0)) ? i : i + PyList_GET_SIZE(o); if (likely((n >= 0) & (n < PyList_GET_SIZE(o)))) { PyObject *r = PyList_GET_ITEM(o, n); Py_INCREF(r); return r; } } else if (PyTuple_CheckExact(o)) { Py_ssize_t n = (likely(i >= 0)) ? i : i + PyTuple_GET_SIZE(o); if (likely((n >= 0) & (n < PyTuple_GET_SIZE(o)))) { PyObject *r = PyTuple_GET_ITEM(o, n); Py_INCREF(r); return r; } } else { /* inlined PySequence_GetItem() */ PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; if (likely(m && m->sq_item)) { if (unlikely(i < 0) && likely(m->sq_length)) { Py_ssize_t l = m->sq_length(o); if (unlikely(l < 0)) return NULL; i += l; } return m->sq_item(o, i); } } #else if (PySequence_Check(o)) { return PySequence_GetItem(o, i); } #endif return __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i)); } static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected); static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index); static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void); static CYTHON_INLINE int __Pyx_IterFinish(void); /*proto*/ static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected); /*proto*/ static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); /*proto*/ static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); /*proto*/ static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[], \ PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args, \ const char* function_name); /*proto*/ static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed, const char *name, int exact); /*proto*/ static CYTHON_INLINE int __Pyx_PyDict_Contains(PyObject* item, PyObject* dict, int eq) { int result = PyDict_Contains(dict, item); return unlikely(result < 0) ? result : (result == (eq == Py_EQ)); } #include #define __Pyx_SetItemInt(o, i, v, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ __Pyx_SetItemInt_Fast(o, i, v) : \ __Pyx_SetItemInt_Generic(o, to_py_func(i), v)) static CYTHON_INLINE int __Pyx_SetItemInt_Generic(PyObject *o, PyObject *j, PyObject *v) { int r; if (!j) return -1; r = PyObject_SetItem(o, j, v); Py_DECREF(j); return r; } static CYTHON_INLINE int __Pyx_SetItemInt_Fast(PyObject *o, Py_ssize_t i, PyObject *v) { #if CYTHON_COMPILING_IN_CPYTHON if (PyList_CheckExact(o)) { Py_ssize_t n = (likely(i >= 0)) ? i : i + PyList_GET_SIZE(o); if (likely((n >= 0) & (n < PyList_GET_SIZE(o)))) { PyObject* old = PyList_GET_ITEM(o, n); Py_INCREF(v); PyList_SET_ITEM(o, n, v); Py_DECREF(old); return 1; } } else { /* inlined PySequence_SetItem() */ PySequenceMethods *m = Py_TYPE(o)->tp_as_sequence; if (likely(m && m->sq_ass_item)) { if (unlikely(i < 0) && likely(m->sq_length)) { Py_ssize_t l = m->sq_length(o); if (unlikely(l < 0)) return -1; i += l; } return m->sq_ass_item(o, i, v); } } #else #if CYTHON_COMPILING_IN_PYPY if (PySequence_Check(o) && !PyDict_Check(o)) { #else if (PySequence_Check(o)) { #endif return PySequence_SetItem(o, i, v); } #endif return __Pyx_SetItemInt_Generic(o, PyInt_FromSsize_t(i), v); } static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals); /*proto*/ static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, long level); /*proto*/ static int __Pyx_Print(PyObject*, PyObject *, int); /*proto*/ #if CYTHON_COMPILING_IN_PYPY || PY_MAJOR_VERSION >= 3 static PyObject* __pyx_print = 0; static PyObject* __pyx_print_kwargs = 0; #endif static int __Pyx_PrintOne(PyObject* stream, PyObject *o); /*proto*/ static CYTHON_INLINE unsigned char __Pyx_PyInt_AsUnsignedChar(PyObject *); static CYTHON_INLINE unsigned short __Pyx_PyInt_AsUnsignedShort(PyObject *); static CYTHON_INLINE unsigned int __Pyx_PyInt_AsUnsignedInt(PyObject *); static CYTHON_INLINE char __Pyx_PyInt_AsChar(PyObject *); static CYTHON_INLINE short __Pyx_PyInt_AsShort(PyObject *); static CYTHON_INLINE int __Pyx_PyInt_AsInt(PyObject *); static CYTHON_INLINE signed char __Pyx_PyInt_AsSignedChar(PyObject *); static CYTHON_INLINE signed short __Pyx_PyInt_AsSignedShort(PyObject *); static CYTHON_INLINE signed int __Pyx_PyInt_AsSignedInt(PyObject *); static CYTHON_INLINE int __Pyx_PyInt_AsLongDouble(PyObject *); static CYTHON_INLINE unsigned long __Pyx_PyInt_AsUnsignedLong(PyObject *); static CYTHON_INLINE unsigned PY_LONG_LONG __Pyx_PyInt_AsUnsignedLongLong(PyObject *); static CYTHON_INLINE long __Pyx_PyInt_AsLong(PyObject *); static CYTHON_INLINE PY_LONG_LONG __Pyx_PyInt_AsLongLong(PyObject *); static CYTHON_INLINE signed long __Pyx_PyInt_AsSignedLong(PyObject *); static CYTHON_INLINE signed PY_LONG_LONG __Pyx_PyInt_AsSignedLongLong(PyObject *); static int __Pyx_check_binary_version(void); static int __Pyx_ExportFunction(const char *name, void (*f)(void), const char *sig); /*proto*/ typedef struct { int code_line; PyCodeObject* code_object; } __Pyx_CodeObjectCacheEntry; struct __Pyx_CodeObjectCache { int count; int max_count; __Pyx_CodeObjectCacheEntry* entries; }; static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); static PyCodeObject *__pyx_find_code_object(int code_line); static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); static void __Pyx_AddTraceback(const char *funcname, int c_line, int py_line, const char *filename); /*proto*/ static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); /*proto*/ /* Module declarations from 'cerrormodel' */ static int __pyx_v_11cerrormodel_MINIMUM_TANDEM_LENGTH; static PyObject *__pyx_v_11cerrormodel_repunit_dict = 0; static PyObject *__pyx_f_11cerrormodel_annotate_sequence(PyObject *, PyObject *, int); /*proto*/ static PyObject *__pyx_f_11cerrormodel_annotate_sequence_read(PyObject *, PyObject *, int, int); /*proto*/ static PyObject *__pyx_f_11cerrormodel_annotate_sequence_slow(PyObject *, PyObject *, int, int); /*proto*/ static PyObject *__pyx_f_11cerrormodel_calculate_size_and_displacement(PyObject *, char); /*proto*/ static PyObject *__pyx_f_11cerrormodel_get_repeats(PyObject *, int, long, int __pyx_skip_dispatch); /*proto*/ static int __pyx_f_11cerrormodel_approx_indel_error_rate(int, int, int __pyx_skip_dispatch); /*proto*/ static PyObject *__pyx_f_11cerrormodel_testAnnotate(int __pyx_skip_dispatch); /*proto*/ static PyObject *__pyx_f_11cerrormodel_normalize_repunit_fast(PyObject *); /*proto*/ static PyObject *__pyx_f_11cerrormodel_normalize_repunit(PyObject *); /*proto*/ static PyObject *__pyx_f_11cerrormodel_try_microsat(char *, int, int, int, int); /*proto*/ static PyObject *__pyx_f_11cerrormodel_microsattelite(char *, int, int, int); /*proto*/ #define __Pyx_MODULE_NAME "cerrormodel" int __pyx_module_is_main_cerrormodel = 0; /* Implementation of 'cerrormodel' */ static PyObject *__pyx_builtin_range; static PyObject *__pyx_builtin_sorted; static PyObject *__pyx_builtin_chr; static PyObject *__pyx_builtin_ord; static PyObject *__pyx_builtin_reversed; static PyObject *__pyx_pf_11cerrormodel_get_repeats(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_sequence, int __pyx_v_min_length, long __pyx_v_pos); /* proto */ static PyObject *__pyx_pf_11cerrormodel_2approx_indel_error_rate(CYTHON_UNUSED PyObject *__pyx_self, int __pyx_v_size, int __pyx_v_displacement); /* proto */ static PyObject *__pyx_pf_11cerrormodel_4get_annotation(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_seq, PyObject *__pyx_v_pos, PyObject *__pyx_v_tandem); /* proto */ static PyObject *__pyx_pf_11cerrormodel_6add_tandem(CYTHON_UNUSED PyObject *__pyx_self, int __pyx_v_pos, int __pyx_v_tandemlen, PyObject *__pyx_v_tandemunit, PyObject *__pyx_v_indelq, PyObject *__pyx_v_indel_q_data, int __pyx_v_output_base); /* proto */ static PyObject *__pyx_pf_11cerrormodel_8add_tandem_read(CYTHON_UNUSED PyObject *__pyx_self, int __pyx_v_pos, int __pyx_v_tandemlen, PyObject *__pyx_v_tandemunit, PyObject *__pyx_v_indelq, PyObject *__pyx_v_indel_q_data, int __pyx_v_output_base); /* proto */ static PyObject *__pyx_pf_11cerrormodel_10testAnnotate(CYTHON_UNUSED PyObject *__pyx_self); /* proto */ static char __pyx_k_17[] = ""; static char __pyx_k_18[] = "-"; static char __pyx_k_22[] = "TATTTGAAAAAAAAAAACATGCGCTTTCGAGCTGTTGAAGAGACGTGTATTGGAATAAGTAATCACATAAGTGTTAGTAACTTATTTAAATACGTATAGAGTCGCCTATTTGCCTAGCCTTTTGGTTCTCAGATTTTTTAATTATTACATTGCTATAAGGGTGTAACTGTGTGATAGCCAAAATTTTAAGCTGCAAATGGTTTGTAAATATGATATATTACAAGCTTCATGAAAATCGGTTTATGACTGATCCGCGATTACGTTGAAAGGCGACTGGCAGAGATACTTTTGTTCAGATGTTTTTTCAGGTAGCGATTCCAATGAATAGGTAAAATACCTTGCAAGTTTTGTTGTTGTCGTTGGAGGAAATGTGGATGTGGTTGTTATTGTTGA"; static char __pyx_k_23[] = "SSI?5+#"; static char __pyx_k_24[] = "SS#"; static char __pyx_k_27[] = "/home/rimmer/nethome/Code/Trunk/coreutils/cerrormodel.pyx"; static char __pyx_k__A[] = "A"; static char __pyx_k__C[] = "C"; static char __pyx_k__G[] = "G"; static char __pyx_k__N[] = "N"; static char __pyx_k__T[] = "T"; static char __pyx_k__a[] = "a"; static char __pyx_k__c[] = "c"; static char __pyx_k__q[] = "q"; static char __pyx_k__t[] = "t"; static char __pyx_k__AC[] = "AC"; static char __pyx_k__AG[] = "AG"; static char __pyx_k__AT[] = "AT"; static char __pyx_k__CG[] = "CG"; static char __pyx_k__ac[] = "ac"; static char __pyx_k__ag[] = "ag"; static char __pyx_k__chr[] = "chr"; static char __pyx_k__idx[] = "idx"; static char __pyx_k__ord[] = "ord"; static char __pyx_k__pos[] = "pos"; static char __pyx_k__seq[] = "seq"; static char __pyx_k__ACGT[] = "ACGT"; static char __pyx_k__join[] = "join"; static char __pyx_k__size[] = "size"; static char __pyx_k__time[] = "time"; static char __pyx_k__clock[] = "clock"; static char __pyx_k__count[] = "count"; static char __pyx_k__lower[] = "lower"; static char __pyx_k__model[] = "model"; static char __pyx_k__qdata[] = "qdata"; static char __pyx_k__range[] = "range"; static char __pyx_k__upper[] = "upper"; static char __pyx_k__cModel[] = "cModel"; static char __pyx_k__indelq[] = "indelq"; static char __pyx_k__sorted[] = "sorted"; static char __pyx_k__tandem[] = "tandem"; static char __pyx_k____main__[] = "__main__"; static char __pyx_k____test__[] = "__test__"; static char __pyx_k__modelidx[] = "modelidx"; static char __pyx_k__repstart[] = "repstart"; static char __pyx_k__repunitT[] = "repunitT"; static char __pyx_k__reversed[] = "reversed"; static char __pyx_k__sequence[] = "sequence"; static char __pyx_k__tandemlen[] = "tandemlen"; static char __pyx_k__add_tandem[] = "add_tandem"; static char __pyx_k__min_length[] = "min_length"; static char __pyx_k__tandemunit[] = "tandemunit"; static char __pyx_k__cerrormodel[] = "cerrormodel"; static char __pyx_k__output_base[] = "output_base"; static char __pyx_k__displacement[] = "displacement"; static char __pyx_k__genericModel[] = "genericModel"; static char __pyx_k__indel_q_data[] = "indel_q_data"; static char __pyx_k__cGenericModel[] = "cGenericModel"; static char __pyx_k__get_annotation[] = "get_annotation"; static char __pyx_k__add_tandem_read[] = "add_tandem_read"; static PyObject *__pyx_kp_s_17; static PyObject *__pyx_kp_s_18; static PyObject *__pyx_n_s_22; static PyObject *__pyx_kp_s_23; static PyObject *__pyx_kp_s_24; static PyObject *__pyx_kp_s_27; static PyObject *__pyx_n_s__A; static PyObject *__pyx_n_s__AC; static PyObject *__pyx_n_s__ACGT; static PyObject *__pyx_n_s__AG; static PyObject *__pyx_n_s__AT; static PyObject *__pyx_n_s__C; static PyObject *__pyx_n_s__CG; static PyObject *__pyx_n_s__G; static PyObject *__pyx_n_s__N; static PyObject *__pyx_n_s__T; static PyObject *__pyx_n_s____main__; static PyObject *__pyx_n_s____test__; static PyObject *__pyx_n_s__a; static PyObject *__pyx_n_s__ac; static PyObject *__pyx_n_s__add_tandem; static PyObject *__pyx_n_s__add_tandem_read; static PyObject *__pyx_n_s__ag; static PyObject *__pyx_n_s__c; static PyObject *__pyx_n_s__cGenericModel; static PyObject *__pyx_n_s__cModel; static PyObject *__pyx_n_s__cerrormodel; static PyObject *__pyx_n_s__chr; static PyObject *__pyx_n_s__clock; static PyObject *__pyx_n_s__count; static PyObject *__pyx_n_s__displacement; static PyObject *__pyx_n_s__genericModel; static PyObject *__pyx_n_s__get_annotation; static PyObject *__pyx_n_s__idx; static PyObject *__pyx_n_s__indel_q_data; static PyObject *__pyx_n_s__indelq; static PyObject *__pyx_n_s__join; static PyObject *__pyx_n_s__lower; static PyObject *__pyx_n_s__min_length; static PyObject *__pyx_n_s__model; static PyObject *__pyx_n_s__modelidx; static PyObject *__pyx_n_s__ord; static PyObject *__pyx_n_s__output_base; static PyObject *__pyx_n_s__pos; static PyObject *__pyx_n_s__q; static PyObject *__pyx_n_s__qdata; static PyObject *__pyx_n_s__range; static PyObject *__pyx_n_s__repstart; static PyObject *__pyx_n_s__repunitT; static PyObject *__pyx_n_s__reversed; static PyObject *__pyx_n_s__seq; static PyObject *__pyx_n_s__sequence; static PyObject *__pyx_n_s__size; static PyObject *__pyx_n_s__sorted; static PyObject *__pyx_n_s__t; static PyObject *__pyx_n_s__tandem; static PyObject *__pyx_n_s__tandemlen; static PyObject *__pyx_n_s__tandemunit; static PyObject *__pyx_n_s__time; static PyObject *__pyx_n_s__upper; static PyObject *__pyx_int_0; static PyObject *__pyx_int_1; static PyObject *__pyx_int_2; static PyObject *__pyx_int_neg_1; static PyObject *__pyx_int_10; static PyObject *__pyx_int_33; static PyObject *__pyx_k_tuple_1; static PyObject *__pyx_k_tuple_2; static PyObject *__pyx_k_tuple_3; static PyObject *__pyx_k_tuple_4; static PyObject *__pyx_k_tuple_5; static PyObject *__pyx_k_tuple_6; static PyObject *__pyx_k_tuple_7; static PyObject *__pyx_k_tuple_8; static PyObject *__pyx_k_tuple_9; static PyObject *__pyx_k_tuple_10; static PyObject *__pyx_k_tuple_11; static PyObject *__pyx_k_tuple_12; static PyObject *__pyx_k_tuple_13; static PyObject *__pyx_k_tuple_14; static PyObject *__pyx_k_tuple_15; static PyObject *__pyx_k_tuple_16; static PyObject *__pyx_k_tuple_19; static PyObject *__pyx_k_tuple_20; static PyObject *__pyx_k_tuple_21; static PyObject *__pyx_k_tuple_25; static PyObject *__pyx_k_tuple_28; static PyObject *__pyx_k_tuple_30; static PyObject *__pyx_k_codeobj_26; static PyObject *__pyx_k_codeobj_29; static PyObject *__pyx_k_codeobj_31; /* "cerrormodel.pyx":23 * ################################################################################################### * * cdef tuple calculate_size_and_displacement( bytes sequence, char annotate_all ): # <<<<<<<<<<<<<< * cdef char* csequence = sequence * cdef int length = len(sequence) */ static PyObject *__pyx_f_11cerrormodel_calculate_size_and_displacement(PyObject *__pyx_v_sequence, char __pyx_v_annotate_all) { char *__pyx_v_csequence; int __pyx_v_length; char *__pyx_v_csizes; char *__pyx_v_cdisplacements; PyObject *__pyx_v_sizes = 0; PyObject *__pyx_v_displacements = 0; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations char *__pyx_t_1; Py_ssize_t __pyx_t_2; PyObject *__pyx_t_3 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("calculate_size_and_displacement", 0); /* "cerrormodel.pyx":24 * * cdef tuple calculate_size_and_displacement( bytes sequence, char annotate_all ): * cdef char* csequence = sequence # <<<<<<<<<<<<<< * cdef int length = len(sequence) * cdef char* csizes = calloc(length+1, sizeof(char)) */ __pyx_t_1 = PyBytes_AsString(((PyObject *)__pyx_v_sequence)); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 24; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_csequence = __pyx_t_1; /* "cerrormodel.pyx":25 * cdef tuple calculate_size_and_displacement( bytes sequence, char annotate_all ): * cdef char* csequence = sequence * cdef int length = len(sequence) # <<<<<<<<<<<<<< * cdef char* csizes = calloc(length+1, sizeof(char)) * cdef char* cdisplacements = calloc(length+1, sizeof(char)) */ if (unlikely(((PyObject *)__pyx_v_sequence) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 25; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_2 = PyBytes_GET_SIZE(((PyObject *)__pyx_v_sequence)); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 25; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_length = __pyx_t_2; /* "cerrormodel.pyx":26 * cdef char* csequence = sequence * cdef int length = len(sequence) * cdef char* csizes = calloc(length+1, sizeof(char)) # <<<<<<<<<<<<<< * cdef char* cdisplacements = calloc(length+1, sizeof(char)) * if annotate_all: */ __pyx_v_csizes = ((char *)calloc((__pyx_v_length + 1), (sizeof(char)))); /* "cerrormodel.pyx":27 * cdef int length = len(sequence) * cdef char* csizes = calloc(length+1, sizeof(char)) * cdef char* cdisplacements = calloc(length+1, sizeof(char)) # <<<<<<<<<<<<<< * if annotate_all: * annotate( csequence, csizes, cdisplacements, -length ) */ __pyx_v_cdisplacements = ((char *)calloc((__pyx_v_length + 1), (sizeof(char)))); /* "cerrormodel.pyx":28 * cdef char* csizes = calloc(length+1, sizeof(char)) * cdef char* cdisplacements = calloc(length+1, sizeof(char)) * if annotate_all: # <<<<<<<<<<<<<< * annotate( csequence, csizes, cdisplacements, -length ) * else: */ if (__pyx_v_annotate_all) { /* "cerrormodel.pyx":29 * cdef char* cdisplacements = calloc(length+1, sizeof(char)) * if annotate_all: * annotate( csequence, csizes, cdisplacements, -length ) # <<<<<<<<<<<<<< * else: * annotate( csequence, csizes, cdisplacements, length ) */ annotate(__pyx_v_csequence, __pyx_v_csizes, __pyx_v_cdisplacements, (-__pyx_v_length)); goto __pyx_L3; } /*else*/ { /* "cerrormodel.pyx":31 * annotate( csequence, csizes, cdisplacements, -length ) * else: * annotate( csequence, csizes, cdisplacements, length ) # <<<<<<<<<<<<<< * cdef bytes sizes = csizes * cdef bytes displacements = cdisplacements */ annotate(__pyx_v_csequence, __pyx_v_csizes, __pyx_v_cdisplacements, __pyx_v_length); } __pyx_L3:; /* "cerrormodel.pyx":32 * else: * annotate( csequence, csizes, cdisplacements, length ) * cdef bytes sizes = csizes # <<<<<<<<<<<<<< * cdef bytes displacements = cdisplacements * free (csizes) */ __pyx_t_3 = PyBytes_FromString(__pyx_v_csizes); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 32; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_3)); __pyx_v_sizes = __pyx_t_3; __pyx_t_3 = 0; /* "cerrormodel.pyx":33 * annotate( csequence, csizes, cdisplacements, length ) * cdef bytes sizes = csizes * cdef bytes displacements = cdisplacements # <<<<<<<<<<<<<< * free (csizes) * free (cdisplacements) */ __pyx_t_3 = PyBytes_FromString(__pyx_v_cdisplacements); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 33; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_3)); __pyx_v_displacements = __pyx_t_3; __pyx_t_3 = 0; /* "cerrormodel.pyx":34 * cdef bytes sizes = csizes * cdef bytes displacements = cdisplacements * free (csizes) # <<<<<<<<<<<<<< * free (cdisplacements) * return (sizes, displacements) */ free(__pyx_v_csizes); /* "cerrormodel.pyx":35 * cdef bytes displacements = cdisplacements * free (csizes) * free (cdisplacements) # <<<<<<<<<<<<<< * return (sizes, displacements) * */ free(__pyx_v_cdisplacements); /* "cerrormodel.pyx":36 * free (csizes) * free (cdisplacements) * return (sizes, displacements) # <<<<<<<<<<<<<< * * ################################################################################################### */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 36; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_INCREF(((PyObject *)__pyx_v_sizes)); PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_v_sizes)); __Pyx_GIVEREF(((PyObject *)__pyx_v_sizes)); __Pyx_INCREF(((PyObject *)__pyx_v_displacements)); PyTuple_SET_ITEM(__pyx_t_3, 1, ((PyObject *)__pyx_v_displacements)); __Pyx_GIVEREF(((PyObject *)__pyx_v_displacements)); __pyx_r = __pyx_t_3; __pyx_t_3 = 0; goto __pyx_L0; __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_3); __Pyx_AddTraceback("cerrormodel.calculate_size_and_displacement", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_sizes); __Pyx_XDECREF(__pyx_v_displacements); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":40 * ################################################################################################### * * cdef bytes normalize_repunit_fast( bytes unit ): # <<<<<<<<<<<<<< * global repunit_dict * cdef int length = len(unit) */ static PyObject *__pyx_f_11cerrormodel_normalize_repunit_fast(PyObject *__pyx_v_unit) { int __pyx_v_length; char *__pyx_v_cunit; int __pyx_v_i; int __pyx_v_both; PyObject *__pyx_v_n1 = 0; PyObject *__pyx_v_n2 = 0; PyObject *__pyx_v_n3 = 0; PyObject *__pyx_v_n4 = 0; PyObject *__pyx_v_n5 = 0; PyObject *__pyx_v_n6 = 0; PyObject *__pyx_v_n7 = 0; PyObject *__pyx_v_n8 = 0; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations Py_ssize_t __pyx_t_1; char *__pyx_t_2; int __pyx_t_3; int __pyx_t_4; int __pyx_t_5; int __pyx_t_6; PyObject *__pyx_t_7 = NULL; PyObject *__pyx_t_8 = NULL; char *__pyx_t_9; char *__pyx_t_10; char *__pyx_t_11; char *__pyx_t_12; char *__pyx_t_13; char *__pyx_t_14; char *__pyx_t_15; PyObject *__pyx_t_16 = NULL; char *__pyx_t_17; char *__pyx_t_18; char *__pyx_t_19; char *__pyx_t_20; PyObject *__pyx_t_21 = NULL; PyObject *__pyx_t_22 = NULL; PyObject *__pyx_t_23 = NULL; char *__pyx_t_24; char *__pyx_t_25; char *__pyx_t_26; char *__pyx_t_27; PyObject *__pyx_t_28 = NULL; char *__pyx_t_29; char *__pyx_t_30; char *__pyx_t_31; char *__pyx_t_32; PyObject *__pyx_t_33 = NULL; char *__pyx_t_34; char *__pyx_t_35; char *__pyx_t_36; char *__pyx_t_37; PyObject *__pyx_t_38 = NULL; char *__pyx_t_39; char *__pyx_t_40; char *__pyx_t_41; char *__pyx_t_42; PyObject *__pyx_t_43 = NULL; char *__pyx_t_44; char *__pyx_t_45; char *__pyx_t_46; char *__pyx_t_47; PyObject *__pyx_t_48 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("normalize_repunit_fast", 0); /* "cerrormodel.pyx":42 * cdef bytes normalize_repunit_fast( bytes unit ): * global repunit_dict * cdef int length = len(unit) # <<<<<<<<<<<<<< * cdef char* cunit = unit * cdef int i */ if (unlikely(((PyObject *)__pyx_v_unit) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_1 = PyBytes_GET_SIZE(((PyObject *)__pyx_v_unit)); if (unlikely(__pyx_t_1 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_length = __pyx_t_1; /* "cerrormodel.pyx":43 * global repunit_dict * cdef int length = len(unit) * cdef char* cunit = unit # <<<<<<<<<<<<<< * cdef int i * cdef int both */ __pyx_t_2 = PyBytes_AsString(((PyObject *)__pyx_v_unit)); if (unlikely((!__pyx_t_2) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 43; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_cunit = __pyx_t_2; /* "cerrormodel.pyx":46 * cdef int i * cdef int both * for i in range(length): # <<<<<<<<<<<<<< * cunit[i] &= 0xDF * if cunit[i] == 'N': */ __pyx_t_3 = __pyx_v_length; for (__pyx_t_4 = 0; __pyx_t_4 < __pyx_t_3; __pyx_t_4+=1) { __pyx_v_i = __pyx_t_4; /* "cerrormodel.pyx":47 * cdef int both * for i in range(length): * cunit[i] &= 0xDF # <<<<<<<<<<<<<< * if cunit[i] == 'N': * return ("N" * length) */ __pyx_t_5 = __pyx_v_i; (__pyx_v_cunit[__pyx_t_5]) = ((__pyx_v_cunit[__pyx_t_5]) & 0xDF); /* "cerrormodel.pyx":48 * for i in range(length): * cunit[i] &= 0xDF * if cunit[i] == 'N': # <<<<<<<<<<<<<< * return ("N" * length) * if length == 1: */ __pyx_t_6 = ((__pyx_v_cunit[__pyx_v_i]) == 'N'); if (__pyx_t_6) { /* "cerrormodel.pyx":49 * cunit[i] &= 0xDF * if cunit[i] == 'N': * return ("N" * length) # <<<<<<<<<<<<<< * if length == 1: * if cunit[0] <= 'C': return unit */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_7 = PyInt_FromLong(__pyx_v_length); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 49; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __pyx_t_8 = PyNumber_Multiply(((PyObject *)__pyx_n_s__N), __pyx_t_7); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 49; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_8)); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __Pyx_INCREF(((PyObject *)((PyObject*)__pyx_t_8))); __pyx_r = ((PyObject*)__pyx_t_8); __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0; goto __pyx_L0; goto __pyx_L5; } __pyx_L5:; } /* "cerrormodel.pyx":54 * if cunit[0] == 'G': return bytes('c') * return bytes('a') * elif length == 2: # <<<<<<<<<<<<<< * both = cunit[0]+cunit[1] * if both == 138: return bytes('CG') # c+g */ switch (__pyx_v_length) { /* "cerrormodel.pyx":50 * if cunit[i] == 'N': * return ("N" * length) * if length == 1: # <<<<<<<<<<<<<< * if cunit[0] <= 'C': return unit * if cunit[0] == 'G': return bytes('c') */ case 1: /* "cerrormodel.pyx":51 * return ("N" * length) * if length == 1: * if cunit[0] <= 'C': return unit # <<<<<<<<<<<<<< * if cunit[0] == 'G': return bytes('c') * return bytes('a') */ __pyx_t_6 = ((__pyx_v_cunit[0]) <= 'C'); if (__pyx_t_6) { __Pyx_XDECREF(((PyObject *)__pyx_r)); __Pyx_INCREF(((PyObject *)__pyx_v_unit)); __pyx_r = __pyx_v_unit; goto __pyx_L0; goto __pyx_L6; } __pyx_L6:; /* "cerrormodel.pyx":52 * if length == 1: * if cunit[0] <= 'C': return unit * if cunit[0] == 'G': return bytes('c') # <<<<<<<<<<<<<< * return bytes('a') * elif length == 2: */ __pyx_t_6 = ((__pyx_v_cunit[0]) == 'G'); if (__pyx_t_6) { __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_8 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_1), NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 52; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __pyx_r = ((PyObject*)__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L0; goto __pyx_L7; } __pyx_L7:; /* "cerrormodel.pyx":53 * if cunit[0] <= 'C': return unit * if cunit[0] == 'G': return bytes('c') * return bytes('a') # <<<<<<<<<<<<<< * elif length == 2: * both = cunit[0]+cunit[1] */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_8 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_2), NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 53; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __pyx_r = ((PyObject*)__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L0; break; /* "cerrormodel.pyx":54 * if cunit[0] == 'G': return bytes('c') * return bytes('a') * elif length == 2: # <<<<<<<<<<<<<< * both = cunit[0]+cunit[1] * if both == 138: return bytes('CG') # c+g */ case 2: /* "cerrormodel.pyx":55 * return bytes('a') * elif length == 2: * both = cunit[0]+cunit[1] # <<<<<<<<<<<<<< * if both == 138: return bytes('CG') # c+g * elif both == 149: return bytes('AT') # a+t */ __pyx_v_both = (((int)(__pyx_v_cunit[0])) + ((int)(__pyx_v_cunit[1]))); /* "cerrormodel.pyx":56 * elif length == 2: * both = cunit[0]+cunit[1] * if both == 138: return bytes('CG') # c+g # <<<<<<<<<<<<<< * elif both == 149: return bytes('AT') # a+t * elif both == 132: return bytes('AC') # a+c */ __pyx_t_6 = (__pyx_v_both == 138); if (__pyx_t_6) { __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_8 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_3), NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 56; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __pyx_r = ((PyObject*)__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L0; goto __pyx_L8; } /* "cerrormodel.pyx":57 * both = cunit[0]+cunit[1] * if both == 138: return bytes('CG') # c+g * elif both == 149: return bytes('AT') # a+t # <<<<<<<<<<<<<< * elif both == 132: return bytes('AC') # a+c * elif both == 155: return bytes('ac') # g+t */ __pyx_t_6 = (__pyx_v_both == 149); if (__pyx_t_6) { __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_8 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_4), NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 57; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __pyx_r = ((PyObject*)__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L0; goto __pyx_L8; } /* "cerrormodel.pyx":58 * if both == 138: return bytes('CG') # c+g * elif both == 149: return bytes('AT') # a+t * elif both == 132: return bytes('AC') # a+c # <<<<<<<<<<<<<< * elif both == 155: return bytes('ac') # g+t * elif both == 136: return bytes('AG') # a+g */ __pyx_t_6 = (__pyx_v_both == 132); if (__pyx_t_6) { __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_8 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_5), NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 58; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __pyx_r = ((PyObject*)__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L0; goto __pyx_L8; } /* "cerrormodel.pyx":59 * elif both == 149: return bytes('AT') # a+t * elif both == 132: return bytes('AC') # a+c * elif both == 155: return bytes('ac') # g+t # <<<<<<<<<<<<<< * elif both == 136: return bytes('AG') # a+g * return bytes('ag') # t+c */ __pyx_t_6 = (__pyx_v_both == 155); if (__pyx_t_6) { __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_8 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_6), NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 59; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __pyx_r = ((PyObject*)__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L0; goto __pyx_L8; } /* "cerrormodel.pyx":60 * elif both == 132: return bytes('AC') # a+c * elif both == 155: return bytes('ac') # g+t * elif both == 136: return bytes('AG') # a+g # <<<<<<<<<<<<<< * return bytes('ag') # t+c * cdef bytes n1,n2,n3,n4,n5,n6,n7,n8 */ __pyx_t_6 = (__pyx_v_both == 136); if (__pyx_t_6) { __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_8 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_7), NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 60; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __pyx_r = ((PyObject*)__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L0; goto __pyx_L8; } __pyx_L8:; /* "cerrormodel.pyx":61 * elif both == 155: return bytes('ac') # g+t * elif both == 136: return bytes('AG') # a+g * return bytes('ag') # t+c # <<<<<<<<<<<<<< * cdef bytes n1,n2,n3,n4,n5,n6,n7,n8 * if repunit_dict == None: */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_8 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_8), NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 61; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __pyx_r = ((PyObject*)__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L0; break; } /* "cerrormodel.pyx":63 * return bytes('ag') # t+c * cdef bytes n1,n2,n3,n4,n5,n6,n7,n8 * if repunit_dict == None: # <<<<<<<<<<<<<< * repunit_dict = {} * for n1 in bytes('ACGT'): */ __pyx_t_8 = PyObject_RichCompare(((PyObject *)__pyx_v_11cerrormodel_repunit_dict), Py_None, Py_EQ); __Pyx_XGOTREF(__pyx_t_8); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 63; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_8); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 63; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; if (__pyx_t_6) { /* "cerrormodel.pyx":64 * cdef bytes n1,n2,n3,n4,n5,n6,n7,n8 * if repunit_dict == None: * repunit_dict = {} # <<<<<<<<<<<<<< * for n1 in bytes('ACGT'): * for n2 in bytes('ACGT'): */ __pyx_t_8 = PyDict_New(); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 64; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_8)); __Pyx_XGOTREF(((PyObject *)__pyx_v_11cerrormodel_repunit_dict)); __Pyx_DECREF(((PyObject *)__pyx_v_11cerrormodel_repunit_dict)); __Pyx_GIVEREF(((PyObject *)__pyx_t_8)); __pyx_v_11cerrormodel_repunit_dict = __pyx_t_8; __pyx_t_8 = 0; /* "cerrormodel.pyx":65 * if repunit_dict == None: * repunit_dict = {} * for n1 in bytes('ACGT'): # <<<<<<<<<<<<<< * for n2 in bytes('ACGT'): * for n3 in bytes('ACGT'): */ __pyx_t_8 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_9), NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 65; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __pyx_t_9 = PyBytes_AS_STRING(__pyx_t_8); __pyx_t_10 = (__pyx_t_9 + PyBytes_GET_SIZE(__pyx_t_8)); for (__pyx_t_11 = __pyx_t_9; __pyx_t_11 < __pyx_t_10; __pyx_t_11++) { __pyx_t_2 = __pyx_t_11; __pyx_t_7 = PyBytes_FromStringAndSize(__pyx_t_2 + 0, 1 - 0); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 65; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_7)); __Pyx_XDECREF(((PyObject *)__pyx_v_n1)); __pyx_v_n1 = __pyx_t_7; __pyx_t_7 = 0; /* "cerrormodel.pyx":66 * repunit_dict = {} * for n1 in bytes('ACGT'): * for n2 in bytes('ACGT'): # <<<<<<<<<<<<<< * for n3 in bytes('ACGT'): * repunit_dict[n1+n2+n3] = normalize_repunit(n1+n2+n3) */ __pyx_t_7 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_10), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __pyx_t_13 = PyBytes_AS_STRING(__pyx_t_7); __pyx_t_14 = (__pyx_t_13 + PyBytes_GET_SIZE(__pyx_t_7)); for (__pyx_t_15 = __pyx_t_13; __pyx_t_15 < __pyx_t_14; __pyx_t_15++) { __pyx_t_12 = __pyx_t_15; __pyx_t_16 = PyBytes_FromStringAndSize(__pyx_t_12 + 0, 1 - 0); if (unlikely(!__pyx_t_16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_16)); __Pyx_XDECREF(((PyObject *)__pyx_v_n2)); __pyx_v_n2 = __pyx_t_16; __pyx_t_16 = 0; /* "cerrormodel.pyx":67 * for n1 in bytes('ACGT'): * for n2 in bytes('ACGT'): * for n3 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3] = normalize_repunit(n1+n2+n3) * for n4 in bytes('ACGT'): */ __pyx_t_16 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_11), NULL); if (unlikely(!__pyx_t_16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 67; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_16); __pyx_t_18 = PyBytes_AS_STRING(__pyx_t_16); __pyx_t_19 = (__pyx_t_18 + PyBytes_GET_SIZE(__pyx_t_16)); for (__pyx_t_20 = __pyx_t_18; __pyx_t_20 < __pyx_t_19; __pyx_t_20++) { __pyx_t_17 = __pyx_t_20; __pyx_t_21 = PyBytes_FromStringAndSize(__pyx_t_17 + 0, 1 - 0); if (unlikely(!__pyx_t_21)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 67; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_21)); __Pyx_XDECREF(((PyObject *)__pyx_v_n3)); __pyx_v_n3 = __pyx_t_21; __pyx_t_21 = 0; /* "cerrormodel.pyx":68 * for n2 in bytes('ACGT'): * for n3 in bytes('ACGT'): * repunit_dict[n1+n2+n3] = normalize_repunit(n1+n2+n3) # <<<<<<<<<<<<<< * for n4 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4] = normalize_repunit(n1+n2+n3+n4) */ __pyx_t_21 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_21)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 68; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_21)); __pyx_t_22 = PyNumber_Add(((PyObject *)__pyx_t_21), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_22)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 68; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_22)); __Pyx_DECREF(((PyObject *)__pyx_t_21)); __pyx_t_21 = 0; __pyx_t_21 = ((PyObject *)__pyx_f_11cerrormodel_normalize_repunit(__pyx_t_22)); if (unlikely(!__pyx_t_21)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 68; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_21); __Pyx_DECREF(((PyObject *)__pyx_t_22)); __pyx_t_22 = 0; if (unlikely(((PyObject *)__pyx_v_11cerrormodel_repunit_dict) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 68; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_22 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_22)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 68; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_22)); __pyx_t_23 = PyNumber_Add(((PyObject *)__pyx_t_22), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 68; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_23)); __Pyx_DECREF(((PyObject *)__pyx_t_22)); __pyx_t_22 = 0; if (PyDict_SetItem(((PyObject *)__pyx_v_11cerrormodel_repunit_dict), ((PyObject *)__pyx_t_23), __pyx_t_21) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 68; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_23)); __pyx_t_23 = 0; __Pyx_DECREF(__pyx_t_21); __pyx_t_21 = 0; /* "cerrormodel.pyx":69 * for n3 in bytes('ACGT'): * repunit_dict[n1+n2+n3] = normalize_repunit(n1+n2+n3) * for n4 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3+n4] = normalize_repunit(n1+n2+n3+n4) * for n5 in bytes('ACGT'): */ __pyx_t_21 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_12), NULL); if (unlikely(!__pyx_t_21)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_21); __pyx_t_25 = PyBytes_AS_STRING(__pyx_t_21); __pyx_t_26 = (__pyx_t_25 + PyBytes_GET_SIZE(__pyx_t_21)); for (__pyx_t_27 = __pyx_t_25; __pyx_t_27 < __pyx_t_26; __pyx_t_27++) { __pyx_t_24 = __pyx_t_27; __pyx_t_23 = PyBytes_FromStringAndSize(__pyx_t_24 + 0, 1 - 0); if (unlikely(!__pyx_t_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_23)); __Pyx_XDECREF(((PyObject *)__pyx_v_n4)); __pyx_v_n4 = __pyx_t_23; __pyx_t_23 = 0; /* "cerrormodel.pyx":70 * repunit_dict[n1+n2+n3] = normalize_repunit(n1+n2+n3) * for n4 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4] = normalize_repunit(n1+n2+n3+n4) # <<<<<<<<<<<<<< * for n5 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5] = normalize_repunit(n1+n2+n3+n4+n5) */ __pyx_t_23 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_23)); __pyx_t_22 = PyNumber_Add(((PyObject *)__pyx_t_23), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_22)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_22)); __Pyx_DECREF(((PyObject *)__pyx_t_23)); __pyx_t_23 = 0; __pyx_t_23 = PyNumber_Add(((PyObject *)__pyx_t_22), ((PyObject *)__pyx_v_n4)); if (unlikely(!__pyx_t_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_23)); __Pyx_DECREF(((PyObject *)__pyx_t_22)); __pyx_t_22 = 0; __pyx_t_22 = ((PyObject *)__pyx_f_11cerrormodel_normalize_repunit(__pyx_t_23)); if (unlikely(!__pyx_t_22)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_22); __Pyx_DECREF(((PyObject *)__pyx_t_23)); __pyx_t_23 = 0; if (unlikely(((PyObject *)__pyx_v_11cerrormodel_repunit_dict) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_23 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_23)); __pyx_t_28 = PyNumber_Add(((PyObject *)__pyx_t_23), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_28)); __Pyx_DECREF(((PyObject *)__pyx_t_23)); __pyx_t_23 = 0; __pyx_t_23 = PyNumber_Add(((PyObject *)__pyx_t_28), ((PyObject *)__pyx_v_n4)); if (unlikely(!__pyx_t_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_23)); __Pyx_DECREF(((PyObject *)__pyx_t_28)); __pyx_t_28 = 0; if (PyDict_SetItem(((PyObject *)__pyx_v_11cerrormodel_repunit_dict), ((PyObject *)__pyx_t_23), __pyx_t_22) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 70; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_23)); __pyx_t_23 = 0; __Pyx_DECREF(__pyx_t_22); __pyx_t_22 = 0; /* "cerrormodel.pyx":71 * for n4 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4] = normalize_repunit(n1+n2+n3+n4) * for n5 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3+n4+n5] = normalize_repunit(n1+n2+n3+n4+n5) * for n6 in bytes('ACGT'): */ __pyx_t_22 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_13), NULL); if (unlikely(!__pyx_t_22)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 71; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_22); __pyx_t_30 = PyBytes_AS_STRING(__pyx_t_22); __pyx_t_31 = (__pyx_t_30 + PyBytes_GET_SIZE(__pyx_t_22)); for (__pyx_t_32 = __pyx_t_30; __pyx_t_32 < __pyx_t_31; __pyx_t_32++) { __pyx_t_29 = __pyx_t_32; __pyx_t_23 = PyBytes_FromStringAndSize(__pyx_t_29 + 0, 1 - 0); if (unlikely(!__pyx_t_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 71; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_23)); __Pyx_XDECREF(((PyObject *)__pyx_v_n5)); __pyx_v_n5 = __pyx_t_23; __pyx_t_23 = 0; /* "cerrormodel.pyx":72 * repunit_dict[n1+n2+n3+n4] = normalize_repunit(n1+n2+n3+n4) * for n5 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5] = normalize_repunit(n1+n2+n3+n4+n5) # <<<<<<<<<<<<<< * for n6 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5+n6] = normalize_repunit(n1+n2+n3+n4+n5+n6) */ __pyx_t_23 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_23)); __pyx_t_28 = PyNumber_Add(((PyObject *)__pyx_t_23), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_28)); __Pyx_DECREF(((PyObject *)__pyx_t_23)); __pyx_t_23 = 0; __pyx_t_23 = PyNumber_Add(((PyObject *)__pyx_t_28), ((PyObject *)__pyx_v_n4)); if (unlikely(!__pyx_t_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_23)); __Pyx_DECREF(((PyObject *)__pyx_t_28)); __pyx_t_28 = 0; __pyx_t_28 = PyNumber_Add(((PyObject *)__pyx_t_23), ((PyObject *)__pyx_v_n5)); if (unlikely(!__pyx_t_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_28)); __Pyx_DECREF(((PyObject *)__pyx_t_23)); __pyx_t_23 = 0; __pyx_t_23 = ((PyObject *)__pyx_f_11cerrormodel_normalize_repunit(__pyx_t_28)); if (unlikely(!__pyx_t_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_23); __Pyx_DECREF(((PyObject *)__pyx_t_28)); __pyx_t_28 = 0; if (unlikely(((PyObject *)__pyx_v_11cerrormodel_repunit_dict) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_28 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_28)); __pyx_t_33 = PyNumber_Add(((PyObject *)__pyx_t_28), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __Pyx_DECREF(((PyObject *)__pyx_t_28)); __pyx_t_28 = 0; __pyx_t_28 = PyNumber_Add(((PyObject *)__pyx_t_33), ((PyObject *)__pyx_v_n4)); if (unlikely(!__pyx_t_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_28)); __Pyx_DECREF(((PyObject *)__pyx_t_33)); __pyx_t_33 = 0; __pyx_t_33 = PyNumber_Add(((PyObject *)__pyx_t_28), ((PyObject *)__pyx_v_n5)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __Pyx_DECREF(((PyObject *)__pyx_t_28)); __pyx_t_28 = 0; if (PyDict_SetItem(((PyObject *)__pyx_v_11cerrormodel_repunit_dict), ((PyObject *)__pyx_t_33), __pyx_t_23) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 72; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_33)); __pyx_t_33 = 0; __Pyx_DECREF(__pyx_t_23); __pyx_t_23 = 0; /* "cerrormodel.pyx":73 * for n5 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5] = normalize_repunit(n1+n2+n3+n4+n5) * for n6 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3+n4+n5+n6] = normalize_repunit(n1+n2+n3+n4+n5+n6) * for n7 in bytes('ACGT'): */ __pyx_t_23 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_14), NULL); if (unlikely(!__pyx_t_23)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 73; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_23); __pyx_t_35 = PyBytes_AS_STRING(__pyx_t_23); __pyx_t_36 = (__pyx_t_35 + PyBytes_GET_SIZE(__pyx_t_23)); for (__pyx_t_37 = __pyx_t_35; __pyx_t_37 < __pyx_t_36; __pyx_t_37++) { __pyx_t_34 = __pyx_t_37; __pyx_t_33 = PyBytes_FromStringAndSize(__pyx_t_34 + 0, 1 - 0); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 73; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __Pyx_XDECREF(((PyObject *)__pyx_v_n6)); __pyx_v_n6 = __pyx_t_33; __pyx_t_33 = 0; /* "cerrormodel.pyx":74 * repunit_dict[n1+n2+n3+n4+n5] = normalize_repunit(n1+n2+n3+n4+n5) * for n6 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5+n6] = normalize_repunit(n1+n2+n3+n4+n5+n6) # <<<<<<<<<<<<<< * for n7 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5+n6+n7] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7) */ __pyx_t_33 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __pyx_t_28 = PyNumber_Add(((PyObject *)__pyx_t_33), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_28)); __Pyx_DECREF(((PyObject *)__pyx_t_33)); __pyx_t_33 = 0; __pyx_t_33 = PyNumber_Add(((PyObject *)__pyx_t_28), ((PyObject *)__pyx_v_n4)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __Pyx_DECREF(((PyObject *)__pyx_t_28)); __pyx_t_28 = 0; __pyx_t_28 = PyNumber_Add(((PyObject *)__pyx_t_33), ((PyObject *)__pyx_v_n5)); if (unlikely(!__pyx_t_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_28)); __Pyx_DECREF(((PyObject *)__pyx_t_33)); __pyx_t_33 = 0; __pyx_t_33 = PyNumber_Add(((PyObject *)__pyx_t_28), ((PyObject *)__pyx_v_n6)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __Pyx_DECREF(((PyObject *)__pyx_t_28)); __pyx_t_28 = 0; __pyx_t_28 = ((PyObject *)__pyx_f_11cerrormodel_normalize_repunit(__pyx_t_33)); if (unlikely(!__pyx_t_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_28); __Pyx_DECREF(((PyObject *)__pyx_t_33)); __pyx_t_33 = 0; if (unlikely(((PyObject *)__pyx_v_11cerrormodel_repunit_dict) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_33 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __pyx_t_38 = PyNumber_Add(((PyObject *)__pyx_t_33), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_38)); __Pyx_DECREF(((PyObject *)__pyx_t_33)); __pyx_t_33 = 0; __pyx_t_33 = PyNumber_Add(((PyObject *)__pyx_t_38), ((PyObject *)__pyx_v_n4)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __Pyx_DECREF(((PyObject *)__pyx_t_38)); __pyx_t_38 = 0; __pyx_t_38 = PyNumber_Add(((PyObject *)__pyx_t_33), ((PyObject *)__pyx_v_n5)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_38)); __Pyx_DECREF(((PyObject *)__pyx_t_33)); __pyx_t_33 = 0; __pyx_t_33 = PyNumber_Add(((PyObject *)__pyx_t_38), ((PyObject *)__pyx_v_n6)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __Pyx_DECREF(((PyObject *)__pyx_t_38)); __pyx_t_38 = 0; if (PyDict_SetItem(((PyObject *)__pyx_v_11cerrormodel_repunit_dict), ((PyObject *)__pyx_t_33), __pyx_t_28) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 74; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_33)); __pyx_t_33 = 0; __Pyx_DECREF(__pyx_t_28); __pyx_t_28 = 0; /* "cerrormodel.pyx":75 * for n6 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5+n6] = normalize_repunit(n1+n2+n3+n4+n5+n6) * for n7 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3+n4+n5+n6+n7] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7) * for n8 in bytes('ACGT'): */ __pyx_t_28 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_15), NULL); if (unlikely(!__pyx_t_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 75; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_28); __pyx_t_40 = PyBytes_AS_STRING(__pyx_t_28); __pyx_t_41 = (__pyx_t_40 + PyBytes_GET_SIZE(__pyx_t_28)); for (__pyx_t_42 = __pyx_t_40; __pyx_t_42 < __pyx_t_41; __pyx_t_42++) { __pyx_t_39 = __pyx_t_42; __pyx_t_33 = PyBytes_FromStringAndSize(__pyx_t_39 + 0, 1 - 0); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 75; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __Pyx_XDECREF(((PyObject *)__pyx_v_n7)); __pyx_v_n7 = __pyx_t_33; __pyx_t_33 = 0; /* "cerrormodel.pyx":76 * repunit_dict[n1+n2+n3+n4+n5+n6] = normalize_repunit(n1+n2+n3+n4+n5+n6) * for n7 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5+n6+n7] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7) # <<<<<<<<<<<<<< * for n8 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5+n6+n7+n8] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7+n8) */ __pyx_t_33 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __pyx_t_38 = PyNumber_Add(((PyObject *)__pyx_t_33), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_38)); __Pyx_DECREF(((PyObject *)__pyx_t_33)); __pyx_t_33 = 0; __pyx_t_33 = PyNumber_Add(((PyObject *)__pyx_t_38), ((PyObject *)__pyx_v_n4)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __Pyx_DECREF(((PyObject *)__pyx_t_38)); __pyx_t_38 = 0; __pyx_t_38 = PyNumber_Add(((PyObject *)__pyx_t_33), ((PyObject *)__pyx_v_n5)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_38)); __Pyx_DECREF(((PyObject *)__pyx_t_33)); __pyx_t_33 = 0; __pyx_t_33 = PyNumber_Add(((PyObject *)__pyx_t_38), ((PyObject *)__pyx_v_n6)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_33)); __Pyx_DECREF(((PyObject *)__pyx_t_38)); __pyx_t_38 = 0; __pyx_t_38 = PyNumber_Add(((PyObject *)__pyx_t_33), ((PyObject *)__pyx_v_n7)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_38)); __Pyx_DECREF(((PyObject *)__pyx_t_33)); __pyx_t_33 = 0; __pyx_t_33 = ((PyObject *)__pyx_f_11cerrormodel_normalize_repunit(__pyx_t_38)); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_33); __Pyx_DECREF(((PyObject *)__pyx_t_38)); __pyx_t_38 = 0; if (unlikely(((PyObject *)__pyx_v_11cerrormodel_repunit_dict) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_38 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_38)); __pyx_t_43 = PyNumber_Add(((PyObject *)__pyx_t_38), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __Pyx_DECREF(((PyObject *)__pyx_t_38)); __pyx_t_38 = 0; __pyx_t_38 = PyNumber_Add(((PyObject *)__pyx_t_43), ((PyObject *)__pyx_v_n4)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_38)); __Pyx_DECREF(((PyObject *)__pyx_t_43)); __pyx_t_43 = 0; __pyx_t_43 = PyNumber_Add(((PyObject *)__pyx_t_38), ((PyObject *)__pyx_v_n5)); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __Pyx_DECREF(((PyObject *)__pyx_t_38)); __pyx_t_38 = 0; __pyx_t_38 = PyNumber_Add(((PyObject *)__pyx_t_43), ((PyObject *)__pyx_v_n6)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_38)); __Pyx_DECREF(((PyObject *)__pyx_t_43)); __pyx_t_43 = 0; __pyx_t_43 = PyNumber_Add(((PyObject *)__pyx_t_38), ((PyObject *)__pyx_v_n7)); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __Pyx_DECREF(((PyObject *)__pyx_t_38)); __pyx_t_38 = 0; if (PyDict_SetItem(((PyObject *)__pyx_v_11cerrormodel_repunit_dict), ((PyObject *)__pyx_t_43), __pyx_t_33) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 76; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_43)); __pyx_t_43 = 0; __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0; /* "cerrormodel.pyx":77 * for n7 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5+n6+n7] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7) * for n8 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3+n4+n5+n6+n7+n8] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7+n8) * if length <= 8: */ __pyx_t_33 = PyObject_Call(((PyObject *)((PyObject*)(&PyBytes_Type))), ((PyObject *)__pyx_k_tuple_16), NULL); if (unlikely(!__pyx_t_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_33); __pyx_t_45 = PyBytes_AS_STRING(__pyx_t_33); __pyx_t_46 = (__pyx_t_45 + PyBytes_GET_SIZE(__pyx_t_33)); for (__pyx_t_47 = __pyx_t_45; __pyx_t_47 < __pyx_t_46; __pyx_t_47++) { __pyx_t_44 = __pyx_t_47; __pyx_t_43 = PyBytes_FromStringAndSize(__pyx_t_44 + 0, 1 - 0); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __Pyx_XDECREF(((PyObject *)__pyx_v_n8)); __pyx_v_n8 = __pyx_t_43; __pyx_t_43 = 0; /* "cerrormodel.pyx":78 * repunit_dict[n1+n2+n3+n4+n5+n6+n7] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7) * for n8 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5+n6+n7+n8] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7+n8) # <<<<<<<<<<<<<< * if length <= 8: * return repunit_dict[cunit] */ __pyx_t_43 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __pyx_t_38 = PyNumber_Add(((PyObject *)__pyx_t_43), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_38)); __Pyx_DECREF(((PyObject *)__pyx_t_43)); __pyx_t_43 = 0; __pyx_t_43 = PyNumber_Add(((PyObject *)__pyx_t_38), ((PyObject *)__pyx_v_n4)); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __Pyx_DECREF(((PyObject *)__pyx_t_38)); __pyx_t_38 = 0; __pyx_t_38 = PyNumber_Add(((PyObject *)__pyx_t_43), ((PyObject *)__pyx_v_n5)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_38)); __Pyx_DECREF(((PyObject *)__pyx_t_43)); __pyx_t_43 = 0; __pyx_t_43 = PyNumber_Add(((PyObject *)__pyx_t_38), ((PyObject *)__pyx_v_n6)); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __Pyx_DECREF(((PyObject *)__pyx_t_38)); __pyx_t_38 = 0; __pyx_t_38 = PyNumber_Add(((PyObject *)__pyx_t_43), ((PyObject *)__pyx_v_n7)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_38)); __Pyx_DECREF(((PyObject *)__pyx_t_43)); __pyx_t_43 = 0; __pyx_t_43 = PyNumber_Add(((PyObject *)__pyx_t_38), ((PyObject *)__pyx_v_n8)); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __Pyx_DECREF(((PyObject *)__pyx_t_38)); __pyx_t_38 = 0; __pyx_t_38 = ((PyObject *)__pyx_f_11cerrormodel_normalize_repunit(__pyx_t_43)); if (unlikely(!__pyx_t_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_38); __Pyx_DECREF(((PyObject *)__pyx_t_43)); __pyx_t_43 = 0; if (unlikely(((PyObject *)__pyx_v_11cerrormodel_repunit_dict) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_43 = PyNumber_Add(((PyObject *)__pyx_v_n1), ((PyObject *)__pyx_v_n2)); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __pyx_t_48 = PyNumber_Add(((PyObject *)__pyx_t_43), ((PyObject *)__pyx_v_n3)); if (unlikely(!__pyx_t_48)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_48)); __Pyx_DECREF(((PyObject *)__pyx_t_43)); __pyx_t_43 = 0; __pyx_t_43 = PyNumber_Add(((PyObject *)__pyx_t_48), ((PyObject *)__pyx_v_n4)); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __Pyx_DECREF(((PyObject *)__pyx_t_48)); __pyx_t_48 = 0; __pyx_t_48 = PyNumber_Add(((PyObject *)__pyx_t_43), ((PyObject *)__pyx_v_n5)); if (unlikely(!__pyx_t_48)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_48)); __Pyx_DECREF(((PyObject *)__pyx_t_43)); __pyx_t_43 = 0; __pyx_t_43 = PyNumber_Add(((PyObject *)__pyx_t_48), ((PyObject *)__pyx_v_n6)); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __Pyx_DECREF(((PyObject *)__pyx_t_48)); __pyx_t_48 = 0; __pyx_t_48 = PyNumber_Add(((PyObject *)__pyx_t_43), ((PyObject *)__pyx_v_n7)); if (unlikely(!__pyx_t_48)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_48)); __Pyx_DECREF(((PyObject *)__pyx_t_43)); __pyx_t_43 = 0; __pyx_t_43 = PyNumber_Add(((PyObject *)__pyx_t_48), ((PyObject *)__pyx_v_n8)); if (unlikely(!__pyx_t_43)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_43)); __Pyx_DECREF(((PyObject *)__pyx_t_48)); __pyx_t_48 = 0; if (PyDict_SetItem(((PyObject *)__pyx_v_11cerrormodel_repunit_dict), ((PyObject *)__pyx_t_43), __pyx_t_38) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 78; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_43)); __pyx_t_43 = 0; __Pyx_DECREF(__pyx_t_38); __pyx_t_38 = 0; } __Pyx_DECREF(__pyx_t_33); __pyx_t_33 = 0; } __Pyx_DECREF(__pyx_t_28); __pyx_t_28 = 0; } __Pyx_DECREF(__pyx_t_23); __pyx_t_23 = 0; } __Pyx_DECREF(__pyx_t_22); __pyx_t_22 = 0; } __Pyx_DECREF(__pyx_t_21); __pyx_t_21 = 0; } __Pyx_DECREF(__pyx_t_16); __pyx_t_16 = 0; } __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; } __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L9; } __pyx_L9:; /* "cerrormodel.pyx":79 * for n8 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5+n6+n7+n8] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7+n8) * if length <= 8: # <<<<<<<<<<<<<< * return repunit_dict[cunit] * return normalize_repunit(cunit) */ __pyx_t_6 = (__pyx_v_length <= 8); if (__pyx_t_6) { /* "cerrormodel.pyx":80 * repunit_dict[n1+n2+n3+n4+n5+n6+n7+n8] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7+n8) * if length <= 8: * return repunit_dict[cunit] # <<<<<<<<<<<<<< * return normalize_repunit(cunit) * */ __Pyx_XDECREF(((PyObject *)__pyx_r)); if (unlikely(((PyObject *)__pyx_v_11cerrormodel_repunit_dict) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 80; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_8 = PyBytes_FromString(__pyx_v_cunit); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 80; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_8)); __pyx_t_7 = __Pyx_PyDict_GetItem(((PyObject *)__pyx_v_11cerrormodel_repunit_dict), ((PyObject *)__pyx_t_8)); if (!__pyx_t_7) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 80; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_7))||((__pyx_t_7) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_7)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 80; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = ((PyObject*)__pyx_t_7); __pyx_t_7 = 0; goto __pyx_L0; goto __pyx_L26; } __pyx_L26:; /* "cerrormodel.pyx":81 * if length <= 8: * return repunit_dict[cunit] * return normalize_repunit(cunit) # <<<<<<<<<<<<<< * * ################################################################################################### */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_7 = PyBytes_FromString(__pyx_v_cunit); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 81; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_7)); __pyx_t_8 = ((PyObject *)__pyx_f_11cerrormodel_normalize_repunit(__pyx_t_7)); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 81; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __Pyx_DECREF(((PyObject *)__pyx_t_7)); __pyx_t_7 = 0; __pyx_r = ((PyObject*)__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L0; __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_7); __Pyx_XDECREF(__pyx_t_8); __Pyx_XDECREF(__pyx_t_16); __Pyx_XDECREF(__pyx_t_21); __Pyx_XDECREF(__pyx_t_22); __Pyx_XDECREF(__pyx_t_23); __Pyx_XDECREF(__pyx_t_28); __Pyx_XDECREF(__pyx_t_33); __Pyx_XDECREF(__pyx_t_38); __Pyx_XDECREF(__pyx_t_43); __Pyx_XDECREF(__pyx_t_48); __Pyx_AddTraceback("cerrormodel.normalize_repunit_fast", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_n1); __Pyx_XDECREF(__pyx_v_n2); __Pyx_XDECREF(__pyx_v_n3); __Pyx_XDECREF(__pyx_v_n4); __Pyx_XDECREF(__pyx_v_n5); __Pyx_XDECREF(__pyx_v_n6); __Pyx_XDECREF(__pyx_v_n7); __Pyx_XDECREF(__pyx_v_n8); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":85 * ################################################################################################### * * cdef bytes normalize_repunit( bytes unit ): # <<<<<<<<<<<<<< * cdef int length = len(unit) * cdef list unit2list = [{'A':'T','T':'A','C':'G','G':'C'}.get(c,'N') for c in unit] */ static PyObject *__pyx_f_11cerrormodel_normalize_repunit(PyObject *__pyx_v_unit) { int __pyx_v_length; PyObject *__pyx_v_unit2list = 0; PyObject *__pyx_v_unit2 = 0; PyObject *__pyx_v_normunit = 0; PyObject *__pyx_v_c = NULL; PyObject *__pyx_v_i = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations Py_ssize_t __pyx_t_1; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; PyObject *(*__pyx_t_4)(PyObject *); PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; int __pyx_t_7; Py_ssize_t __pyx_t_8; Py_ssize_t __pyx_t_9; PyObject *__pyx_t_10 = NULL; int __pyx_t_11; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("normalize_repunit", 0); __Pyx_INCREF(__pyx_v_unit); /* "cerrormodel.pyx":86 * * cdef bytes normalize_repunit( bytes unit ): * cdef int length = len(unit) # <<<<<<<<<<<<<< * cdef list unit2list = [{'A':'T','T':'A','C':'G','G':'C'}.get(c,'N') for c in unit] * unit2list.reverse() */ if (unlikely(((PyObject *)__pyx_v_unit) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 86; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_1 = PyBytes_GET_SIZE(((PyObject *)__pyx_v_unit)); if (unlikely(__pyx_t_1 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 86; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_length = __pyx_t_1; /* "cerrormodel.pyx":87 * cdef bytes normalize_repunit( bytes unit ): * cdef int length = len(unit) * cdef list unit2list = [{'A':'T','T':'A','C':'G','G':'C'}.get(c,'N') for c in unit] # <<<<<<<<<<<<<< * unit2list.reverse() * cdef bytes unit2 = ''.join(unit2list) */ __pyx_t_2 = PyList_New(0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyObject_GetIter(((PyObject *)__pyx_v_unit)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = Py_TYPE(__pyx_t_3)->tp_iternext; for (;;) { { __pyx_t_5 = __pyx_t_4(__pyx_t_3); if (unlikely(!__pyx_t_5)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_5); } __Pyx_XDECREF(__pyx_v_c); __pyx_v_c = __pyx_t_5; __pyx_t_5 = 0; __pyx_t_5 = PyDict_New(); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_5)); if (PyDict_SetItem(__pyx_t_5, ((PyObject *)__pyx_n_s__A), ((PyObject *)__pyx_n_s__T)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_5, ((PyObject *)__pyx_n_s__T), ((PyObject *)__pyx_n_s__A)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_5, ((PyObject *)__pyx_n_s__C), ((PyObject *)__pyx_n_s__G)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_5, ((PyObject *)__pyx_n_s__G), ((PyObject *)__pyx_n_s__C)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_6 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_t_5), __pyx_v_c, ((PyObject *)__pyx_n_s__N)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; if (unlikely(__Pyx_PyList_Append(__pyx_t_2, (PyObject*)__pyx_t_6))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 87; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; } __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = ((PyObject *)__pyx_t_2); __Pyx_INCREF(__pyx_t_3); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_v_unit2list = ((PyObject*)__pyx_t_3); __pyx_t_3 = 0; /* "cerrormodel.pyx":88 * cdef int length = len(unit) * cdef list unit2list = [{'A':'T','T':'A','C':'G','G':'C'}.get(c,'N') for c in unit] * unit2list.reverse() # <<<<<<<<<<<<<< * cdef bytes unit2 = ''.join(unit2list) * unit2 += unit2 */ __pyx_t_7 = PyList_Reverse(__pyx_v_unit2list); if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 88; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "cerrormodel.pyx":89 * cdef list unit2list = [{'A':'T','T':'A','C':'G','G':'C'}.get(c,'N') for c in unit] * unit2list.reverse() * cdef bytes unit2 = ''.join(unit2list) # <<<<<<<<<<<<<< * unit2 += unit2 * unit += unit */ __pyx_t_3 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_17), __pyx_n_s__join); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 89; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 89; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_INCREF(((PyObject *)__pyx_v_unit2list)); PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_v_unit2list)); __Pyx_GIVEREF(((PyObject *)__pyx_v_unit2list)); __pyx_t_6 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 89; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_6))||((__pyx_t_6) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_6)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 89; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_unit2 = ((PyObject*)__pyx_t_6); __pyx_t_6 = 0; /* "cerrormodel.pyx":90 * unit2list.reverse() * cdef bytes unit2 = ''.join(unit2list) * unit2 += unit2 # <<<<<<<<<<<<<< * unit += unit * cdef bytes normunit = sorted([ unit[i:i+length] for i in range(length) ] + [ unit2[i:i+length]+'-' for i in range(length) ])[0] */ __pyx_t_6 = PyNumber_InPlaceAdd(((PyObject *)__pyx_v_unit2), ((PyObject *)__pyx_v_unit2)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 90; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_6)); __Pyx_DECREF(((PyObject *)__pyx_v_unit2)); __pyx_v_unit2 = __pyx_t_6; __pyx_t_6 = 0; /* "cerrormodel.pyx":91 * cdef bytes unit2 = ''.join(unit2list) * unit2 += unit2 * unit += unit # <<<<<<<<<<<<<< * cdef bytes normunit = sorted([ unit[i:i+length] for i in range(length) ] + [ unit2[i:i+length]+'-' for i in range(length) ])[0] * if normunit[-1] == '-': */ __pyx_t_6 = PyNumber_InPlaceAdd(((PyObject *)__pyx_v_unit), ((PyObject *)__pyx_v_unit)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 91; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_6)); __Pyx_DECREF(((PyObject *)__pyx_v_unit)); __pyx_v_unit = __pyx_t_6; __pyx_t_6 = 0; /* "cerrormodel.pyx":92 * unit2 += unit2 * unit += unit * cdef bytes normunit = sorted([ unit[i:i+length] for i in range(length) ] + [ unit2[i:i+length]+'-' for i in range(length) ])[0] # <<<<<<<<<<<<<< * if normunit[-1] == '-': * normunit = normunit[:-1].lower() */ __pyx_t_6 = PyList_New(0); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_2 = PyInt_FromLong(__pyx_v_length); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_builtin_range, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; if (PyList_CheckExact(__pyx_t_2) || PyTuple_CheckExact(__pyx_t_2)) { __pyx_t_3 = __pyx_t_2; __Pyx_INCREF(__pyx_t_3); __pyx_t_1 = 0; __pyx_t_4 = NULL; } else { __pyx_t_1 = -1; __pyx_t_3 = PyObject_GetIter(__pyx_t_2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = Py_TYPE(__pyx_t_3)->tp_iternext; } __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; for (;;) { if (!__pyx_t_4 && PyList_CheckExact(__pyx_t_3)) { if (__pyx_t_1 >= PyList_GET_SIZE(__pyx_t_3)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_2 = PyList_GET_ITEM(__pyx_t_3, __pyx_t_1); __Pyx_INCREF(__pyx_t_2); __pyx_t_1++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_2 = PySequence_ITEM(__pyx_t_3, __pyx_t_1); __pyx_t_1++; if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else if (!__pyx_t_4 && PyTuple_CheckExact(__pyx_t_3)) { if (__pyx_t_1 >= PyTuple_GET_SIZE(__pyx_t_3)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_2 = PyTuple_GET_ITEM(__pyx_t_3, __pyx_t_1); __Pyx_INCREF(__pyx_t_2); __pyx_t_1++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_2 = PySequence_ITEM(__pyx_t_3, __pyx_t_1); __pyx_t_1++; if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else { __pyx_t_2 = __pyx_t_4(__pyx_t_3); if (unlikely(!__pyx_t_2)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_2); } __Pyx_XDECREF(__pyx_v_i); __pyx_v_i = __pyx_t_2; __pyx_t_2 = 0; __pyx_t_8 = __Pyx_PyIndex_AsSsize_t(__pyx_v_i); if (unlikely((__pyx_t_8 == (Py_ssize_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = PyInt_FromLong(__pyx_v_length); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_5 = PyNumber_Add(__pyx_v_i, __pyx_t_2); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_9 = __Pyx_PyIndex_AsSsize_t(__pyx_t_5); if (unlikely((__pyx_t_9 == (Py_ssize_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = __Pyx_PySequence_GetSlice(((PyObject *)__pyx_v_unit), __pyx_t_8, __pyx_t_9); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_5)); if (unlikely(__Pyx_PyList_Append(__pyx_t_6, (PyObject*)__pyx_t_5))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; } __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyList_New(0); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = PyInt_FromLong(__pyx_v_length); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_5); __Pyx_GIVEREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = PyObject_Call(__pyx_builtin_range, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; if (PyList_CheckExact(__pyx_t_5) || PyTuple_CheckExact(__pyx_t_5)) { __pyx_t_2 = __pyx_t_5; __Pyx_INCREF(__pyx_t_2); __pyx_t_1 = 0; __pyx_t_4 = NULL; } else { __pyx_t_1 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_4 = Py_TYPE(__pyx_t_2)->tp_iternext; } __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; for (;;) { if (!__pyx_t_4 && PyList_CheckExact(__pyx_t_2)) { if (__pyx_t_1 >= PyList_GET_SIZE(__pyx_t_2)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_5 = PyList_GET_ITEM(__pyx_t_2, __pyx_t_1); __Pyx_INCREF(__pyx_t_5); __pyx_t_1++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_5 = PySequence_ITEM(__pyx_t_2, __pyx_t_1); __pyx_t_1++; if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else if (!__pyx_t_4 && PyTuple_CheckExact(__pyx_t_2)) { if (__pyx_t_1 >= PyTuple_GET_SIZE(__pyx_t_2)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_5 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_1); __Pyx_INCREF(__pyx_t_5); __pyx_t_1++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_5 = PySequence_ITEM(__pyx_t_2, __pyx_t_1); __pyx_t_1++; if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else { __pyx_t_5 = __pyx_t_4(__pyx_t_2); if (unlikely(!__pyx_t_5)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_5); } __Pyx_XDECREF(__pyx_v_i); __pyx_v_i = __pyx_t_5; __pyx_t_5 = 0; __pyx_t_9 = __Pyx_PyIndex_AsSsize_t(__pyx_v_i); if (unlikely((__pyx_t_9 == (Py_ssize_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_5 = PyInt_FromLong(__pyx_v_length); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_10 = PyNumber_Add(__pyx_v_i, __pyx_t_5); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_8 = __Pyx_PyIndex_AsSsize_t(__pyx_t_10); if (unlikely((__pyx_t_8 == (Py_ssize_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; __pyx_t_10 = __Pyx_PySequence_GetSlice(((PyObject *)__pyx_v_unit2), __pyx_t_9, __pyx_t_8); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_10)); __pyx_t_5 = PyNumber_Add(((PyObject *)__pyx_t_10), ((PyObject *)__pyx_kp_s_18)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(((PyObject *)__pyx_t_10)); __pyx_t_10 = 0; if (unlikely(__Pyx_PyList_Append(__pyx_t_3, (PyObject*)__pyx_t_5))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; } __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyNumber_Add(((PyObject *)__pyx_t_6), ((PyObject *)__pyx_t_3)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_t_2)); __Pyx_GIVEREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_builtin_sorted, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_t_3 = __Pyx_GetItemInt(__pyx_t_2, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_3))||((__pyx_t_3) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_3)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_normunit = ((PyObject*)__pyx_t_3); __pyx_t_3 = 0; /* "cerrormodel.pyx":93 * unit += unit * cdef bytes normunit = sorted([ unit[i:i+length] for i in range(length) ] + [ unit2[i:i+length]+'-' for i in range(length) ])[0] * if normunit[-1] == '-': # <<<<<<<<<<<<<< * normunit = normunit[:-1].lower() * return normunit */ __pyx_t_3 = __Pyx_GetItemInt(((PyObject *)__pyx_v_normunit), -1, sizeof(long), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 93; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = PyObject_RichCompare(__pyx_t_3, ((PyObject *)__pyx_kp_s_18), Py_EQ); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 93; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_11 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_11 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 93; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (__pyx_t_11) { /* "cerrormodel.pyx":94 * cdef bytes normunit = sorted([ unit[i:i+length] for i in range(length) ] + [ unit2[i:i+length]+'-' for i in range(length) ])[0] * if normunit[-1] == '-': * normunit = normunit[:-1].lower() # <<<<<<<<<<<<<< * return normunit * */ __pyx_t_2 = __Pyx_PySequence_GetSlice(((PyObject *)__pyx_v_normunit), 0, -1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 94; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); __pyx_t_3 = PyObject_GetAttr(((PyObject *)__pyx_t_2), __pyx_n_s__lower); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 94; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 94; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 94; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_v_normunit)); __pyx_v_normunit = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; goto __pyx_L9; } __pyx_L9:; /* "cerrormodel.pyx":95 * if normunit[-1] == '-': * normunit = normunit[:-1].lower() * return normunit # <<<<<<<<<<<<<< * * ################################################################################################### */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __Pyx_INCREF(((PyObject *)__pyx_v_normunit)); __pyx_r = __pyx_v_normunit; goto __pyx_L0; __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_10); __Pyx_AddTraceback("cerrormodel.normalize_repunit", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_unit2list); __Pyx_XDECREF(__pyx_v_unit2); __Pyx_XDECREF(__pyx_v_normunit); __Pyx_XDECREF(__pyx_v_c); __Pyx_XDECREF(__pyx_v_i); __Pyx_XDECREF(__pyx_v_unit); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":99 * ################################################################################################### * * cpdef list get_repeats( bytes sequence, int min_length, long pos ): # <<<<<<<<<<<<<< * """ Returns list of non-overlapping (position, size, tandemunit); * tandemunit is lower case for units on the reverse strand """ */ static PyObject *__pyx_pw_11cerrormodel_1get_repeats(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static PyObject *__pyx_f_11cerrormodel_get_repeats(PyObject *__pyx_v_sequence, int __pyx_v_min_length, long __pyx_v_pos, CYTHON_UNUSED int __pyx_skip_dispatch) { CYTHON_UNUSED char *__pyx_v_seq; int __pyx_v_seqlen; PyObject *__pyx_v_sizes = 0; PyObject *__pyx_v_displacements = 0; char *__pyx_v_csizes; char *__pyx_v_cdisplacements; PyObject *__pyx_v_repeats = 0; int __pyx_v_idx; int __pyx_v_size; int __pyx_v_displacement; PyObject *__pyx_v_tandemunit = 0; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations char *__pyx_t_1; Py_ssize_t __pyx_t_2; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; PyObject *(*__pyx_t_7)(PyObject *); int __pyx_t_8; int __pyx_t_9; int __pyx_t_10; int __pyx_t_11; int __pyx_t_12; int __pyx_t_13; int __pyx_t_14; int __pyx_t_15; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("get_repeats", 0); /* "cerrormodel.pyx":103 * tandemunit is lower case for units on the reverse strand """ * * cdef char* seq = sequence # <<<<<<<<<<<<<< * cdef int seqlen = len(sequence) * cdef bytes sizes */ __pyx_t_1 = PyBytes_AsString(((PyObject *)__pyx_v_sequence)); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 103; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_seq = __pyx_t_1; /* "cerrormodel.pyx":104 * * cdef char* seq = sequence * cdef int seqlen = len(sequence) # <<<<<<<<<<<<<< * cdef bytes sizes * cdef bytes displacements */ if (unlikely(((PyObject *)__pyx_v_sequence) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 104; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_2 = PyBytes_GET_SIZE(((PyObject *)__pyx_v_sequence)); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 104; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_seqlen = __pyx_t_2; /* "cerrormodel.pyx":113 * cdef bytes tandemunit * * (sizes, displacements) = calculate_size_and_displacement( sequence, True ) # <<<<<<<<<<<<<< * csizes = sizes * cdisplacements = displacements */ __pyx_t_3 = ((PyObject *)__pyx_f_11cerrormodel_calculate_size_and_displacement(__pyx_v_sequence, 1)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 113; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); if (likely(PyTuple_CheckExact(__pyx_t_3))) { PyObject* sequence = __pyx_t_3; #if CYTHON_COMPILING_IN_CPYTHON Py_ssize_t size = Py_SIZE(sequence); #else Py_ssize_t size = PySequence_Size(sequence); #endif if (unlikely(size != 2)) { if (size > 2) __Pyx_RaiseTooManyValuesError(2); else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 113; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_4 = PyTuple_GET_ITEM(sequence, 0); __pyx_t_5 = PyTuple_GET_ITEM(sequence, 1); __Pyx_INCREF(__pyx_t_4); __Pyx_INCREF(__pyx_t_5); #else __pyx_t_4 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 113; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_5 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 113; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; } else if (1) { __Pyx_RaiseNoneNotIterableError(); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 113; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } else { Py_ssize_t index = -1; __pyx_t_6 = PyObject_GetIter(__pyx_t_3); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 113; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_7 = Py_TYPE(__pyx_t_6)->tp_iternext; index = 0; __pyx_t_4 = __pyx_t_7(__pyx_t_6); if (unlikely(!__pyx_t_4)) goto __pyx_L3_unpacking_failed; __Pyx_GOTREF(__pyx_t_4); index = 1; __pyx_t_5 = __pyx_t_7(__pyx_t_6); if (unlikely(!__pyx_t_5)) goto __pyx_L3_unpacking_failed; __Pyx_GOTREF(__pyx_t_5); if (__Pyx_IternextUnpackEndCheck(__pyx_t_7(__pyx_t_6), 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 113; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_7 = NULL; __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; goto __pyx_L4_unpacking_done; __pyx_L3_unpacking_failed:; __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_7 = NULL; if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 113; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_L4_unpacking_done:; } if (!(likely(PyBytes_CheckExact(__pyx_t_4))||((__pyx_t_4) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_4)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 113; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (!(likely(PyBytes_CheckExact(__pyx_t_5))||((__pyx_t_5) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_5)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 113; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_sizes = ((PyObject*)__pyx_t_4); __pyx_t_4 = 0; __pyx_v_displacements = ((PyObject*)__pyx_t_5); __pyx_t_5 = 0; /* "cerrormodel.pyx":114 * * (sizes, displacements) = calculate_size_and_displacement( sequence, True ) * csizes = sizes # <<<<<<<<<<<<<< * cdisplacements = displacements * */ __pyx_t_1 = PyBytes_AsString(((PyObject *)__pyx_v_sizes)); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 114; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_csizes = __pyx_t_1; /* "cerrormodel.pyx":115 * (sizes, displacements) = calculate_size_and_displacement( sequence, True ) * csizes = sizes * cdisplacements = displacements # <<<<<<<<<<<<<< * * repeats = [] */ __pyx_t_1 = PyBytes_AsString(((PyObject *)__pyx_v_displacements)); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 115; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_cdisplacements = __pyx_t_1; /* "cerrormodel.pyx":117 * cdisplacements = displacements * * repeats = [] # <<<<<<<<<<<<<< * * for idx in range(seqlen): */ __pyx_t_3 = PyList_New(0); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 117; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_v_repeats = __pyx_t_3; __pyx_t_3 = 0; /* "cerrormodel.pyx":119 * repeats = [] * * for idx in range(seqlen): # <<<<<<<<<<<<<< * * size = csizes[idx] */ __pyx_t_8 = __pyx_v_seqlen; for (__pyx_t_9 = 0; __pyx_t_9 < __pyx_t_8; __pyx_t_9+=1) { __pyx_v_idx = __pyx_t_9; /* "cerrormodel.pyx":121 * for idx in range(seqlen): * * size = csizes[idx] # <<<<<<<<<<<<<< * if size >= min_length: * */ __pyx_v_size = ((int)(__pyx_v_csizes[__pyx_v_idx])); /* "cerrormodel.pyx":122 * * size = csizes[idx] * if size >= min_length: # <<<<<<<<<<<<<< * * # only add if not overlapping previously entered repeat */ __pyx_t_10 = (__pyx_v_size >= __pyx_v_min_length); if (__pyx_t_10) { /* "cerrormodel.pyx":125 * * # only add if not overlapping previously entered repeat * displacement = cdisplacements[idx] # <<<<<<<<<<<<<< * if len(repeats)==0 or repeats[-1][1] != size or len(repeats[-1][2]) != displacement or repeats[-1][0] + size < pos+idx: * tandemunit = normalize_repunit_fast(sequence[ idx : idx+displacement ]) */ __pyx_v_displacement = ((int)(__pyx_v_cdisplacements[__pyx_v_idx])); /* "cerrormodel.pyx":126 * # only add if not overlapping previously entered repeat * displacement = cdisplacements[idx] * if len(repeats)==0 or repeats[-1][1] != size or len(repeats[-1][2]) != displacement or repeats[-1][0] + size < pos+idx: # <<<<<<<<<<<<<< * tandemunit = normalize_repunit_fast(sequence[ idx : idx+displacement ]) * if tandemunit[0] != 'N': */ __pyx_t_2 = PyList_GET_SIZE(((PyObject *)__pyx_v_repeats)); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_10 = (__pyx_t_2 == 0); if (!__pyx_t_10) { __pyx_t_3 = __Pyx_GetItemInt_List(((PyObject *)__pyx_v_repeats), -1, sizeof(long), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = __Pyx_GetItemInt(__pyx_t_3, 1, sizeof(long), PyInt_FromLong); if (!__pyx_t_5) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyInt_FromLong(__pyx_v_size); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_t_5, __pyx_t_3, Py_NE); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_11 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_11 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (!__pyx_t_11) { __pyx_t_4 = __Pyx_GetItemInt_List(((PyObject *)__pyx_v_repeats), -1, sizeof(long), PyInt_FromLong); if (!__pyx_t_4) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = __Pyx_GetItemInt(__pyx_t_4, 2, sizeof(long), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_2 = PyObject_Length(__pyx_t_3); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_12 = (__pyx_t_2 != __pyx_v_displacement); if (!__pyx_t_12) { __pyx_t_3 = __Pyx_GetItemInt_List(((PyObject *)__pyx_v_repeats), -1, sizeof(long), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = __Pyx_GetItemInt(__pyx_t_3, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_4) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyInt_FromLong(__pyx_v_size); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = PyNumber_Add(__pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyInt_FromLong((__pyx_v_pos + __pyx_v_idx)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_t_5, __pyx_t_3, Py_LT); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_13 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_13 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 126; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_14 = __pyx_t_13; } else { __pyx_t_14 = __pyx_t_12; } __pyx_t_12 = __pyx_t_14; } else { __pyx_t_12 = __pyx_t_11; } __pyx_t_11 = __pyx_t_12; } else { __pyx_t_11 = __pyx_t_10; } if (__pyx_t_11) { /* "cerrormodel.pyx":127 * displacement = cdisplacements[idx] * if len(repeats)==0 or repeats[-1][1] != size or len(repeats[-1][2]) != displacement or repeats[-1][0] + size < pos+idx: * tandemunit = normalize_repunit_fast(sequence[ idx : idx+displacement ]) # <<<<<<<<<<<<<< * if tandemunit[0] != 'N': * repeats.append( (pos+idx, size, tandemunit) ) */ __pyx_t_4 = __Pyx_PySequence_GetSlice(((PyObject *)__pyx_v_sequence), __pyx_v_idx, (__pyx_v_idx + __pyx_v_displacement)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 127; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_4)); __pyx_t_3 = ((PyObject *)__pyx_f_11cerrormodel_normalize_repunit_fast(__pyx_t_4)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 127; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; __Pyx_XDECREF(((PyObject *)__pyx_v_tandemunit)); __pyx_v_tandemunit = ((PyObject*)__pyx_t_3); __pyx_t_3 = 0; /* "cerrormodel.pyx":128 * if len(repeats)==0 or repeats[-1][1] != size or len(repeats[-1][2]) != displacement or repeats[-1][0] + size < pos+idx: * tandemunit = normalize_repunit_fast(sequence[ idx : idx+displacement ]) * if tandemunit[0] != 'N': # <<<<<<<<<<<<<< * repeats.append( (pos+idx, size, tandemunit) ) * */ __pyx_t_3 = __Pyx_GetItemInt(((PyObject *)__pyx_v_tandemunit), 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 128; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_t_3, ((PyObject *)__pyx_n_s__N), Py_NE); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 128; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_11 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_11 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 128; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (__pyx_t_11) { /* "cerrormodel.pyx":129 * tandemunit = normalize_repunit_fast(sequence[ idx : idx+displacement ]) * if tandemunit[0] != 'N': * repeats.append( (pos+idx, size, tandemunit) ) # <<<<<<<<<<<<<< * * return repeats */ __pyx_t_4 = PyInt_FromLong((__pyx_v_pos + __pyx_v_idx)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 129; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyInt_FromLong(__pyx_v_size); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 129; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = PyTuple_New(3); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 129; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4); __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_3); __Pyx_INCREF(((PyObject *)__pyx_v_tandemunit)); PyTuple_SET_ITEM(__pyx_t_5, 2, ((PyObject *)__pyx_v_tandemunit)); __Pyx_GIVEREF(((PyObject *)__pyx_v_tandemunit)); __pyx_t_4 = 0; __pyx_t_3 = 0; __pyx_t_15 = PyList_Append(__pyx_v_repeats, ((PyObject *)__pyx_t_5)); if (unlikely(__pyx_t_15 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 129; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; goto __pyx_L9; } __pyx_L9:; goto __pyx_L8; } __pyx_L8:; goto __pyx_L7; } __pyx_L7:; } /* "cerrormodel.pyx":131 * repeats.append( (pos+idx, size, tandemunit) ) * * return repeats # <<<<<<<<<<<<<< * * ################################################################################################### */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __Pyx_INCREF(((PyObject *)__pyx_v_repeats)); __pyx_r = __pyx_v_repeats; goto __pyx_L0; __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_AddTraceback("cerrormodel.get_repeats", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_sizes); __Pyx_XDECREF(__pyx_v_displacements); __Pyx_XDECREF(__pyx_v_repeats); __Pyx_XDECREF(__pyx_v_tandemunit); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static PyObject *__pyx_pw_11cerrormodel_1get_repeats(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static char __pyx_doc_11cerrormodel_get_repeats[] = " Returns list of non-overlapping (position, size, tandemunit); \n tandemunit is lower case for units on the reverse strand "; static PyObject *__pyx_pw_11cerrormodel_1get_repeats(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_sequence = 0; int __pyx_v_min_length; long __pyx_v_pos; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("get_repeats (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__sequence,&__pyx_n_s__min_length,&__pyx_n_s__pos,0}; PyObject* values[3] = {0,0,0}; if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__sequence)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; case 1: if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__min_length)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("get_repeats", 1, 3, 3, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 2: if (likely((values[2] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__pos)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("get_repeats", 1, 3, 3, 2); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_repeats") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { goto __pyx_L5_argtuple_error; } else { values[0] = PyTuple_GET_ITEM(__pyx_args, 0); values[1] = PyTuple_GET_ITEM(__pyx_args, 1); values[2] = PyTuple_GET_ITEM(__pyx_args, 2); } __pyx_v_sequence = ((PyObject*)values[0]); __pyx_v_min_length = __Pyx_PyInt_AsInt(values[1]); if (unlikely((__pyx_v_min_length == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_pos = __Pyx_PyInt_AsLong(values[2]); if (unlikely((__pyx_v_pos == (long)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("get_repeats", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("cerrormodel.get_repeats", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_sequence), (&PyBytes_Type), 1, "sequence", 1))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = __pyx_pf_11cerrormodel_get_repeats(__pyx_self, __pyx_v_sequence, __pyx_v_min_length, __pyx_v_pos); goto __pyx_L0; __pyx_L1_error:; __pyx_r = NULL; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":99 * ################################################################################################### * * cpdef list get_repeats( bytes sequence, int min_length, long pos ): # <<<<<<<<<<<<<< * """ Returns list of non-overlapping (position, size, tandemunit); * tandemunit is lower case for units on the reverse strand """ */ static PyObject *__pyx_pf_11cerrormodel_get_repeats(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_sequence, int __pyx_v_min_length, long __pyx_v_pos) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("get_repeats", 0); __Pyx_XDECREF(__pyx_r); __pyx_t_1 = ((PyObject *)__pyx_f_11cerrormodel_get_repeats(__pyx_v_sequence, __pyx_v_min_length, __pyx_v_pos, 0)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 99; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("cerrormodel.get_repeats", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":135 * ################################################################################################### * * cpdef int approx_indel_error_rate( int size, int displacement ): # <<<<<<<<<<<<<< * """ Returns estimated indel error rate; larger is more """ * return approximate_indel_rate(size, displacement) */ static PyObject *__pyx_pw_11cerrormodel_3approx_indel_error_rate(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static int __pyx_f_11cerrormodel_approx_indel_error_rate(int __pyx_v_size, int __pyx_v_displacement, CYTHON_UNUSED int __pyx_skip_dispatch) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("approx_indel_error_rate", 0); /* "cerrormodel.pyx":137 * cpdef int approx_indel_error_rate( int size, int displacement ): * """ Returns estimated indel error rate; larger is more """ * return approximate_indel_rate(size, displacement) # <<<<<<<<<<<<<< * * ################################################################################################### */ __pyx_r = approximate_indel_rate(__pyx_v_size, __pyx_v_displacement); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static PyObject *__pyx_pw_11cerrormodel_3approx_indel_error_rate(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static char __pyx_doc_11cerrormodel_2approx_indel_error_rate[] = " Returns estimated indel error rate; larger is more "; static PyObject *__pyx_pw_11cerrormodel_3approx_indel_error_rate(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { int __pyx_v_size; int __pyx_v_displacement; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("approx_indel_error_rate (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__size,&__pyx_n_s__displacement,0}; PyObject* values[2] = {0,0}; if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__size)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; case 1: if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__displacement)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("approx_indel_error_rate", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 135; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "approx_indel_error_rate") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 135; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { goto __pyx_L5_argtuple_error; } else { values[0] = PyTuple_GET_ITEM(__pyx_args, 0); values[1] = PyTuple_GET_ITEM(__pyx_args, 1); } __pyx_v_size = __Pyx_PyInt_AsInt(values[0]); if (unlikely((__pyx_v_size == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 135; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_displacement = __Pyx_PyInt_AsInt(values[1]); if (unlikely((__pyx_v_displacement == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 135; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("approx_indel_error_rate", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 135; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("cerrormodel.approx_indel_error_rate", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; __pyx_r = __pyx_pf_11cerrormodel_2approx_indel_error_rate(__pyx_self, __pyx_v_size, __pyx_v_displacement); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":135 * ################################################################################################### * * cpdef int approx_indel_error_rate( int size, int displacement ): # <<<<<<<<<<<<<< * """ Returns estimated indel error rate; larger is more """ * return approximate_indel_rate(size, displacement) */ static PyObject *__pyx_pf_11cerrormodel_2approx_indel_error_rate(CYTHON_UNUSED PyObject *__pyx_self, int __pyx_v_size, int __pyx_v_displacement) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("approx_indel_error_rate", 0); __Pyx_XDECREF(__pyx_r); __pyx_t_1 = PyInt_FromLong(__pyx_f_11cerrormodel_approx_indel_error_rate(__pyx_v_size, __pyx_v_displacement, 0)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 135; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("cerrormodel.approx_indel_error_rate", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":141 * ################################################################################################### * * cdef tuple try_microsat( char* seq, int seqlen, int start, int replen, int direction ): # <<<<<<<<<<<<<< * cdef int minpos = start * cdef int maxpos = start */ static PyObject *__pyx_f_11cerrormodel_try_microsat(char *__pyx_v_seq, int __pyx_v_seqlen, int __pyx_v_start, int __pyx_v_replen, int __pyx_v_direction) { int __pyx_v_minpos; int __pyx_v_maxpos; int __pyx_v_length; PyObject *__pyx_v_character = 0; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations int __pyx_t_1; int __pyx_t_2; int __pyx_t_3; int __pyx_t_4; int __pyx_t_5; int __pyx_t_6; PyObject *__pyx_t_7 = NULL; PyObject *__pyx_t_8 = NULL; long __pyx_t_9; long __pyx_t_10; long __pyx_t_11; PyObject *__pyx_t_12 = NULL; PyObject *__pyx_t_13 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("try_microsat", 0); /* "cerrormodel.pyx":142 * * cdef tuple try_microsat( char* seq, int seqlen, int start, int replen, int direction ): * cdef int minpos = start # <<<<<<<<<<<<<< * cdef int maxpos = start * cdef int length */ __pyx_v_minpos = __pyx_v_start; /* "cerrormodel.pyx":143 * cdef tuple try_microsat( char* seq, int seqlen, int start, int replen, int direction ): * cdef int minpos = start * cdef int maxpos = start # <<<<<<<<<<<<<< * cdef int length * cdef bytes character */ __pyx_v_maxpos = __pyx_v_start; /* "cerrormodel.pyx":147 * cdef bytes character * * while minpos >= 0 and 0 <= minpos+replen*direction < seqlen and seq[minpos] == seq[minpos + replen*direction] and seq[minpos] != 'N': # <<<<<<<<<<<<<< * minpos -= 1 * */ while (1) { __pyx_t_1 = (__pyx_v_minpos >= 0); if (__pyx_t_1) { __pyx_t_2 = (__pyx_v_minpos + (__pyx_v_replen * __pyx_v_direction)); __pyx_t_3 = (0 <= __pyx_t_2); if (__pyx_t_3) { __pyx_t_3 = (__pyx_t_2 < __pyx_v_seqlen); } if (__pyx_t_3) { __pyx_t_4 = ((__pyx_v_seq[__pyx_v_minpos]) == (__pyx_v_seq[(__pyx_v_minpos + (__pyx_v_replen * __pyx_v_direction))])); if (__pyx_t_4) { __pyx_t_5 = ((__pyx_v_seq[__pyx_v_minpos]) != 'N'); __pyx_t_6 = __pyx_t_5; } else { __pyx_t_6 = __pyx_t_4; } __pyx_t_4 = __pyx_t_6; } else { __pyx_t_4 = __pyx_t_3; } __pyx_t_3 = __pyx_t_4; } else { __pyx_t_3 = __pyx_t_1; } if (!__pyx_t_3) break; /* "cerrormodel.pyx":148 * * while minpos >= 0 and 0 <= minpos+replen*direction < seqlen and seq[minpos] == seq[minpos + replen*direction] and seq[minpos] != 'N': * minpos -= 1 # <<<<<<<<<<<<<< * * while maxpos < seqlen and maxpos+replen*direction < seqlen and seq[maxpos] == seq[maxpos + replen*direction] and seq[maxpos] != 'N': */ __pyx_v_minpos = (__pyx_v_minpos - 1); } /* "cerrormodel.pyx":150 * minpos -= 1 * * while maxpos < seqlen and maxpos+replen*direction < seqlen and seq[maxpos] == seq[maxpos + replen*direction] and seq[maxpos] != 'N': # <<<<<<<<<<<<<< * maxpos += 1 * */ while (1) { __pyx_t_3 = (__pyx_v_maxpos < __pyx_v_seqlen); if (__pyx_t_3) { __pyx_t_1 = ((__pyx_v_maxpos + (__pyx_v_replen * __pyx_v_direction)) < __pyx_v_seqlen); if (__pyx_t_1) { __pyx_t_4 = ((__pyx_v_seq[__pyx_v_maxpos]) == (__pyx_v_seq[(__pyx_v_maxpos + (__pyx_v_replen * __pyx_v_direction))])); if (__pyx_t_4) { __pyx_t_6 = ((__pyx_v_seq[__pyx_v_maxpos]) != 'N'); __pyx_t_5 = __pyx_t_6; } else { __pyx_t_5 = __pyx_t_4; } __pyx_t_4 = __pyx_t_5; } else { __pyx_t_4 = __pyx_t_1; } __pyx_t_1 = __pyx_t_4; } else { __pyx_t_1 = __pyx_t_3; } if (!__pyx_t_1) break; /* "cerrormodel.pyx":151 * * while maxpos < seqlen and maxpos+replen*direction < seqlen and seq[maxpos] == seq[maxpos + replen*direction] and seq[maxpos] != 'N': * maxpos += 1 # <<<<<<<<<<<<<< * * length = maxpos - minpos + replen - 1 */ __pyx_v_maxpos = (__pyx_v_maxpos + 1); } /* "cerrormodel.pyx":153 * maxpos += 1 * * length = maxpos - minpos + replen - 1 # <<<<<<<<<<<<<< * * if length < 2*replen: */ __pyx_v_length = (((__pyx_v_maxpos - __pyx_v_minpos) + __pyx_v_replen) - 1); /* "cerrormodel.pyx":155 * length = maxpos - minpos + replen - 1 * * if length < 2*replen: # <<<<<<<<<<<<<< * character = seq[start] * return 1, character, start */ __pyx_t_1 = (__pyx_v_length < (2 * __pyx_v_replen)); if (__pyx_t_1) { /* "cerrormodel.pyx":156 * * if length < 2*replen: * character = seq[start] # <<<<<<<<<<<<<< * return 1, character, start * */ __pyx_t_7 = PyBytes_FromStringAndSize(&(__pyx_v_seq[__pyx_v_start]), 1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 156; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_7)); __pyx_v_character = __pyx_t_7; __pyx_t_7 = 0; /* "cerrormodel.pyx":157 * if length < 2*replen: * character = seq[start] * return 1, character, start # <<<<<<<<<<<<<< * * return length, seq[minpos+1:minpos+replen+1], min(minpos+1,minpos+1+replen*direction) */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_7 = PyInt_FromLong(__pyx_v_start); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 157; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __pyx_t_8 = PyTuple_New(3); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 157; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __Pyx_INCREF(__pyx_int_1); PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_int_1); __Pyx_GIVEREF(__pyx_int_1); __Pyx_INCREF(((PyObject *)__pyx_v_character)); PyTuple_SET_ITEM(__pyx_t_8, 1, ((PyObject *)__pyx_v_character)); __Pyx_GIVEREF(((PyObject *)__pyx_v_character)); PyTuple_SET_ITEM(__pyx_t_8, 2, __pyx_t_7); __Pyx_GIVEREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_r = __pyx_t_8; __pyx_t_8 = 0; goto __pyx_L0; goto __pyx_L7; } __pyx_L7:; /* "cerrormodel.pyx":159 * return 1, character, start * * return length, seq[minpos+1:minpos+replen+1], min(minpos+1,minpos+1+replen*direction) # <<<<<<<<<<<<<< * * ################################################################################################### */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_8 = PyInt_FromLong(__pyx_v_length); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 159; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __pyx_t_7 = PyBytes_FromStringAndSize(((const char*)__pyx_v_seq) + (__pyx_v_minpos + 1), ((__pyx_v_minpos + __pyx_v_replen) + 1) - (__pyx_v_minpos + 1)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 159; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_7)); __pyx_t_9 = ((__pyx_v_minpos + 1) + (__pyx_v_replen * __pyx_v_direction)); __pyx_t_10 = (__pyx_v_minpos + 1); if ((__pyx_t_9 < __pyx_t_10)) { __pyx_t_11 = __pyx_t_9; } else { __pyx_t_11 = __pyx_t_10; } __pyx_t_12 = PyInt_FromLong(__pyx_t_11); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 159; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_12); __pyx_t_13 = PyTuple_New(3); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 159; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_13); PyTuple_SET_ITEM(__pyx_t_13, 0, __pyx_t_8); __Pyx_GIVEREF(__pyx_t_8); PyTuple_SET_ITEM(__pyx_t_13, 1, ((PyObject *)__pyx_t_7)); __Pyx_GIVEREF(((PyObject *)__pyx_t_7)); PyTuple_SET_ITEM(__pyx_t_13, 2, __pyx_t_12); __Pyx_GIVEREF(__pyx_t_12); __pyx_t_8 = 0; __pyx_t_7 = 0; __pyx_t_12 = 0; __pyx_r = __pyx_t_13; __pyx_t_13 = 0; goto __pyx_L0; __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_7); __Pyx_XDECREF(__pyx_t_8); __Pyx_XDECREF(__pyx_t_12); __Pyx_XDECREF(__pyx_t_13); __Pyx_AddTraceback("cerrormodel.try_microsat", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_character); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":163 * ################################################################################################### * * cdef tuple microsattelite( char* seq, int seqlen, int start, int tandem ): # <<<<<<<<<<<<<< * cdef tuple maxlen = (-1,"",-1) * cdef tuple result */ static PyObject *__pyx_f_11cerrormodel_microsattelite(char *__pyx_v_seq, int __pyx_v_seqlen, int __pyx_v_start, int __pyx_v_tandem) { PyObject *__pyx_v_maxlen = 0; PyObject *__pyx_v_result = 0; long __pyx_v_m; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations long __pyx_t_1; long __pyx_t_2; PyObject *__pyx_t_3 = NULL; int __pyx_t_4; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("microsattelite", 0); /* "cerrormodel.pyx":164 * * cdef tuple microsattelite( char* seq, int seqlen, int start, int tandem ): * cdef tuple maxlen = (-1,"",-1) # <<<<<<<<<<<<<< * cdef tuple result * for m in range(1,tandem+1): */ __Pyx_INCREF(((PyObject *)__pyx_k_tuple_19)); __pyx_v_maxlen = __pyx_k_tuple_19; /* "cerrormodel.pyx":166 * cdef tuple maxlen = (-1,"",-1) * cdef tuple result * for m in range(1,tandem+1): # <<<<<<<<<<<<<< * result = try_microsat(seq, seqlen, start, m, -1) * */ __pyx_t_1 = (__pyx_v_tandem + 1); for (__pyx_t_2 = 1; __pyx_t_2 < __pyx_t_1; __pyx_t_2+=1) { __pyx_v_m = __pyx_t_2; /* "cerrormodel.pyx":167 * cdef tuple result * for m in range(1,tandem+1): * result = try_microsat(seq, seqlen, start, m, -1) # <<<<<<<<<<<<<< * * if result[0] > maxlen[0]: */ __pyx_t_3 = ((PyObject *)__pyx_f_11cerrormodel_try_microsat(__pyx_v_seq, __pyx_v_seqlen, __pyx_v_start, __pyx_v_m, -1)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 167; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_XDECREF(((PyObject *)__pyx_v_result)); __pyx_v_result = ((PyObject*)__pyx_t_3); __pyx_t_3 = 0; /* "cerrormodel.pyx":169 * result = try_microsat(seq, seqlen, start, m, -1) * * if result[0] > maxlen[0]: # <<<<<<<<<<<<<< * maxlen = result * result = try_microsat(seq, seqlen, start, m, 1) */ if (unlikely(((PyObject *)__pyx_v_result) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } if (unlikely(((PyObject *)__pyx_v_maxlen) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_3 = PyObject_RichCompare(PyTuple_GET_ITEM(__pyx_v_result, 0), PyTuple_GET_ITEM(__pyx_v_maxlen, 0), Py_GT); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (__pyx_t_4) { /* "cerrormodel.pyx":170 * * if result[0] > maxlen[0]: * maxlen = result # <<<<<<<<<<<<<< * result = try_microsat(seq, seqlen, start, m, 1) * */ __Pyx_INCREF(((PyObject *)__pyx_v_result)); __Pyx_DECREF(((PyObject *)__pyx_v_maxlen)); __pyx_v_maxlen = __pyx_v_result; goto __pyx_L5; } __pyx_L5:; /* "cerrormodel.pyx":171 * if result[0] > maxlen[0]: * maxlen = result * result = try_microsat(seq, seqlen, start, m, 1) # <<<<<<<<<<<<<< * * if result[0] > maxlen[0]: */ __pyx_t_3 = ((PyObject *)__pyx_f_11cerrormodel_try_microsat(__pyx_v_seq, __pyx_v_seqlen, __pyx_v_start, __pyx_v_m, 1)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 171; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(((PyObject *)__pyx_v_result)); __pyx_v_result = ((PyObject*)__pyx_t_3); __pyx_t_3 = 0; /* "cerrormodel.pyx":173 * result = try_microsat(seq, seqlen, start, m, 1) * * if result[0] > maxlen[0]: # <<<<<<<<<<<<<< * maxlen = result * return maxlen */ if (unlikely(((PyObject *)__pyx_v_result) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 173; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } if (unlikely(((PyObject *)__pyx_v_maxlen) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 173; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_3 = PyObject_RichCompare(PyTuple_GET_ITEM(__pyx_v_result, 0), PyTuple_GET_ITEM(__pyx_v_maxlen, 0), Py_GT); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 173; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 173; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (__pyx_t_4) { /* "cerrormodel.pyx":174 * * if result[0] > maxlen[0]: * maxlen = result # <<<<<<<<<<<<<< * return maxlen * */ __Pyx_INCREF(((PyObject *)__pyx_v_result)); __Pyx_DECREF(((PyObject *)__pyx_v_maxlen)); __pyx_v_maxlen = __pyx_v_result; goto __pyx_L6; } __pyx_L6:; } /* "cerrormodel.pyx":175 * if result[0] > maxlen[0]: * maxlen = result * return maxlen # <<<<<<<<<<<<<< * * ################################################################################################### */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __Pyx_INCREF(((PyObject *)__pyx_v_maxlen)); __pyx_r = __pyx_v_maxlen; goto __pyx_L0; __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_3); __Pyx_AddTraceback("cerrormodel.microsattelite", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_maxlen); __Pyx_XDECREF(__pyx_v_result); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static PyObject *__pyx_pw_11cerrormodel_5get_annotation(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static PyMethodDef __pyx_mdef_11cerrormodel_5get_annotation = {__Pyx_NAMESTR("get_annotation"), (PyCFunction)__pyx_pw_11cerrormodel_5get_annotation, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(0)}; static PyObject *__pyx_pw_11cerrormodel_5get_annotation(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_seq = 0; PyObject *__pyx_v_pos = 0; PyObject *__pyx_v_tandem = 0; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("get_annotation (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__seq,&__pyx_n_s__pos,&__pyx_n_s__tandem,0}; PyObject* values[3] = {0,0,0}; if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__seq)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; case 1: if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__pos)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("get_annotation", 1, 3, 3, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 2: if (likely((values[2] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__tandem)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("get_annotation", 1, 3, 3, 2); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "get_annotation") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else if (PyTuple_GET_SIZE(__pyx_args) != 3) { goto __pyx_L5_argtuple_error; } else { values[0] = PyTuple_GET_ITEM(__pyx_args, 0); values[1] = PyTuple_GET_ITEM(__pyx_args, 1); values[2] = PyTuple_GET_ITEM(__pyx_args, 2); } __pyx_v_seq = values[0]; __pyx_v_pos = values[1]; __pyx_v_tandem = values[2]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("get_annotation", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("cerrormodel.get_annotation", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; __pyx_r = __pyx_pf_11cerrormodel_4get_annotation(__pyx_self, __pyx_v_seq, __pyx_v_pos, __pyx_v_tandem); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":179 * ################################################################################################### * * def get_annotation(seq, pos, tandem): # <<<<<<<<<<<<<< * t, repunitT, repstart = microsattelite( seq, len(seq), pos, tandem ) * return t,normalize_repunit(repunitT),repstart */ static PyObject *__pyx_pf_11cerrormodel_4get_annotation(CYTHON_UNUSED PyObject *__pyx_self, PyObject *__pyx_v_seq, PyObject *__pyx_v_pos, PyObject *__pyx_v_tandem) { PyObject *__pyx_v_t = NULL; PyObject *__pyx_v_repunitT = NULL; PyObject *__pyx_v_repstart = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations char *__pyx_t_1; Py_ssize_t __pyx_t_2; int __pyx_t_3; int __pyx_t_4; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; PyObject *__pyx_t_7 = NULL; PyObject *__pyx_t_8 = NULL; PyObject *__pyx_t_9 = NULL; PyObject *(*__pyx_t_10)(PyObject *); int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("get_annotation", 0); /* "cerrormodel.pyx":180 * * def get_annotation(seq, pos, tandem): * t, repunitT, repstart = microsattelite( seq, len(seq), pos, tandem ) # <<<<<<<<<<<<<< * return t,normalize_repunit(repunitT),repstart * */ __pyx_t_1 = PyBytes_AsString(__pyx_v_seq); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = PyObject_Length(__pyx_v_seq); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_v_pos); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_4 = __Pyx_PyInt_AsInt(__pyx_v_tandem); if (unlikely((__pyx_t_4 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_5 = ((PyObject *)__pyx_f_11cerrormodel_microsattelite(__pyx_t_1, __pyx_t_2, __pyx_t_3, __pyx_t_4)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); if (likely(PyTuple_CheckExact(__pyx_t_5))) { PyObject* sequence = __pyx_t_5; #if CYTHON_COMPILING_IN_CPYTHON Py_ssize_t size = Py_SIZE(sequence); #else Py_ssize_t size = PySequence_Size(sequence); #endif if (unlikely(size != 3)) { if (size > 3) __Pyx_RaiseTooManyValuesError(3); else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_6 = PyTuple_GET_ITEM(sequence, 0); __pyx_t_7 = PyTuple_GET_ITEM(sequence, 1); __pyx_t_8 = PyTuple_GET_ITEM(sequence, 2); __Pyx_INCREF(__pyx_t_6); __Pyx_INCREF(__pyx_t_7); __Pyx_INCREF(__pyx_t_8); #else __pyx_t_6 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_7 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_8 = PySequence_ITEM(sequence, 2); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; } else if (1) { __Pyx_RaiseNoneNotIterableError(); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } else { Py_ssize_t index = -1; __pyx_t_9 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_9); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_10 = Py_TYPE(__pyx_t_9)->tp_iternext; index = 0; __pyx_t_6 = __pyx_t_10(__pyx_t_9); if (unlikely(!__pyx_t_6)) goto __pyx_L3_unpacking_failed; __Pyx_GOTREF(__pyx_t_6); index = 1; __pyx_t_7 = __pyx_t_10(__pyx_t_9); if (unlikely(!__pyx_t_7)) goto __pyx_L3_unpacking_failed; __Pyx_GOTREF(__pyx_t_7); index = 2; __pyx_t_8 = __pyx_t_10(__pyx_t_9); if (unlikely(!__pyx_t_8)) goto __pyx_L3_unpacking_failed; __Pyx_GOTREF(__pyx_t_8); if (__Pyx_IternextUnpackEndCheck(__pyx_t_10(__pyx_t_9), 3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_10 = NULL; __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; goto __pyx_L4_unpacking_done; __pyx_L3_unpacking_failed:; __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; __pyx_t_10 = NULL; if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 180; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_L4_unpacking_done:; } __pyx_v_t = __pyx_t_6; __pyx_t_6 = 0; __pyx_v_repunitT = __pyx_t_7; __pyx_t_7 = 0; __pyx_v_repstart = __pyx_t_8; __pyx_t_8 = 0; /* "cerrormodel.pyx":181 * def get_annotation(seq, pos, tandem): * t, repunitT, repstart = microsattelite( seq, len(seq), pos, tandem ) * return t,normalize_repunit(repunitT),repstart # <<<<<<<<<<<<<< * * ################################################################################################### */ __Pyx_XDECREF(__pyx_r); if (!(likely(PyBytes_CheckExact(__pyx_v_repunitT))||((__pyx_v_repunitT) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_v_repunitT)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 181; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_5 = __pyx_v_repunitT; __Pyx_INCREF(__pyx_t_5); __pyx_t_8 = ((PyObject *)__pyx_f_11cerrormodel_normalize_repunit(((PyObject*)__pyx_t_5))); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 181; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = PyTuple_New(3); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 181; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_INCREF(__pyx_v_t); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_v_t); __Pyx_GIVEREF(__pyx_v_t); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_8); __Pyx_GIVEREF(__pyx_t_8); __Pyx_INCREF(__pyx_v_repstart); PyTuple_SET_ITEM(__pyx_t_5, 2, __pyx_v_repstart); __Pyx_GIVEREF(__pyx_v_repstart); __pyx_t_8 = 0; __pyx_r = ((PyObject *)__pyx_t_5); __pyx_t_5 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_7); __Pyx_XDECREF(__pyx_t_8); __Pyx_XDECREF(__pyx_t_9); __Pyx_AddTraceback("cerrormodel.get_annotation", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_t); __Pyx_XDECREF(__pyx_v_repunitT); __Pyx_XDECREF(__pyx_v_repstart); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static PyObject *__pyx_pw_11cerrormodel_7add_tandem(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static char __pyx_doc_11cerrormodel_6add_tandem[] = "\n Adds gap opening penalties in string indelq, for the tandem repeat described by output.\n indel_q_data contains a dictionary of error models. These have the following two forms:\n {'AAC' : '#######', # gap opening penalties, phred 33-based, for AAC repeats of length 1,2,..,7\n 3 : '######'} # gap opening penalties for any other triplet repeats of length 1,2,...,6\n Nonrepetitive rates are encoded in the first character of the entry for '1'.\n "; static PyMethodDef __pyx_mdef_11cerrormodel_7add_tandem = {__Pyx_NAMESTR("add_tandem"), (PyCFunction)__pyx_pw_11cerrormodel_7add_tandem, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_11cerrormodel_6add_tandem)}; static PyObject *__pyx_pw_11cerrormodel_7add_tandem(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { int __pyx_v_pos; int __pyx_v_tandemlen; PyObject *__pyx_v_tandemunit = 0; PyObject *__pyx_v_indelq = 0; PyObject *__pyx_v_indel_q_data = 0; int __pyx_v_output_base; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("add_tandem (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__pos,&__pyx_n_s__tandemlen,&__pyx_n_s__tandemunit,&__pyx_n_s__indelq,&__pyx_n_s__indel_q_data,&__pyx_n_s__output_base,0}; PyObject* values[6] = {0,0,0,0,0,0}; if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__pos)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; case 1: if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__tandemlen)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("add_tandem", 0, 5, 6, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 2: if (likely((values[2] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__tandemunit)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("add_tandem", 0, 5, 6, 2); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 3: if (likely((values[3] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__indelq)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("add_tandem", 0, 5, 6, 3); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 4: if (likely((values[4] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__indel_q_data)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("add_tandem", 0, 5, 6, 4); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 5: if (kw_args > 0) { PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__output_base); if (value) { values[5] = value; kw_args--; } } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "add_tandem") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else { switch (PyTuple_GET_SIZE(__pyx_args)) { case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); values[3] = PyTuple_GET_ITEM(__pyx_args, 3); values[2] = PyTuple_GET_ITEM(__pyx_args, 2); values[1] = PyTuple_GET_ITEM(__pyx_args, 1); values[0] = PyTuple_GET_ITEM(__pyx_args, 0); break; default: goto __pyx_L5_argtuple_error; } } __pyx_v_pos = __Pyx_PyInt_AsInt(values[0]); if (unlikely((__pyx_v_pos == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_tandemlen = __Pyx_PyInt_AsInt(values[1]); if (unlikely((__pyx_v_tandemlen == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_tandemunit = ((PyObject*)values[2]); __pyx_v_indelq = ((PyObject*)values[3]); __pyx_v_indel_q_data = ((PyObject*)values[4]); if (values[5]) { __pyx_v_output_base = __Pyx_PyInt_AsInt(values[5]); if (unlikely((__pyx_v_output_base == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } else { __pyx_v_output_base = ((int)0); } } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("add_tandem", 0, 5, 6, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("cerrormodel.add_tandem", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_tandemunit), (&PyBytes_Type), 1, "tandemunit", 1))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_indelq), (&PyList_Type), 1, "indelq", 1))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_indel_q_data), (&PyDict_Type), 1, "indel_q_data", 1))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = __pyx_pf_11cerrormodel_6add_tandem(__pyx_self, __pyx_v_pos, __pyx_v_tandemlen, __pyx_v_tandemunit, __pyx_v_indelq, __pyx_v_indel_q_data, __pyx_v_output_base); goto __pyx_L0; __pyx_L1_error:; __pyx_r = NULL; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":185 * ################################################################################################### * * def add_tandem(int pos, int tandemlen, bytes tandemunit, list indelq, dict indel_q_data, int output_base=0): # <<<<<<<<<<<<<< * """ * Adds gap opening penalties in string indelq, for the tandem repeat described by output. */ static PyObject *__pyx_pf_11cerrormodel_6add_tandem(CYTHON_UNUSED PyObject *__pyx_self, int __pyx_v_pos, int __pyx_v_tandemlen, PyObject *__pyx_v_tandemunit, PyObject *__pyx_v_indelq, PyObject *__pyx_v_indel_q_data, int __pyx_v_output_base) { PyObject *__pyx_v_model = 0; char *__pyx_v_cModel; int __pyx_v_qdata; int __pyx_v_q; int __pyx_v_idx; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_t_3; char *__pyx_t_4; size_t __pyx_t_5; Py_ssize_t __pyx_t_6; long __pyx_t_7; Py_ssize_t __pyx_t_8; int __pyx_t_9; int __pyx_t_10; int __pyx_t_11; char __pyx_t_12; int __pyx_t_13; int __pyx_t_14; int __pyx_t_15; PyObject *__pyx_t_16 = NULL; PyObject *__pyx_t_17 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("add_tandem", 0); __Pyx_INCREF(__pyx_v_tandemunit); /* "cerrormodel.pyx":193 * Nonrepetitive rates are encoded in the first character of the entry for '1'. * """ * tandemunit = tandemunit.upper() # <<<<<<<<<<<<<< * * if pos == -1: */ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_v_tandemunit), __pyx_n_s__upper); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 193; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 193; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 193; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_v_tandemunit)); __pyx_v_tandemunit = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "cerrormodel.pyx":195 * tandemunit = tandemunit.upper() * * if pos == -1: # <<<<<<<<<<<<<< * return * */ __pyx_t_3 = (__pyx_v_pos == -1); if (__pyx_t_3) { /* "cerrormodel.pyx":196 * * if pos == -1: * return # <<<<<<<<<<<<<< * * cdef bytes model = None */ __Pyx_XDECREF(__pyx_r); __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; goto __pyx_L3; } __pyx_L3:; /* "cerrormodel.pyx":198 * return * * cdef bytes model = None # <<<<<<<<<<<<<< * cdef char* cModel = NULL * cdef int qdata = 99 */ __Pyx_INCREF(Py_None); __pyx_v_model = ((PyObject*)Py_None); /* "cerrormodel.pyx":199 * * cdef bytes model = None * cdef char* cModel = NULL # <<<<<<<<<<<<<< * cdef int qdata = 99 * */ __pyx_v_cModel = NULL; /* "cerrormodel.pyx":200 * cdef bytes model = None * cdef char* cModel = NULL * cdef int qdata = 99 # <<<<<<<<<<<<<< * * if tandemunit in indel_q_data: */ __pyx_v_qdata = 99; /* "cerrormodel.pyx":202 * cdef int qdata = 99 * * if tandemunit in indel_q_data: # <<<<<<<<<<<<<< * model = indel_q_data[tandemunit] * cModel = model */ if (unlikely(((PyObject *)__pyx_v_indel_q_data) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 202; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_3 = (__Pyx_PyDict_Contains(((PyObject *)__pyx_v_tandemunit), ((PyObject *)__pyx_v_indel_q_data), Py_EQ)); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 202; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_3) { /* "cerrormodel.pyx":203 * * if tandemunit in indel_q_data: * model = indel_q_data[tandemunit] # <<<<<<<<<<<<<< * cModel = model * qdata = cModel[ min(tandemlen-1, len(cModel)-1) ] */ if (unlikely(((PyObject *)__pyx_v_indel_q_data) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 203; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_2 = __Pyx_PyDict_GetItem(((PyObject *)__pyx_v_indel_q_data), ((PyObject *)__pyx_v_tandemunit)); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 203; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); if (!(likely(PyBytes_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 203; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_v_model)); __pyx_v_model = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "cerrormodel.pyx":204 * if tandemunit in indel_q_data: * model = indel_q_data[tandemunit] * cModel = model # <<<<<<<<<<<<<< * qdata = cModel[ min(tandemlen-1, len(cModel)-1) ] * */ __pyx_t_4 = PyBytes_AsString(((PyObject *)__pyx_v_model)); if (unlikely((!__pyx_t_4) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 204; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_cModel = __pyx_t_4; /* "cerrormodel.pyx":205 * model = indel_q_data[tandemunit] * cModel = model * qdata = cModel[ min(tandemlen-1, len(cModel)-1) ] # <<<<<<<<<<<<<< * * # use generic model when specific model not available, or */ __pyx_t_5 = strlen(__pyx_v_cModel); __pyx_t_6 = (__pyx_t_5 - 1); __pyx_t_7 = (__pyx_v_tandemlen - 1); if ((__pyx_t_6 < __pyx_t_7)) { __pyx_t_8 = __pyx_t_6; } else { __pyx_t_8 = __pyx_t_7; } __pyx_v_qdata = (__pyx_v_cModel[__pyx_t_8]); goto __pyx_L4; } __pyx_L4:; /* "cerrormodel.pyx":209 * # use generic model when specific model not available, or * # when extrapolated specific rates are used, and generic model is available, and predicts higher indel rate * if len(tandemunit) in indel_q_data and ((model is None) or (tandemlen > len(cModel))): # <<<<<<<<<<<<<< * model = indel_q_data[ len(tandemunit) ] * cModel = model */ if (unlikely(((PyObject *)__pyx_v_tandemunit) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 209; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_8 = PyBytes_GET_SIZE(((PyObject *)__pyx_v_tandemunit)); if (unlikely(__pyx_t_8 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 209; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = PyInt_FromSsize_t(__pyx_t_8); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 209; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); if (unlikely(((PyObject *)__pyx_v_indel_q_data) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 209; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_3 = (__Pyx_PyDict_Contains(__pyx_t_2, ((PyObject *)__pyx_v_indel_q_data), Py_EQ)); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 209; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (__pyx_t_3) { __pyx_t_9 = (__pyx_v_model == ((PyObject*)Py_None)); if (!__pyx_t_9) { __pyx_t_5 = strlen(__pyx_v_cModel); __pyx_t_10 = (__pyx_v_tandemlen > __pyx_t_5); __pyx_t_11 = __pyx_t_10; } else { __pyx_t_11 = __pyx_t_9; } __pyx_t_9 = __pyx_t_11; } else { __pyx_t_9 = __pyx_t_3; } if (__pyx_t_9) { /* "cerrormodel.pyx":210 * # when extrapolated specific rates are used, and generic model is available, and predicts higher indel rate * if len(tandemunit) in indel_q_data and ((model is None) or (tandemlen > len(cModel))): * model = indel_q_data[ len(tandemunit) ] # <<<<<<<<<<<<<< * cModel = model * qdata = min( qdata, cModel[ min(tandemlen-1, len(cModel)-1) ] ) */ if (unlikely(((PyObject *)__pyx_v_indel_q_data) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 210; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } if (unlikely(((PyObject *)__pyx_v_tandemunit) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 210; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_8 = PyBytes_GET_SIZE(((PyObject *)__pyx_v_tandemunit)); if (unlikely(__pyx_t_8 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 210; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = __Pyx_GetItemInt(((PyObject *)__pyx_v_indel_q_data), __pyx_t_8, sizeof(Py_ssize_t), PyInt_FromSsize_t); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 210; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); if (!(likely(PyBytes_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 210; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_v_model)); __pyx_v_model = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "cerrormodel.pyx":211 * if len(tandemunit) in indel_q_data and ((model is None) or (tandemlen > len(cModel))): * model = indel_q_data[ len(tandemunit) ] * cModel = model # <<<<<<<<<<<<<< * qdata = min( qdata, cModel[ min(tandemlen-1, len(cModel)-1) ] ) * */ __pyx_t_4 = PyBytes_AsString(((PyObject *)__pyx_v_model)); if (unlikely((!__pyx_t_4) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 211; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_cModel = __pyx_t_4; /* "cerrormodel.pyx":212 * model = indel_q_data[ len(tandemunit) ] * cModel = model * qdata = min( qdata, cModel[ min(tandemlen-1, len(cModel)-1) ] ) # <<<<<<<<<<<<<< * * if qdata == 99: */ __pyx_t_5 = strlen(__pyx_v_cModel); __pyx_t_8 = (__pyx_t_5 - 1); __pyx_t_7 = (__pyx_v_tandemlen - 1); if ((__pyx_t_8 < __pyx_t_7)) { __pyx_t_6 = __pyx_t_8; } else { __pyx_t_6 = __pyx_t_7; } __pyx_t_12 = (__pyx_v_cModel[__pyx_t_6]); __pyx_t_13 = __pyx_v_qdata; if ((__pyx_t_12 < __pyx_t_13)) { __pyx_t_14 = __pyx_t_12; } else { __pyx_t_14 = __pyx_t_13; } __pyx_v_qdata = __pyx_t_14; goto __pyx_L5; } __pyx_L5:; /* "cerrormodel.pyx":214 * qdata = min( qdata, cModel[ min(tandemlen-1, len(cModel)-1) ] ) * * if qdata == 99: # <<<<<<<<<<<<<< * return * */ __pyx_t_9 = (__pyx_v_qdata == 99); if (__pyx_t_9) { /* "cerrormodel.pyx":215 * * if qdata == 99: * return # <<<<<<<<<<<<<< * * cdef int q = qdata - 33 + output_base */ __Pyx_XDECREF(__pyx_r); __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; goto __pyx_L6; } __pyx_L6:; /* "cerrormodel.pyx":217 * return * * cdef int q = qdata - 33 + output_base # <<<<<<<<<<<<<< * * for idx in range(pos, pos+tandemlen): */ __pyx_v_q = ((__pyx_v_qdata - 33) + __pyx_v_output_base); /* "cerrormodel.pyx":219 * cdef int q = qdata - 33 + output_base * * for idx in range(pos, pos+tandemlen): # <<<<<<<<<<<<<< * indelq[idx] = chr( min(q, ord(indelq[idx]) ) ) * */ __pyx_t_14 = (__pyx_v_pos + __pyx_v_tandemlen); for (__pyx_t_13 = __pyx_v_pos; __pyx_t_13 < __pyx_t_14; __pyx_t_13+=1) { __pyx_v_idx = __pyx_t_13; /* "cerrormodel.pyx":220 * * for idx in range(pos, pos+tandemlen): * indelq[idx] = chr( min(q, ord(indelq[idx]) ) ) # <<<<<<<<<<<<<< * * ################################################################################################### */ if (unlikely(((PyObject *)__pyx_v_indelq) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_2 = __Pyx_GetItemInt_List(((PyObject *)__pyx_v_indelq), __pyx_v_idx, sizeof(int), PyInt_FromLong); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_builtin_ord, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; __pyx_t_15 = __pyx_v_q; __pyx_t_16 = PyInt_FromLong(__pyx_t_15); if (unlikely(!__pyx_t_16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_16); __pyx_t_17 = PyObject_RichCompare(__pyx_t_2, __pyx_t_16, Py_LT); __Pyx_XGOTREF(__pyx_t_17); if (unlikely(!__pyx_t_17)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_16); __pyx_t_16 = 0; __pyx_t_9 = __Pyx_PyObject_IsTrue(__pyx_t_17); if (unlikely(__pyx_t_9 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_17); __pyx_t_17 = 0; if (__pyx_t_9) { __Pyx_INCREF(__pyx_t_2); __pyx_t_1 = __pyx_t_2; } else { __pyx_t_17 = PyInt_FromLong(__pyx_t_15); if (unlikely(!__pyx_t_17)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_17); __pyx_t_1 = __pyx_t_17; __pyx_t_17 = 0; } __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_INCREF(__pyx_t_1); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1); __Pyx_GIVEREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyObject_Call(__pyx_builtin_chr, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; if (unlikely(((PyObject *)__pyx_v_indelq) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } if (__Pyx_SetItemInt(((PyObject *)__pyx_v_indelq), __pyx_v_idx, __pyx_t_1, sizeof(int), PyInt_FromLong) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_16); __Pyx_XDECREF(__pyx_t_17); __Pyx_AddTraceback("cerrormodel.add_tandem", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_model); __Pyx_XDECREF(__pyx_v_tandemunit); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static PyObject *__pyx_pw_11cerrormodel_9add_tandem_read(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static char __pyx_doc_11cerrormodel_8add_tandem_read[] = "\n As add_tandem above, but calculates upper bounds for read base qualities due to polymerase slippage.\n The read is assumed to be oriented in the forward direction.\n Only quality scores overlaid by the tandem repeat are altered; these need to be extended rightward by the caller.\n "; static PyMethodDef __pyx_mdef_11cerrormodel_9add_tandem_read = {__Pyx_NAMESTR("add_tandem_read"), (PyCFunction)__pyx_pw_11cerrormodel_9add_tandem_read, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_11cerrormodel_8add_tandem_read)}; static PyObject *__pyx_pw_11cerrormodel_9add_tandem_read(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { int __pyx_v_pos; int __pyx_v_tandemlen; PyObject *__pyx_v_tandemunit = 0; PyObject *__pyx_v_indelq = 0; PyObject *__pyx_v_indel_q_data = 0; int __pyx_v_output_base; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("add_tandem_read (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__pos,&__pyx_n_s__tandemlen,&__pyx_n_s__tandemunit,&__pyx_n_s__indelq,&__pyx_n_s__indel_q_data,&__pyx_n_s__output_base,0}; PyObject* values[6] = {0,0,0,0,0,0}; if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); case 4: values[3] = PyTuple_GET_ITEM(__pyx_args, 3); case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__pos)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; case 1: if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__tandemlen)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("add_tandem_read", 0, 5, 6, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 2: if (likely((values[2] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__tandemunit)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("add_tandem_read", 0, 5, 6, 2); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 3: if (likely((values[3] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__indelq)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("add_tandem_read", 0, 5, 6, 3); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 4: if (likely((values[4] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__indel_q_data)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("add_tandem_read", 0, 5, 6, 4); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 5: if (kw_args > 0) { PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__output_base); if (value) { values[5] = value; kw_args--; } } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "add_tandem_read") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else { switch (PyTuple_GET_SIZE(__pyx_args)) { case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5); case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4); values[3] = PyTuple_GET_ITEM(__pyx_args, 3); values[2] = PyTuple_GET_ITEM(__pyx_args, 2); values[1] = PyTuple_GET_ITEM(__pyx_args, 1); values[0] = PyTuple_GET_ITEM(__pyx_args, 0); break; default: goto __pyx_L5_argtuple_error; } } __pyx_v_pos = __Pyx_PyInt_AsInt(values[0]); if (unlikely((__pyx_v_pos == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_tandemlen = __Pyx_PyInt_AsInt(values[1]); if (unlikely((__pyx_v_tandemlen == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_tandemunit = ((PyObject*)values[2]); __pyx_v_indelq = ((PyObject*)values[3]); __pyx_v_indel_q_data = ((PyObject*)values[4]); if (values[5]) { __pyx_v_output_base = __Pyx_PyInt_AsInt(values[5]); if (unlikely((__pyx_v_output_base == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } else { __pyx_v_output_base = ((int)0); } } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("add_tandem_read", 0, 5, 6, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("cerrormodel.add_tandem_read", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_tandemunit), (&PyBytes_Type), 1, "tandemunit", 1))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_indelq), (&PyList_Type), 1, "indelq", 1))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_indel_q_data), (&PyDict_Type), 1, "indel_q_data", 1))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = __pyx_pf_11cerrormodel_8add_tandem_read(__pyx_self, __pyx_v_pos, __pyx_v_tandemlen, __pyx_v_tandemunit, __pyx_v_indelq, __pyx_v_indel_q_data, __pyx_v_output_base); goto __pyx_L0; __pyx_L1_error:; __pyx_r = NULL; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":225 * * * def add_tandem_read(int pos, int tandemlen, bytes tandemunit, list indelq, dict indel_q_data, int output_base=0): # <<<<<<<<<<<<<< * """ * As add_tandem above, but calculates upper bounds for read base qualities due to polymerase slippage. */ static PyObject *__pyx_pf_11cerrormodel_8add_tandem_read(CYTHON_UNUSED PyObject *__pyx_self, int __pyx_v_pos, int __pyx_v_tandemlen, PyObject *__pyx_v_tandemunit, PyObject *__pyx_v_indelq, PyObject *__pyx_v_indel_q_data, int __pyx_v_output_base) { PyObject *__pyx_v_model = 0; PyObject *__pyx_v_genericModel = 0; char *__pyx_v_cModel; char *__pyx_v_cGenericModel; int __pyx_v_qdata; int __pyx_v_modelidx; PyObject *__pyx_v_idx = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_t_3; char *__pyx_t_4; Py_ssize_t __pyx_t_5; PyObject *__pyx_t_6 = NULL; PyObject *(*__pyx_t_7)(PyObject *); int __pyx_t_8; size_t __pyx_t_9; Py_ssize_t __pyx_t_10; Py_ssize_t __pyx_t_11; int __pyx_t_12; int __pyx_t_13; int __pyx_t_14; char __pyx_t_15; int __pyx_t_16; long __pyx_t_17; PyObject *__pyx_t_18 = NULL; PyObject *__pyx_t_19 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("add_tandem_read", 0); __Pyx_INCREF(__pyx_v_tandemunit); /* "cerrormodel.pyx":231 * Only quality scores overlaid by the tandem repeat are altered; these need to be extended rightward by the caller. * """ * tandemunit = tandemunit.upper() # <<<<<<<<<<<<<< * * if pos == -1: */ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_v_tandemunit), __pyx_n_s__upper); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 231; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 231; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 231; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_v_tandemunit)); __pyx_v_tandemunit = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "cerrormodel.pyx":233 * tandemunit = tandemunit.upper() * * if pos == -1: # <<<<<<<<<<<<<< * return * */ __pyx_t_3 = (__pyx_v_pos == -1); if (__pyx_t_3) { /* "cerrormodel.pyx":234 * * if pos == -1: * return # <<<<<<<<<<<<<< * * cdef bytes model = None */ __Pyx_XDECREF(__pyx_r); __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; goto __pyx_L3; } __pyx_L3:; /* "cerrormodel.pyx":236 * return * * cdef bytes model = None # <<<<<<<<<<<<<< * cdef bytes genericModel = None * cdef char* cModel = NULL */ __Pyx_INCREF(Py_None); __pyx_v_model = ((PyObject*)Py_None); /* "cerrormodel.pyx":237 * * cdef bytes model = None * cdef bytes genericModel = None # <<<<<<<<<<<<<< * cdef char* cModel = NULL * cdef char* cGenericModel = NULL */ __Pyx_INCREF(Py_None); __pyx_v_genericModel = ((PyObject*)Py_None); /* "cerrormodel.pyx":238 * cdef bytes model = None * cdef bytes genericModel = None * cdef char* cModel = NULL # <<<<<<<<<<<<<< * cdef char* cGenericModel = NULL * cdef int qdata = 99 */ __pyx_v_cModel = NULL; /* "cerrormodel.pyx":239 * cdef bytes genericModel = None * cdef char* cModel = NULL * cdef char* cGenericModel = NULL # <<<<<<<<<<<<<< * cdef int qdata = 99 * cdef int modelidx */ __pyx_v_cGenericModel = NULL; /* "cerrormodel.pyx":240 * cdef char* cModel = NULL * cdef char* cGenericModel = NULL * cdef int qdata = 99 # <<<<<<<<<<<<<< * cdef int modelidx * cdef int q */ __pyx_v_qdata = 99; /* "cerrormodel.pyx":244 * cdef int q * * if tandemunit in indel_q_data: # <<<<<<<<<<<<<< * model = indel_q_data[tandemunit] * cModel = model */ if (unlikely(((PyObject *)__pyx_v_indel_q_data) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 244; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_3 = (__Pyx_PyDict_Contains(((PyObject *)__pyx_v_tandemunit), ((PyObject *)__pyx_v_indel_q_data), Py_EQ)); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 244; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_3) { /* "cerrormodel.pyx":245 * * if tandemunit in indel_q_data: * model = indel_q_data[tandemunit] # <<<<<<<<<<<<<< * cModel = model * */ if (unlikely(((PyObject *)__pyx_v_indel_q_data) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 245; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_2 = __Pyx_PyDict_GetItem(((PyObject *)__pyx_v_indel_q_data), ((PyObject *)__pyx_v_tandemunit)); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 245; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); if (!(likely(PyBytes_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 245; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_v_model)); __pyx_v_model = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "cerrormodel.pyx":246 * if tandemunit in indel_q_data: * model = indel_q_data[tandemunit] * cModel = model # <<<<<<<<<<<<<< * * if len(tandemunit) in indel_q_data: */ __pyx_t_4 = PyBytes_AsString(((PyObject *)__pyx_v_model)); if (unlikely((!__pyx_t_4) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 246; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_cModel = __pyx_t_4; goto __pyx_L4; } __pyx_L4:; /* "cerrormodel.pyx":248 * cModel = model * * if len(tandemunit) in indel_q_data: # <<<<<<<<<<<<<< * genericModel = indel_q_data[len(tandemunit)] * cGenericModel = genericModel */ if (unlikely(((PyObject *)__pyx_v_tandemunit) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_5 = PyBytes_GET_SIZE(((PyObject *)__pyx_v_tandemunit)); if (unlikely(__pyx_t_5 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = PyInt_FromSsize_t(__pyx_t_5); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); if (unlikely(((PyObject *)__pyx_v_indel_q_data) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_3 = (__Pyx_PyDict_Contains(__pyx_t_2, ((PyObject *)__pyx_v_indel_q_data), Py_EQ)); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 248; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (__pyx_t_3) { /* "cerrormodel.pyx":249 * * if len(tandemunit) in indel_q_data: * genericModel = indel_q_data[len(tandemunit)] # <<<<<<<<<<<<<< * cGenericModel = genericModel * */ if (unlikely(((PyObject *)__pyx_v_indel_q_data) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } if (unlikely(((PyObject *)__pyx_v_tandemunit) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_5 = PyBytes_GET_SIZE(((PyObject *)__pyx_v_tandemunit)); if (unlikely(__pyx_t_5 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = __Pyx_GetItemInt(((PyObject *)__pyx_v_indel_q_data), __pyx_t_5, sizeof(Py_ssize_t), PyInt_FromSsize_t); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); if (!(likely(PyBytes_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_v_genericModel)); __pyx_v_genericModel = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "cerrormodel.pyx":250 * if len(tandemunit) in indel_q_data: * genericModel = indel_q_data[len(tandemunit)] * cGenericModel = genericModel # <<<<<<<<<<<<<< * * for idx in range(pos, pos+tandemlen): */ __pyx_t_4 = PyBytes_AsString(((PyObject *)__pyx_v_genericModel)); if (unlikely((!__pyx_t_4) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 250; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_cGenericModel = __pyx_t_4; goto __pyx_L5; } __pyx_L5:; /* "cerrormodel.pyx":252 * cGenericModel = genericModel * * for idx in range(pos, pos+tandemlen): # <<<<<<<<<<<<<< * * qdata = 99 */ __pyx_t_2 = PyInt_FromLong(__pyx_v_pos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_1 = PyInt_FromLong((__pyx_v_pos + __pyx_v_tandemlen)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_6 = PyTuple_New(2); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_6, 1, __pyx_t_1); __Pyx_GIVEREF(__pyx_t_1); __pyx_t_2 = 0; __pyx_t_1 = 0; __pyx_t_1 = PyObject_Call(__pyx_builtin_range, ((PyObject *)__pyx_t_6), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0; if (PyList_CheckExact(__pyx_t_1) || PyTuple_CheckExact(__pyx_t_1)) { __pyx_t_6 = __pyx_t_1; __Pyx_INCREF(__pyx_t_6); __pyx_t_5 = 0; __pyx_t_7 = NULL; } else { __pyx_t_5 = -1; __pyx_t_6 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_7 = Py_TYPE(__pyx_t_6)->tp_iternext; } __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; for (;;) { if (!__pyx_t_7 && PyList_CheckExact(__pyx_t_6)) { if (__pyx_t_5 >= PyList_GET_SIZE(__pyx_t_6)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_1 = PyList_GET_ITEM(__pyx_t_6, __pyx_t_5); __Pyx_INCREF(__pyx_t_1); __pyx_t_5++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_1 = PySequence_ITEM(__pyx_t_6, __pyx_t_5); __pyx_t_5++; if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else if (!__pyx_t_7 && PyTuple_CheckExact(__pyx_t_6)) { if (__pyx_t_5 >= PyTuple_GET_SIZE(__pyx_t_6)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_6, __pyx_t_5); __Pyx_INCREF(__pyx_t_1); __pyx_t_5++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_1 = PySequence_ITEM(__pyx_t_6, __pyx_t_5); __pyx_t_5++; if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else { __pyx_t_1 = __pyx_t_7(__pyx_t_6); if (unlikely(!__pyx_t_1)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 252; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_1); } __Pyx_XDECREF(__pyx_v_idx); __pyx_v_idx = __pyx_t_1; __pyx_t_1 = 0; /* "cerrormodel.pyx":254 * for idx in range(pos, pos+tandemlen): * * qdata = 99 # <<<<<<<<<<<<<< * modelidx = idx - pos * */ __pyx_v_qdata = 99; /* "cerrormodel.pyx":255 * * qdata = 99 * modelidx = idx - pos # <<<<<<<<<<<<<< * * if model is not None: */ __pyx_t_1 = PyInt_FromLong(__pyx_v_pos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 255; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = PyNumber_Subtract(__pyx_v_idx, __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 255; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_8 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_8 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 255; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_v_modelidx = __pyx_t_8; /* "cerrormodel.pyx":257 * modelidx = idx - pos * * if model is not None: # <<<<<<<<<<<<<< * qdata = cModel[ min(modelidx, len(cModel)-1) ] * */ __pyx_t_3 = (__pyx_v_model != ((PyObject*)Py_None)); if (__pyx_t_3) { /* "cerrormodel.pyx":258 * * if model is not None: * qdata = cModel[ min(modelidx, len(cModel)-1) ] # <<<<<<<<<<<<<< * * # use generic model when specific model not available, or */ __pyx_t_9 = strlen(__pyx_v_cModel); __pyx_t_10 = (__pyx_t_9 - 1); __pyx_t_8 = __pyx_v_modelidx; if ((__pyx_t_10 < __pyx_t_8)) { __pyx_t_11 = __pyx_t_10; } else { __pyx_t_11 = __pyx_t_8; } __pyx_v_qdata = (__pyx_v_cModel[__pyx_t_11]); goto __pyx_L8; } __pyx_L8:; /* "cerrormodel.pyx":262 * # use generic model when specific model not available, or * # when extrapolated specific rates are used, and generic model is available, and predicts higher indel rate * if genericModel is not None and ((model is None) or (modelidx > len(cModel))): # <<<<<<<<<<<<<< * qdata = min( qdata, cGenericModel[ min(modelidx, len(cGenericModel)-1) ] ) * */ __pyx_t_3 = (__pyx_v_genericModel != ((PyObject*)Py_None)); if (__pyx_t_3) { __pyx_t_12 = (__pyx_v_model == ((PyObject*)Py_None)); if (!__pyx_t_12) { __pyx_t_9 = strlen(__pyx_v_cModel); __pyx_t_13 = (__pyx_v_modelidx > __pyx_t_9); __pyx_t_14 = __pyx_t_13; } else { __pyx_t_14 = __pyx_t_12; } __pyx_t_12 = __pyx_t_14; } else { __pyx_t_12 = __pyx_t_3; } if (__pyx_t_12) { /* "cerrormodel.pyx":263 * # when extrapolated specific rates are used, and generic model is available, and predicts higher indel rate * if genericModel is not None and ((model is None) or (modelidx > len(cModel))): * qdata = min( qdata, cGenericModel[ min(modelidx, len(cGenericModel)-1) ] ) # <<<<<<<<<<<<<< * * if qdata == 99: */ __pyx_t_9 = strlen(__pyx_v_cGenericModel); __pyx_t_11 = (__pyx_t_9 - 1); __pyx_t_8 = __pyx_v_modelidx; if ((__pyx_t_11 < __pyx_t_8)) { __pyx_t_10 = __pyx_t_11; } else { __pyx_t_10 = __pyx_t_8; } __pyx_t_15 = (__pyx_v_cGenericModel[__pyx_t_10]); __pyx_t_8 = __pyx_v_qdata; if ((__pyx_t_15 < __pyx_t_8)) { __pyx_t_16 = __pyx_t_15; } else { __pyx_t_16 = __pyx_t_8; } __pyx_v_qdata = __pyx_t_16; goto __pyx_L9; } __pyx_L9:; /* "cerrormodel.pyx":265 * qdata = min( qdata, cGenericModel[ min(modelidx, len(cGenericModel)-1) ] ) * * if qdata == 99: # <<<<<<<<<<<<<< * return * */ __pyx_t_12 = (__pyx_v_qdata == 99); if (__pyx_t_12) { /* "cerrormodel.pyx":266 * * if qdata == 99: * return # <<<<<<<<<<<<<< * * indelq[idx] = chr( min(qdata - 33 + output_base, ord(indelq[idx])) ) */ __Pyx_XDECREF(__pyx_r); __pyx_r = Py_None; __Pyx_INCREF(Py_None); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; goto __pyx_L0; goto __pyx_L10; } __pyx_L10:; /* "cerrormodel.pyx":268 * return * * indelq[idx] = chr( min(qdata - 33 + output_base, ord(indelq[idx])) ) # <<<<<<<<<<<<<< * * ################################################################################################### */ if (unlikely(((PyObject *)__pyx_v_indelq) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_2 = PyObject_GetItem(((PyObject *)__pyx_v_indelq), __pyx_v_idx); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_builtin_ord, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; __pyx_t_17 = ((__pyx_v_qdata - 33) + __pyx_v_output_base); __pyx_t_18 = PyInt_FromLong(__pyx_t_17); if (unlikely(!__pyx_t_18)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_18); __pyx_t_19 = PyObject_RichCompare(__pyx_t_2, __pyx_t_18, Py_LT); __Pyx_XGOTREF(__pyx_t_19); if (unlikely(!__pyx_t_19)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_18); __pyx_t_18 = 0; __pyx_t_12 = __Pyx_PyObject_IsTrue(__pyx_t_19); if (unlikely(__pyx_t_12 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_19); __pyx_t_19 = 0; if (__pyx_t_12) { __Pyx_INCREF(__pyx_t_2); __pyx_t_1 = __pyx_t_2; } else { __pyx_t_19 = PyInt_FromLong(__pyx_t_17); if (unlikely(!__pyx_t_19)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_19); __pyx_t_1 = __pyx_t_19; __pyx_t_19 = 0; } __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_INCREF(__pyx_t_1); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1); __Pyx_GIVEREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyObject_Call(__pyx_builtin_chr, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; if (unlikely(((PyObject *)__pyx_v_indelq) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } if (PyObject_SetItem(((PyObject *)__pyx_v_indelq), __pyx_v_idx, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 268; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_18); __Pyx_XDECREF(__pyx_t_19); __Pyx_AddTraceback("cerrormodel.add_tandem_read", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_model); __Pyx_XDECREF(__pyx_v_genericModel); __Pyx_XDECREF(__pyx_v_idx); __Pyx_XDECREF(__pyx_v_tandemunit); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":273 * * * cdef bytes annotate_sequence_slow(sequence, dict indel_q_data, int output_base, int tandem): # <<<<<<<<<<<<<< * """ * Annotates a sequence with the local indel probability (gap opening penalty), */ static PyObject *__pyx_f_11cerrormodel_annotate_sequence_slow(PyObject *__pyx_v_sequence, PyObject *__pyx_v_indel_q_data, int __pyx_v_output_base, int __pyx_v_tandem) { PyObject *__pyx_v_pos = NULL; PyObject *__pyx_v_indelq = NULL; PyObject *__pyx_v_oldoutput = NULL; PyObject *__pyx_v_tandemlen = NULL; PyObject *__pyx_v_tandemunit = NULL; PyObject *__pyx_v_repstart = NULL; PyObject *__pyx_v_output = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; Py_ssize_t __pyx_t_4; int __pyx_t_5; PyObject *__pyx_t_6 = NULL; PyObject *__pyx_t_7 = NULL; PyObject *(*__pyx_t_8)(PyObject *); int __pyx_t_9; int __pyx_t_10; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("annotate_sequence_slow", 0); /* "cerrormodel.pyx":278 * using an error model described in indel_q_data * """ * pos = 0 # <<<<<<<<<<<<<< * indelq = [chr(ord(indel_q_data[1][0])-ord('!')+output_base)] * len(sequence) * oldoutput = [-1,-1,-1] */ __Pyx_INCREF(__pyx_int_0); __pyx_v_pos = __pyx_int_0; /* "cerrormodel.pyx":279 * """ * pos = 0 * indelq = [chr(ord(indel_q_data[1][0])-ord('!')+output_base)] * len(sequence) # <<<<<<<<<<<<<< * oldoutput = [-1,-1,-1] * */ if (unlikely(((PyObject *)__pyx_v_indel_q_data) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_1 = __Pyx_GetItemInt(((PyObject *)__pyx_v_indel_q_data), 1, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = __Pyx_GetItemInt(__pyx_t_1, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_builtin_ord, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; __pyx_t_1 = PyNumber_Subtract(__pyx_t_2, __pyx_int_33); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyInt_FromLong(__pyx_v_output_base); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyNumber_Add(__pyx_t_1, __pyx_t_2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyObject_Call(__pyx_builtin_chr, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_t_4 = PyObject_Length(__pyx_v_sequence); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = PyList_New(1 * ((__pyx_t_4<0) ? 0:__pyx_t_4)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 279; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); { Py_ssize_t __pyx_temp; for (__pyx_temp=0; __pyx_temp < __pyx_t_4; __pyx_temp++) { __Pyx_INCREF(__pyx_t_3); PyList_SET_ITEM(__pyx_t_2, __pyx_temp, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_3); } } __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_v_indelq = __pyx_t_2; __pyx_t_2 = 0; /* "cerrormodel.pyx":280 * pos = 0 * indelq = [chr(ord(indel_q_data[1][0])-ord('!')+output_base)] * len(sequence) * oldoutput = [-1,-1,-1] # <<<<<<<<<<<<<< * * while pos < len(sequence): */ __pyx_t_2 = PyList_New(3); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 280; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_INCREF(__pyx_int_neg_1); PyList_SET_ITEM(__pyx_t_2, 0, __pyx_int_neg_1); __Pyx_GIVEREF(__pyx_int_neg_1); __Pyx_INCREF(__pyx_int_neg_1); PyList_SET_ITEM(__pyx_t_2, 1, __pyx_int_neg_1); __Pyx_GIVEREF(__pyx_int_neg_1); __Pyx_INCREF(__pyx_int_neg_1); PyList_SET_ITEM(__pyx_t_2, 2, __pyx_int_neg_1); __Pyx_GIVEREF(__pyx_int_neg_1); __pyx_v_oldoutput = __pyx_t_2; __pyx_t_2 = 0; /* "cerrormodel.pyx":282 * oldoutput = [-1,-1,-1] * * while pos < len(sequence): # <<<<<<<<<<<<<< * * tandemlen, tandemunit, repstart = get_annotation(sequence, pos, tandem) */ while (1) { __pyx_t_4 = PyObject_Length(__pyx_v_sequence); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 282; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = PyInt_FromSsize_t(__pyx_t_4); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 282; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyObject_RichCompare(__pyx_v_pos, __pyx_t_2, Py_LT); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 282; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 282; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (!__pyx_t_5) break; /* "cerrormodel.pyx":284 * while pos < len(sequence): * * tandemlen, tandemunit, repstart = get_annotation(sequence, pos, tandem) # <<<<<<<<<<<<<< * output = [repstart, tandemlen, tandemunit] * */ __pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__get_annotation); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = PyInt_FromLong(__pyx_v_tandem); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_INCREF(__pyx_v_sequence); PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_sequence); __Pyx_GIVEREF(__pyx_v_sequence); __Pyx_INCREF(__pyx_v_pos); PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_pos); __Pyx_GIVEREF(__pyx_v_pos); PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; if ((likely(PyTuple_CheckExact(__pyx_t_2))) || (PyList_CheckExact(__pyx_t_2))) { PyObject* sequence = __pyx_t_2; #if CYTHON_COMPILING_IN_CPYTHON Py_ssize_t size = Py_SIZE(sequence); #else Py_ssize_t size = PySequence_Size(sequence); #endif if (unlikely(size != 3)) { if (size > 3) __Pyx_RaiseTooManyValuesError(3); else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } #if CYTHON_COMPILING_IN_CPYTHON if (likely(PyTuple_CheckExact(sequence))) { __pyx_t_1 = PyTuple_GET_ITEM(sequence, 0); __pyx_t_3 = PyTuple_GET_ITEM(sequence, 1); __pyx_t_6 = PyTuple_GET_ITEM(sequence, 2); } else { __pyx_t_1 = PyList_GET_ITEM(sequence, 0); __pyx_t_3 = PyList_GET_ITEM(sequence, 1); __pyx_t_6 = PyList_GET_ITEM(sequence, 2); } __Pyx_INCREF(__pyx_t_1); __Pyx_INCREF(__pyx_t_3); __Pyx_INCREF(__pyx_t_6); #else __pyx_t_1 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_3 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_6 = PySequence_ITEM(sequence, 2); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; } else { Py_ssize_t index = -1; __pyx_t_7 = PyObject_GetIter(__pyx_t_2); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_8 = Py_TYPE(__pyx_t_7)->tp_iternext; index = 0; __pyx_t_1 = __pyx_t_8(__pyx_t_7); if (unlikely(!__pyx_t_1)) goto __pyx_L5_unpacking_failed; __Pyx_GOTREF(__pyx_t_1); index = 1; __pyx_t_3 = __pyx_t_8(__pyx_t_7); if (unlikely(!__pyx_t_3)) goto __pyx_L5_unpacking_failed; __Pyx_GOTREF(__pyx_t_3); index = 2; __pyx_t_6 = __pyx_t_8(__pyx_t_7); if (unlikely(!__pyx_t_6)) goto __pyx_L5_unpacking_failed; __Pyx_GOTREF(__pyx_t_6); if (__Pyx_IternextUnpackEndCheck(__pyx_t_8(__pyx_t_7), 3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_8 = NULL; __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; goto __pyx_L6_unpacking_done; __pyx_L5_unpacking_failed:; __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_8 = NULL; if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_L6_unpacking_done:; } __Pyx_XDECREF(__pyx_v_tandemlen); __pyx_v_tandemlen = __pyx_t_1; __pyx_t_1 = 0; __Pyx_XDECREF(__pyx_v_tandemunit); __pyx_v_tandemunit = __pyx_t_3; __pyx_t_3 = 0; __Pyx_XDECREF(__pyx_v_repstart); __pyx_v_repstart = __pyx_t_6; __pyx_t_6 = 0; /* "cerrormodel.pyx":285 * * tandemlen, tandemunit, repstart = get_annotation(sequence, pos, tandem) * output = [repstart, tandemlen, tandemunit] # <<<<<<<<<<<<<< * * # concatenate or output */ __pyx_t_2 = PyList_New(3); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 285; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_INCREF(__pyx_v_repstart); PyList_SET_ITEM(__pyx_t_2, 0, __pyx_v_repstart); __Pyx_GIVEREF(__pyx_v_repstart); __Pyx_INCREF(__pyx_v_tandemlen); PyList_SET_ITEM(__pyx_t_2, 1, __pyx_v_tandemlen); __Pyx_GIVEREF(__pyx_v_tandemlen); __Pyx_INCREF(__pyx_v_tandemunit); PyList_SET_ITEM(__pyx_t_2, 2, __pyx_v_tandemunit); __Pyx_GIVEREF(__pyx_v_tandemunit); __Pyx_XDECREF(((PyObject *)__pyx_v_output)); __pyx_v_output = __pyx_t_2; __pyx_t_2 = 0; /* "cerrormodel.pyx":288 * * # concatenate or output * if tandemlen >= 2: # <<<<<<<<<<<<<< * if oldoutput[0] + oldoutput[1] >= output[0] and oldoutput[2] == output[2]: * oldoutput[1] = output[0] + output[1] - oldoutput[0] */ __pyx_t_2 = PyObject_RichCompare(__pyx_v_tandemlen, __pyx_int_2, Py_GE); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 288; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 288; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (__pyx_t_5) { /* "cerrormodel.pyx":289 * # concatenate or output * if tandemlen >= 2: * if oldoutput[0] + oldoutput[1] >= output[0] and oldoutput[2] == output[2]: # <<<<<<<<<<<<<< * oldoutput[1] = output[0] + output[1] - oldoutput[0] * else: */ __pyx_t_2 = PyNumber_Add(PyList_GET_ITEM(__pyx_v_oldoutput, 0), PyList_GET_ITEM(__pyx_v_oldoutput, 1)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 289; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_6 = PyObject_RichCompare(__pyx_t_2, PyList_GET_ITEM(__pyx_v_output, 0), Py_GE); __Pyx_XGOTREF(__pyx_t_6); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 289; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 289; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (__pyx_t_5) { __pyx_t_6 = PyObject_RichCompare(PyList_GET_ITEM(__pyx_v_oldoutput, 2), PyList_GET_ITEM(__pyx_v_output, 2), Py_EQ); __Pyx_XGOTREF(__pyx_t_6); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 289; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_9 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_9 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 289; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_10 = __pyx_t_9; } else { __pyx_t_10 = __pyx_t_5; } if (__pyx_t_10) { /* "cerrormodel.pyx":290 * if tandemlen >= 2: * if oldoutput[0] + oldoutput[1] >= output[0] and oldoutput[2] == output[2]: * oldoutput[1] = output[0] + output[1] - oldoutput[0] # <<<<<<<<<<<<<< * else: * if oldoutput[0] != -1: */ __pyx_t_6 = PyNumber_Add(PyList_GET_ITEM(__pyx_v_output, 0), PyList_GET_ITEM(__pyx_v_output, 1)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_2 = PyNumber_Subtract(__pyx_t_6, PyList_GET_ITEM(__pyx_v_oldoutput, 0)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (__Pyx_SetItemInt(((PyObject *)__pyx_v_oldoutput), 1, __pyx_t_2, sizeof(long), PyInt_FromLong) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; goto __pyx_L8; } /*else*/ { /* "cerrormodel.pyx":292 * oldoutput[1] = output[0] + output[1] - oldoutput[0] * else: * if oldoutput[0] != -1: # <<<<<<<<<<<<<< * add_tandem(oldoutput[0], oldoutput[1], oldoutput[2], indelq, indel_q_data, output_base = output_base) * oldoutput = output */ __pyx_t_2 = PyObject_RichCompare(PyList_GET_ITEM(__pyx_v_oldoutput, 0), __pyx_int_neg_1, Py_NE); __Pyx_XGOTREF(__pyx_t_2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 292; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_10 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_10 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 292; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (__pyx_t_10) { /* "cerrormodel.pyx":293 * else: * if oldoutput[0] != -1: * add_tandem(oldoutput[0], oldoutput[1], oldoutput[2], indelq, indel_q_data, output_base = output_base) # <<<<<<<<<<<<<< * oldoutput = output * pos = repstart + tandemlen */ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__add_tandem); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 293; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_6 = PyTuple_New(5); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 293; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_INCREF(PyList_GET_ITEM(__pyx_v_oldoutput, 0)); PyTuple_SET_ITEM(__pyx_t_6, 0, PyList_GET_ITEM(__pyx_v_oldoutput, 0)); __Pyx_GIVEREF(PyList_GET_ITEM(__pyx_v_oldoutput, 0)); __Pyx_INCREF(PyList_GET_ITEM(__pyx_v_oldoutput, 1)); PyTuple_SET_ITEM(__pyx_t_6, 1, PyList_GET_ITEM(__pyx_v_oldoutput, 1)); __Pyx_GIVEREF(PyList_GET_ITEM(__pyx_v_oldoutput, 1)); __Pyx_INCREF(PyList_GET_ITEM(__pyx_v_oldoutput, 2)); PyTuple_SET_ITEM(__pyx_t_6, 2, PyList_GET_ITEM(__pyx_v_oldoutput, 2)); __Pyx_GIVEREF(PyList_GET_ITEM(__pyx_v_oldoutput, 2)); __Pyx_INCREF(((PyObject *)__pyx_v_indelq)); PyTuple_SET_ITEM(__pyx_t_6, 3, ((PyObject *)__pyx_v_indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indelq)); __Pyx_INCREF(((PyObject *)__pyx_v_indel_q_data)); PyTuple_SET_ITEM(__pyx_t_6, 4, ((PyObject *)__pyx_v_indel_q_data)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indel_q_data)); __pyx_t_3 = PyDict_New(); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 293; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_3)); __pyx_t_1 = PyInt_FromLong(__pyx_v_output_base); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 293; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__output_base), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 293; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_6), ((PyObject *)__pyx_t_3)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 293; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; goto __pyx_L9; } __pyx_L9:; /* "cerrormodel.pyx":294 * if oldoutput[0] != -1: * add_tandem(oldoutput[0], oldoutput[1], oldoutput[2], indelq, indel_q_data, output_base = output_base) * oldoutput = output # <<<<<<<<<<<<<< * pos = repstart + tandemlen * else: */ __Pyx_INCREF(((PyObject *)__pyx_v_output)); __Pyx_DECREF(((PyObject *)__pyx_v_oldoutput)); __pyx_v_oldoutput = __pyx_v_output; } __pyx_L8:; /* "cerrormodel.pyx":295 * add_tandem(oldoutput[0], oldoutput[1], oldoutput[2], indelq, indel_q_data, output_base = output_base) * oldoutput = output * pos = repstart + tandemlen # <<<<<<<<<<<<<< * else: * pos += 1 */ __pyx_t_1 = PyNumber_Add(__pyx_v_repstart, __pyx_v_tandemlen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 295; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_pos); __pyx_v_pos = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L7; } /*else*/ { /* "cerrormodel.pyx":297 * pos = repstart + tandemlen * else: * pos += 1 # <<<<<<<<<<<<<< * * if oldoutput[0] != -1: */ __pyx_t_1 = PyNumber_InPlaceAdd(__pyx_v_pos, __pyx_int_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 297; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_v_pos); __pyx_v_pos = __pyx_t_1; __pyx_t_1 = 0; } __pyx_L7:; } /* "cerrormodel.pyx":299 * pos += 1 * * if oldoutput[0] != -1: # <<<<<<<<<<<<<< * add_tandem(oldoutput[0], oldoutput[1], oldoutput[2], indelq, indel_q_data, output_base = output_base) * */ __pyx_t_1 = PyObject_RichCompare(PyList_GET_ITEM(__pyx_v_oldoutput, 0), __pyx_int_neg_1, Py_NE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 299; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_10 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_10 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 299; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_10) { /* "cerrormodel.pyx":300 * * if oldoutput[0] != -1: * add_tandem(oldoutput[0], oldoutput[1], oldoutput[2], indelq, indel_q_data, output_base = output_base) # <<<<<<<<<<<<<< * * return ''.join(indelq) */ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__add_tandem); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 300; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_3 = PyTuple_New(5); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 300; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_INCREF(PyList_GET_ITEM(__pyx_v_oldoutput, 0)); PyTuple_SET_ITEM(__pyx_t_3, 0, PyList_GET_ITEM(__pyx_v_oldoutput, 0)); __Pyx_GIVEREF(PyList_GET_ITEM(__pyx_v_oldoutput, 0)); __Pyx_INCREF(PyList_GET_ITEM(__pyx_v_oldoutput, 1)); PyTuple_SET_ITEM(__pyx_t_3, 1, PyList_GET_ITEM(__pyx_v_oldoutput, 1)); __Pyx_GIVEREF(PyList_GET_ITEM(__pyx_v_oldoutput, 1)); __Pyx_INCREF(PyList_GET_ITEM(__pyx_v_oldoutput, 2)); PyTuple_SET_ITEM(__pyx_t_3, 2, PyList_GET_ITEM(__pyx_v_oldoutput, 2)); __Pyx_GIVEREF(PyList_GET_ITEM(__pyx_v_oldoutput, 2)); __Pyx_INCREF(((PyObject *)__pyx_v_indelq)); PyTuple_SET_ITEM(__pyx_t_3, 3, ((PyObject *)__pyx_v_indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indelq)); __Pyx_INCREF(((PyObject *)__pyx_v_indel_q_data)); PyTuple_SET_ITEM(__pyx_t_3, 4, ((PyObject *)__pyx_v_indel_q_data)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indel_q_data)); __pyx_t_6 = PyDict_New(); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 300; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_6)); __pyx_t_2 = PyInt_FromLong(__pyx_v_output_base); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 300; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); if (PyDict_SetItem(__pyx_t_6, ((PyObject *)__pyx_n_s__output_base), __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 300; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), ((PyObject *)__pyx_t_6)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 300; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; goto __pyx_L10; } __pyx_L10:; /* "cerrormodel.pyx":302 * add_tandem(oldoutput[0], oldoutput[1], oldoutput[2], indelq, indel_q_data, output_base = output_base) * * return ''.join(indelq) # <<<<<<<<<<<<<< * * ################################################################################################### */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_2 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_17), __pyx_n_s__join); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 302; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 302; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_INCREF(((PyObject *)__pyx_v_indelq)); PyTuple_SET_ITEM(__pyx_t_6, 0, ((PyObject *)__pyx_v_indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indelq)); __pyx_t_3 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_6), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 302; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_3))||((__pyx_t_3) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_3)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 302; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = ((PyObject*)__pyx_t_3); __pyx_t_3 = 0; goto __pyx_L0; __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_7); __Pyx_AddTraceback("cerrormodel.annotate_sequence_slow", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_pos); __Pyx_XDECREF(__pyx_v_indelq); __Pyx_XDECREF(__pyx_v_oldoutput); __Pyx_XDECREF(__pyx_v_tandemlen); __Pyx_XDECREF(__pyx_v_tandemunit); __Pyx_XDECREF(__pyx_v_repstart); __Pyx_XDECREF(__pyx_v_output); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":306 * ################################################################################################### * * cdef bytes annotate_sequence(sequence, dict indel_q_data, int output_base): # <<<<<<<<<<<<<< * """ * Annotates a sequence with the local indel probability (gap opening penalty), */ static PyObject *__pyx_f_11cerrormodel_annotate_sequence(PyObject *__pyx_v_sequence, PyObject *__pyx_v_indel_q_data, int __pyx_v_output_base) { PyObject *__pyx_v_indelq = 0; PyObject *__pyx_v_sizes = 0; PyObject *__pyx_v_displacements = 0; char *__pyx_v_csizes; char *__pyx_v_cdisplacements; int __pyx_v_length; int __pyx_v_pos; int __pyx_v_tandemunitlen; int __pyx_v_tandemlen; int __pyx_v_oldoutputpos; int __pyx_v_oldoutputlen; PyObject *__pyx_v_tandemunit = 0; PyObject *__pyx_v_oldoutputunit = 0; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; Py_ssize_t __pyx_t_4; PyObject *__pyx_t_5 = NULL; PyObject *(*__pyx_t_6)(PyObject *); char *__pyx_t_7; int __pyx_t_8; int __pyx_t_9; int __pyx_t_10; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("annotate_sequence", 0); /* "cerrormodel.pyx":311 * using an error model described in indel_q_data. * """ * cdef list indelq = [chr(ord(indel_q_data[1][0])-ord('!')+output_base)] * len(sequence) # <<<<<<<<<<<<<< * cdef bytes sizes = None * cdef bytes displacements = None */ if (unlikely(((PyObject *)__pyx_v_indel_q_data) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_1 = __Pyx_GetItemInt(((PyObject *)__pyx_v_indel_q_data), 1, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = __Pyx_GetItemInt(__pyx_t_1, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_builtin_ord, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; __pyx_t_1 = PyNumber_Subtract(__pyx_t_2, __pyx_int_33); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyInt_FromLong(__pyx_v_output_base); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyNumber_Add(__pyx_t_1, __pyx_t_2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyObject_Call(__pyx_builtin_chr, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_t_4 = PyObject_Length(__pyx_v_sequence); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = PyList_New(1 * ((__pyx_t_4<0) ? 0:__pyx_t_4)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); { Py_ssize_t __pyx_temp; for (__pyx_temp=0; __pyx_temp < __pyx_t_4; __pyx_temp++) { __Pyx_INCREF(__pyx_t_3); PyList_SET_ITEM(__pyx_t_2, __pyx_temp, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_3); } } __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_v_indelq = __pyx_t_2; __pyx_t_2 = 0; /* "cerrormodel.pyx":312 * """ * cdef list indelq = [chr(ord(indel_q_data[1][0])-ord('!')+output_base)] * len(sequence) * cdef bytes sizes = None # <<<<<<<<<<<<<< * cdef bytes displacements = None * */ __Pyx_INCREF(Py_None); __pyx_v_sizes = ((PyObject*)Py_None); /* "cerrormodel.pyx":313 * cdef list indelq = [chr(ord(indel_q_data[1][0])-ord('!')+output_base)] * len(sequence) * cdef bytes sizes = None * cdef bytes displacements = None # <<<<<<<<<<<<<< * * (sizes, displacements) = calculate_size_and_displacement( sequence, False ) */ __Pyx_INCREF(Py_None); __pyx_v_displacements = ((PyObject*)Py_None); /* "cerrormodel.pyx":315 * cdef bytes displacements = None * * (sizes, displacements) = calculate_size_and_displacement( sequence, False ) # <<<<<<<<<<<<<< * * cdef char* csizes = sizes */ if (!(likely(PyBytes_CheckExact(__pyx_v_sequence))||((__pyx_v_sequence) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_v_sequence)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = __pyx_v_sequence; __Pyx_INCREF(__pyx_t_2); __pyx_t_3 = ((PyObject *)__pyx_f_11cerrormodel_calculate_size_and_displacement(((PyObject*)__pyx_t_2), 0)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (likely(PyTuple_CheckExact(__pyx_t_3))) { PyObject* sequence = __pyx_t_3; #if CYTHON_COMPILING_IN_CPYTHON Py_ssize_t size = Py_SIZE(sequence); #else Py_ssize_t size = PySequence_Size(sequence); #endif if (unlikely(size != 2)) { if (size > 2) __Pyx_RaiseTooManyValuesError(2); else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_2 = PyTuple_GET_ITEM(sequence, 0); __pyx_t_1 = PyTuple_GET_ITEM(sequence, 1); __Pyx_INCREF(__pyx_t_2); __Pyx_INCREF(__pyx_t_1); #else __pyx_t_2 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_1 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; } else if (1) { __Pyx_RaiseNoneNotIterableError(); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } else { Py_ssize_t index = -1; __pyx_t_5 = PyObject_GetIter(__pyx_t_3); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_6 = Py_TYPE(__pyx_t_5)->tp_iternext; index = 0; __pyx_t_2 = __pyx_t_6(__pyx_t_5); if (unlikely(!__pyx_t_2)) goto __pyx_L3_unpacking_failed; __Pyx_GOTREF(__pyx_t_2); index = 1; __pyx_t_1 = __pyx_t_6(__pyx_t_5); if (unlikely(!__pyx_t_1)) goto __pyx_L3_unpacking_failed; __Pyx_GOTREF(__pyx_t_1); if (__Pyx_IternextUnpackEndCheck(__pyx_t_6(__pyx_t_5), 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_6 = NULL; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; goto __pyx_L4_unpacking_done; __pyx_L3_unpacking_failed:; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_6 = NULL; if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_L4_unpacking_done:; } if (!(likely(PyBytes_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (!(likely(PyBytes_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_1)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 315; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_v_sizes)); __pyx_v_sizes = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(((PyObject *)__pyx_v_displacements)); __pyx_v_displacements = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "cerrormodel.pyx":317 * (sizes, displacements) = calculate_size_and_displacement( sequence, False ) * * cdef char* csizes = sizes # <<<<<<<<<<<<<< * cdef char* cdisplacements = displacements * cdef int length = len(sequence) */ __pyx_t_7 = PyBytes_AsString(((PyObject *)__pyx_v_sizes)); if (unlikely((!__pyx_t_7) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_csizes = __pyx_t_7; /* "cerrormodel.pyx":318 * * cdef char* csizes = sizes * cdef char* cdisplacements = displacements # <<<<<<<<<<<<<< * cdef int length = len(sequence) * cdef int pos = 0 */ __pyx_t_7 = PyBytes_AsString(((PyObject *)__pyx_v_displacements)); if (unlikely((!__pyx_t_7) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_cdisplacements = __pyx_t_7; /* "cerrormodel.pyx":319 * cdef char* csizes = sizes * cdef char* cdisplacements = displacements * cdef int length = len(sequence) # <<<<<<<<<<<<<< * cdef int pos = 0 * cdef int tandemunitlen = -1 */ __pyx_t_4 = PyObject_Length(__pyx_v_sequence); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 319; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_length = __pyx_t_4; /* "cerrormodel.pyx":320 * cdef char* cdisplacements = displacements * cdef int length = len(sequence) * cdef int pos = 0 # <<<<<<<<<<<<<< * cdef int tandemunitlen = -1 * cdef int tandemlen = -1 */ __pyx_v_pos = 0; /* "cerrormodel.pyx":321 * cdef int length = len(sequence) * cdef int pos = 0 * cdef int tandemunitlen = -1 # <<<<<<<<<<<<<< * cdef int tandemlen = -1 * cdef int oldoutputpos = -1 */ __pyx_v_tandemunitlen = -1; /* "cerrormodel.pyx":322 * cdef int pos = 0 * cdef int tandemunitlen = -1 * cdef int tandemlen = -1 # <<<<<<<<<<<<<< * cdef int oldoutputpos = -1 * cdef int oldoutputlen = -1 */ __pyx_v_tandemlen = -1; /* "cerrormodel.pyx":323 * cdef int tandemunitlen = -1 * cdef int tandemlen = -1 * cdef int oldoutputpos = -1 # <<<<<<<<<<<<<< * cdef int oldoutputlen = -1 * cdef bytes tandemunit = None */ __pyx_v_oldoutputpos = -1; /* "cerrormodel.pyx":324 * cdef int tandemlen = -1 * cdef int oldoutputpos = -1 * cdef int oldoutputlen = -1 # <<<<<<<<<<<<<< * cdef bytes tandemunit = None * cdef bytes oldoutputunit = None */ __pyx_v_oldoutputlen = -1; /* "cerrormodel.pyx":325 * cdef int oldoutputpos = -1 * cdef int oldoutputlen = -1 * cdef bytes tandemunit = None # <<<<<<<<<<<<<< * cdef bytes oldoutputunit = None * */ __Pyx_INCREF(Py_None); __pyx_v_tandemunit = ((PyObject*)Py_None); /* "cerrormodel.pyx":326 * cdef int oldoutputlen = -1 * cdef bytes tandemunit = None * cdef bytes oldoutputunit = None # <<<<<<<<<<<<<< * * while pos < length: */ __Pyx_INCREF(Py_None); __pyx_v_oldoutputunit = ((PyObject*)Py_None); /* "cerrormodel.pyx":328 * cdef bytes oldoutputunit = None * * while pos < length: # <<<<<<<<<<<<<< * * tandemunitlen = cdisplacements[pos] */ while (1) { __pyx_t_8 = (__pyx_v_pos < __pyx_v_length); if (!__pyx_t_8) break; /* "cerrormodel.pyx":330 * while pos < length: * * tandemunitlen = cdisplacements[pos] # <<<<<<<<<<<<<< * tandemlen = csizes[pos] * tandemunit = normalize_repunit_fast(sequence[pos:pos+tandemunitlen]) */ __pyx_v_tandemunitlen = (__pyx_v_cdisplacements[__pyx_v_pos]); /* "cerrormodel.pyx":331 * * tandemunitlen = cdisplacements[pos] * tandemlen = csizes[pos] # <<<<<<<<<<<<<< * tandemunit = normalize_repunit_fast(sequence[pos:pos+tandemunitlen]) * */ __pyx_v_tandemlen = (__pyx_v_csizes[__pyx_v_pos]); /* "cerrormodel.pyx":332 * tandemunitlen = cdisplacements[pos] * tandemlen = csizes[pos] * tandemunit = normalize_repunit_fast(sequence[pos:pos+tandemunitlen]) # <<<<<<<<<<<<<< * * # concatenate or output */ __pyx_t_3 = __Pyx_PySequence_GetSlice(__pyx_v_sequence, __pyx_v_pos, (__pyx_v_pos + __pyx_v_tandemunitlen)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); if (!(likely(PyBytes_CheckExact(__pyx_t_3))||((__pyx_t_3) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_3)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_1 = ((PyObject *)__pyx_f_11cerrormodel_normalize_repunit_fast(((PyObject*)__pyx_t_3))); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(((PyObject *)__pyx_v_tandemunit)); __pyx_v_tandemunit = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "cerrormodel.pyx":335 * * # concatenate or output * if tandemlen >= 2 and tandemunit.count('N') == 0: # <<<<<<<<<<<<<< * if oldoutputpos + oldoutputlen >= pos and oldoutputunit == tandemunit: * oldoutputlen = pos + tandemlen - oldoutputpos */ __pyx_t_8 = (__pyx_v_tandemlen >= 2); if (__pyx_t_8) { __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_v_tandemunit), __pyx_n_s__count); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 335; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_k_tuple_20), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 335; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyObject_RichCompare(__pyx_t_3, __pyx_int_0, Py_EQ); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 335; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_9 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_9 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 335; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_10 = __pyx_t_9; } else { __pyx_t_10 = __pyx_t_8; } if (__pyx_t_10) { /* "cerrormodel.pyx":336 * # concatenate or output * if tandemlen >= 2 and tandemunit.count('N') == 0: * if oldoutputpos + oldoutputlen >= pos and oldoutputunit == tandemunit: # <<<<<<<<<<<<<< * oldoutputlen = pos + tandemlen - oldoutputpos * else: */ __pyx_t_10 = ((__pyx_v_oldoutputpos + __pyx_v_oldoutputlen) >= __pyx_v_pos); if (__pyx_t_10) { __pyx_t_8 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_oldoutputunit), ((PyObject *)__pyx_v_tandemunit), Py_EQ)); if (unlikely(__pyx_t_8 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 336; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_9 = __pyx_t_8; } else { __pyx_t_9 = __pyx_t_10; } if (__pyx_t_9) { /* "cerrormodel.pyx":337 * if tandemlen >= 2 and tandemunit.count('N') == 0: * if oldoutputpos + oldoutputlen >= pos and oldoutputunit == tandemunit: * oldoutputlen = pos + tandemlen - oldoutputpos # <<<<<<<<<<<<<< * else: * if oldoutputpos != -1 and oldoutputlen >= MINIMUM_TANDEM_LENGTH: */ __pyx_v_oldoutputlen = ((__pyx_v_pos + __pyx_v_tandemlen) - __pyx_v_oldoutputpos); goto __pyx_L8; } /*else*/ { /* "cerrormodel.pyx":339 * oldoutputlen = pos + tandemlen - oldoutputpos * else: * if oldoutputpos != -1 and oldoutputlen >= MINIMUM_TANDEM_LENGTH: # <<<<<<<<<<<<<< * add_tandem( oldoutputpos, oldoutputlen, oldoutputunit, indelq, indel_q_data, output_base = output_base) * */ __pyx_t_9 = (__pyx_v_oldoutputpos != -1); if (__pyx_t_9) { __pyx_t_10 = (__pyx_v_oldoutputlen >= __pyx_v_11cerrormodel_MINIMUM_TANDEM_LENGTH); __pyx_t_8 = __pyx_t_10; } else { __pyx_t_8 = __pyx_t_9; } if (__pyx_t_8) { /* "cerrormodel.pyx":340 * else: * if oldoutputpos != -1 and oldoutputlen >= MINIMUM_TANDEM_LENGTH: * add_tandem( oldoutputpos, oldoutputlen, oldoutputunit, indelq, indel_q_data, output_base = output_base) # <<<<<<<<<<<<<< * * oldoutputpos = pos */ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__add_tandem); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_3 = PyInt_FromLong(__pyx_v_oldoutputpos); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = PyInt_FromLong(__pyx_v_oldoutputlen); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_5 = PyTuple_New(5); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __Pyx_INCREF(((PyObject *)__pyx_v_oldoutputunit)); PyTuple_SET_ITEM(__pyx_t_5, 2, ((PyObject *)__pyx_v_oldoutputunit)); __Pyx_GIVEREF(((PyObject *)__pyx_v_oldoutputunit)); __Pyx_INCREF(((PyObject *)__pyx_v_indelq)); PyTuple_SET_ITEM(__pyx_t_5, 3, ((PyObject *)__pyx_v_indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indelq)); __Pyx_INCREF(((PyObject *)__pyx_v_indel_q_data)); PyTuple_SET_ITEM(__pyx_t_5, 4, ((PyObject *)__pyx_v_indel_q_data)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indel_q_data)); __pyx_t_3 = 0; __pyx_t_2 = 0; __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); __pyx_t_3 = PyInt_FromLong(__pyx_v_output_base); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__output_base), __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_5), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 340; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; goto __pyx_L9; } __pyx_L9:; /* "cerrormodel.pyx":342 * add_tandem( oldoutputpos, oldoutputlen, oldoutputunit, indelq, indel_q_data, output_base = output_base) * * oldoutputpos = pos # <<<<<<<<<<<<<< * oldoutputlen = tandemlen * oldoutputunit = tandemunit */ __pyx_v_oldoutputpos = __pyx_v_pos; /* "cerrormodel.pyx":343 * * oldoutputpos = pos * oldoutputlen = tandemlen # <<<<<<<<<<<<<< * oldoutputunit = tandemunit * */ __pyx_v_oldoutputlen = __pyx_v_tandemlen; /* "cerrormodel.pyx":344 * oldoutputpos = pos * oldoutputlen = tandemlen * oldoutputunit = tandemunit # <<<<<<<<<<<<<< * * # next position */ __Pyx_INCREF(((PyObject *)__pyx_v_tandemunit)); __Pyx_DECREF(((PyObject *)__pyx_v_oldoutputunit)); __pyx_v_oldoutputunit = __pyx_v_tandemunit; } __pyx_L8:; goto __pyx_L7; } __pyx_L7:; /* "cerrormodel.pyx":347 * * # next position * pos += 1 # <<<<<<<<<<<<<< * * # add last tandem */ __pyx_v_pos = (__pyx_v_pos + 1); } /* "cerrormodel.pyx":350 * * # add last tandem * if oldoutputpos != -1: # <<<<<<<<<<<<<< * add_tandem( oldoutputpos, oldoutputlen, oldoutputunit, indelq, indel_q_data, output_base = output_base) * */ __pyx_t_8 = (__pyx_v_oldoutputpos != -1); if (__pyx_t_8) { /* "cerrormodel.pyx":351 * # add last tandem * if oldoutputpos != -1: * add_tandem( oldoutputpos, oldoutputlen, oldoutputunit, indelq, indel_q_data, output_base = output_base) # <<<<<<<<<<<<<< * * # return result */ __pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__add_tandem); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = PyInt_FromLong(__pyx_v_oldoutputpos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_5 = PyInt_FromLong(__pyx_v_oldoutputlen); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_1 = PyTuple_New(5); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_5); __Pyx_GIVEREF(__pyx_t_5); __Pyx_INCREF(((PyObject *)__pyx_v_oldoutputunit)); PyTuple_SET_ITEM(__pyx_t_1, 2, ((PyObject *)__pyx_v_oldoutputunit)); __Pyx_GIVEREF(((PyObject *)__pyx_v_oldoutputunit)); __Pyx_INCREF(((PyObject *)__pyx_v_indelq)); PyTuple_SET_ITEM(__pyx_t_1, 3, ((PyObject *)__pyx_v_indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indelq)); __Pyx_INCREF(((PyObject *)__pyx_v_indel_q_data)); PyTuple_SET_ITEM(__pyx_t_1, 4, ((PyObject *)__pyx_v_indel_q_data)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indel_q_data)); __pyx_t_2 = 0; __pyx_t_5 = 0; __pyx_t_5 = PyDict_New(); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_5)); __pyx_t_2 = PyInt_FromLong(__pyx_v_output_base); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); if (PyDict_SetItem(__pyx_t_5, ((PyObject *)__pyx_n_s__output_base), __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_1), ((PyObject *)__pyx_t_5)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 351; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; goto __pyx_L10; } __pyx_L10:; /* "cerrormodel.pyx":354 * * # return result * return ''.join(indelq) # <<<<<<<<<<<<<< * * */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_2 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_17), __pyx_n_s__join); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_INCREF(((PyObject *)__pyx_v_indelq)); PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_v_indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indelq)); __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_1)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_5); __Pyx_AddTraceback("cerrormodel.annotate_sequence", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_indelq); __Pyx_XDECREF(__pyx_v_sizes); __Pyx_XDECREF(__pyx_v_displacements); __Pyx_XDECREF(__pyx_v_tandemunit); __Pyx_XDECREF(__pyx_v_oldoutputunit); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":359 * ################################################################################################### * * cdef bytes annotate_sequence_read(sequence, dict indel_q_data, int output_base, int reverse): # <<<<<<<<<<<<<< * """ * Annotates a sequence with the local indel probability (gap opening penalty), */ static PyObject *__pyx_f_11cerrormodel_annotate_sequence_read(PyObject *__pyx_v_sequence, PyObject *__pyx_v_indel_q_data, int __pyx_v_output_base, int __pyx_v_reverse) { PyObject *__pyx_v_indelq = 0; PyObject *__pyx_v_sizes = 0; PyObject *__pyx_v_displacements = 0; char *__pyx_v_csizes; char *__pyx_v_cdisplacements; int __pyx_v_length; int __pyx_v_pos; int __pyx_v_tandemunitlen; int __pyx_v_tandemlen; int __pyx_v_oldoutputpos; int __pyx_v_oldoutputlen; PyObject *__pyx_v_tandemunit = 0; PyObject *__pyx_v_oldoutputunit = 0; char __pyx_v_q; PyObject *__pyx_v_idx = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; Py_ssize_t __pyx_t_4; PyObject *__pyx_t_5 = NULL; PyObject *(*__pyx_t_6)(PyObject *); char *__pyx_t_7; int __pyx_t_8; int __pyx_t_9; int __pyx_t_10; char __pyx_t_11; PyObject *(*__pyx_t_12)(PyObject *); PyObject *__pyx_t_13 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("annotate_sequence_read", 0); __Pyx_INCREF(__pyx_v_sequence); /* "cerrormodel.pyx":364 * using an error model described in indel_q_data. * """ * if reverse: # <<<<<<<<<<<<<< * sequence = ''.join(reversed(sequence)) * */ if (__pyx_v_reverse) { /* "cerrormodel.pyx":365 * """ * if reverse: * sequence = ''.join(reversed(sequence)) # <<<<<<<<<<<<<< * * cdef list indelq = [chr(ord(indel_q_data[1][0])-ord('!')+output_base)] * len(sequence) */ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_17), __pyx_n_s__join); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 365; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 365; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_INCREF(__pyx_v_sequence); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_sequence); __Pyx_GIVEREF(__pyx_v_sequence); __pyx_t_3 = PyObject_Call(__pyx_builtin_reversed, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 365; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 365; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 365; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_v_sequence); __pyx_v_sequence = __pyx_t_3; __pyx_t_3 = 0; goto __pyx_L3; } __pyx_L3:; /* "cerrormodel.pyx":367 * sequence = ''.join(reversed(sequence)) * * cdef list indelq = [chr(ord(indel_q_data[1][0])-ord('!')+output_base)] * len(sequence) # <<<<<<<<<<<<<< * cdef bytes sizes = None * cdef bytes displacements = None */ if (unlikely(((PyObject *)__pyx_v_indel_q_data) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_3 = __Pyx_GetItemInt(((PyObject *)__pyx_v_indel_q_data), 1, sizeof(long), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = __Pyx_GetItemInt(__pyx_t_3, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_builtin_ord, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_t_3 = PyNumber_Subtract(__pyx_t_2, __pyx_int_33); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyInt_FromLong(__pyx_v_output_base); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_1 = PyNumber_Add(__pyx_t_3, __pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_1); __Pyx_GIVEREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyObject_Call(__pyx_builtin_chr, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_t_4 = PyObject_Length(__pyx_v_sequence); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = PyList_New(1 * ((__pyx_t_4<0) ? 0:__pyx_t_4)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 367; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); { Py_ssize_t __pyx_temp; for (__pyx_temp=0; __pyx_temp < __pyx_t_4; __pyx_temp++) { __Pyx_INCREF(__pyx_t_1); PyList_SET_ITEM(__pyx_t_2, __pyx_temp, __pyx_t_1); __Pyx_GIVEREF(__pyx_t_1); } } __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_v_indelq = __pyx_t_2; __pyx_t_2 = 0; /* "cerrormodel.pyx":368 * * cdef list indelq = [chr(ord(indel_q_data[1][0])-ord('!')+output_base)] * len(sequence) * cdef bytes sizes = None # <<<<<<<<<<<<<< * cdef bytes displacements = None * */ __Pyx_INCREF(Py_None); __pyx_v_sizes = ((PyObject*)Py_None); /* "cerrormodel.pyx":369 * cdef list indelq = [chr(ord(indel_q_data[1][0])-ord('!')+output_base)] * len(sequence) * cdef bytes sizes = None * cdef bytes displacements = None # <<<<<<<<<<<<<< * * (sizes, displacements) = calculate_size_and_displacement( sequence, False ) */ __Pyx_INCREF(Py_None); __pyx_v_displacements = ((PyObject*)Py_None); /* "cerrormodel.pyx":371 * cdef bytes displacements = None * * (sizes, displacements) = calculate_size_and_displacement( sequence, False ) # <<<<<<<<<<<<<< * * cdef char* csizes = sizes */ if (!(likely(PyBytes_CheckExact(__pyx_v_sequence))||((__pyx_v_sequence) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_v_sequence)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = __pyx_v_sequence; __Pyx_INCREF(__pyx_t_2); __pyx_t_1 = ((PyObject *)__pyx_f_11cerrormodel_calculate_size_and_displacement(((PyObject*)__pyx_t_2), 0)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (likely(PyTuple_CheckExact(__pyx_t_1))) { PyObject* sequence = __pyx_t_1; #if CYTHON_COMPILING_IN_CPYTHON Py_ssize_t size = Py_SIZE(sequence); #else Py_ssize_t size = PySequence_Size(sequence); #endif if (unlikely(size != 2)) { if (size > 2) __Pyx_RaiseTooManyValuesError(2); else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_2 = PyTuple_GET_ITEM(sequence, 0); __pyx_t_3 = PyTuple_GET_ITEM(sequence, 1); __Pyx_INCREF(__pyx_t_2); __Pyx_INCREF(__pyx_t_3); #else __pyx_t_2 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_3 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } else if (1) { __Pyx_RaiseNoneNotIterableError(); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } else { Py_ssize_t index = -1; __pyx_t_5 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_6 = Py_TYPE(__pyx_t_5)->tp_iternext; index = 0; __pyx_t_2 = __pyx_t_6(__pyx_t_5); if (unlikely(!__pyx_t_2)) goto __pyx_L4_unpacking_failed; __Pyx_GOTREF(__pyx_t_2); index = 1; __pyx_t_3 = __pyx_t_6(__pyx_t_5); if (unlikely(!__pyx_t_3)) goto __pyx_L4_unpacking_failed; __Pyx_GOTREF(__pyx_t_3); if (__Pyx_IternextUnpackEndCheck(__pyx_t_6(__pyx_t_5), 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_6 = NULL; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; goto __pyx_L5_unpacking_done; __pyx_L4_unpacking_failed:; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_6 = NULL; if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_L5_unpacking_done:; } if (!(likely(PyBytes_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (!(likely(PyBytes_CheckExact(__pyx_t_3))||((__pyx_t_3) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_3)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 371; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_v_sizes)); __pyx_v_sizes = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(((PyObject *)__pyx_v_displacements)); __pyx_v_displacements = ((PyObject*)__pyx_t_3); __pyx_t_3 = 0; /* "cerrormodel.pyx":373 * (sizes, displacements) = calculate_size_and_displacement( sequence, False ) * * cdef char* csizes = sizes # <<<<<<<<<<<<<< * cdef char* cdisplacements = displacements * cdef int length = len(sequence) */ __pyx_t_7 = PyBytes_AsString(((PyObject *)__pyx_v_sizes)); if (unlikely((!__pyx_t_7) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 373; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_csizes = __pyx_t_7; /* "cerrormodel.pyx":374 * * cdef char* csizes = sizes * cdef char* cdisplacements = displacements # <<<<<<<<<<<<<< * cdef int length = len(sequence) * cdef int pos = 0 */ __pyx_t_7 = PyBytes_AsString(((PyObject *)__pyx_v_displacements)); if (unlikely((!__pyx_t_7) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 374; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_cdisplacements = __pyx_t_7; /* "cerrormodel.pyx":375 * cdef char* csizes = sizes * cdef char* cdisplacements = displacements * cdef int length = len(sequence) # <<<<<<<<<<<<<< * cdef int pos = 0 * cdef int tandemunitlen = -1 */ __pyx_t_4 = PyObject_Length(__pyx_v_sequence); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 375; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_length = __pyx_t_4; /* "cerrormodel.pyx":376 * cdef char* cdisplacements = displacements * cdef int length = len(sequence) * cdef int pos = 0 # <<<<<<<<<<<<<< * cdef int tandemunitlen = -1 * cdef int tandemlen = -1 */ __pyx_v_pos = 0; /* "cerrormodel.pyx":377 * cdef int length = len(sequence) * cdef int pos = 0 * cdef int tandemunitlen = -1 # <<<<<<<<<<<<<< * cdef int tandemlen = -1 * cdef int oldoutputpos = -1 */ __pyx_v_tandemunitlen = -1; /* "cerrormodel.pyx":378 * cdef int pos = 0 * cdef int tandemunitlen = -1 * cdef int tandemlen = -1 # <<<<<<<<<<<<<< * cdef int oldoutputpos = -1 * cdef int oldoutputlen = -1 */ __pyx_v_tandemlen = -1; /* "cerrormodel.pyx":379 * cdef int tandemunitlen = -1 * cdef int tandemlen = -1 * cdef int oldoutputpos = -1 # <<<<<<<<<<<<<< * cdef int oldoutputlen = -1 * cdef bytes tandemunit = None */ __pyx_v_oldoutputpos = -1; /* "cerrormodel.pyx":380 * cdef int tandemlen = -1 * cdef int oldoutputpos = -1 * cdef int oldoutputlen = -1 # <<<<<<<<<<<<<< * cdef bytes tandemunit = None * cdef bytes oldoutputunit = None */ __pyx_v_oldoutputlen = -1; /* "cerrormodel.pyx":381 * cdef int oldoutputpos = -1 * cdef int oldoutputlen = -1 * cdef bytes tandemunit = None # <<<<<<<<<<<<<< * cdef bytes oldoutputunit = None * cdef char q */ __Pyx_INCREF(Py_None); __pyx_v_tandemunit = ((PyObject*)Py_None); /* "cerrormodel.pyx":382 * cdef int oldoutputlen = -1 * cdef bytes tandemunit = None * cdef bytes oldoutputunit = None # <<<<<<<<<<<<<< * cdef char q * */ __Pyx_INCREF(Py_None); __pyx_v_oldoutputunit = ((PyObject*)Py_None); /* "cerrormodel.pyx":385 * cdef char q * * while pos < length: # <<<<<<<<<<<<<< * * tandemunitlen = cdisplacements[pos] */ while (1) { __pyx_t_8 = (__pyx_v_pos < __pyx_v_length); if (!__pyx_t_8) break; /* "cerrormodel.pyx":387 * while pos < length: * * tandemunitlen = cdisplacements[pos] # <<<<<<<<<<<<<< * tandemlen = csizes[pos] * tandemunit = normalize_repunit_fast(sequence[pos:pos+tandemunitlen]) */ __pyx_v_tandemunitlen = (__pyx_v_cdisplacements[__pyx_v_pos]); /* "cerrormodel.pyx":388 * * tandemunitlen = cdisplacements[pos] * tandemlen = csizes[pos] # <<<<<<<<<<<<<< * tandemunit = normalize_repunit_fast(sequence[pos:pos+tandemunitlen]) * */ __pyx_v_tandemlen = (__pyx_v_csizes[__pyx_v_pos]); /* "cerrormodel.pyx":389 * tandemunitlen = cdisplacements[pos] * tandemlen = csizes[pos] * tandemunit = normalize_repunit_fast(sequence[pos:pos+tandemunitlen]) # <<<<<<<<<<<<<< * * # concatenate or output */ __pyx_t_1 = __Pyx_PySequence_GetSlice(__pyx_v_sequence, __pyx_v_pos, (__pyx_v_pos + __pyx_v_tandemunitlen)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 389; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (!(likely(PyBytes_CheckExact(__pyx_t_1))||((__pyx_t_1) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_1)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 389; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_3 = ((PyObject *)__pyx_f_11cerrormodel_normalize_repunit_fast(((PyObject*)__pyx_t_1))); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 389; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(((PyObject *)__pyx_v_tandemunit)); __pyx_v_tandemunit = ((PyObject*)__pyx_t_3); __pyx_t_3 = 0; /* "cerrormodel.pyx":392 * * # concatenate or output * if tandemlen >= 2 and tandemunit.count('N') == 0: # <<<<<<<<<<<<<< * if oldoutputpos + oldoutputlen >= pos and oldoutputunit == tandemunit: * oldoutputlen = pos + tandemlen - oldoutputpos */ __pyx_t_8 = (__pyx_v_tandemlen >= 2); if (__pyx_t_8) { __pyx_t_3 = PyObject_GetAttr(((PyObject *)__pyx_v_tandemunit), __pyx_n_s__count); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 392; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_21), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 392; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyObject_RichCompare(__pyx_t_1, __pyx_int_0, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 392; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_9 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_9 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 392; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_10 = __pyx_t_9; } else { __pyx_t_10 = __pyx_t_8; } if (__pyx_t_10) { /* "cerrormodel.pyx":393 * # concatenate or output * if tandemlen >= 2 and tandemunit.count('N') == 0: * if oldoutputpos + oldoutputlen >= pos and oldoutputunit == tandemunit: # <<<<<<<<<<<<<< * oldoutputlen = pos + tandemlen - oldoutputpos * else: */ __pyx_t_10 = ((__pyx_v_oldoutputpos + __pyx_v_oldoutputlen) >= __pyx_v_pos); if (__pyx_t_10) { __pyx_t_8 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_oldoutputunit), ((PyObject *)__pyx_v_tandemunit), Py_EQ)); if (unlikely(__pyx_t_8 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 393; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_9 = __pyx_t_8; } else { __pyx_t_9 = __pyx_t_10; } if (__pyx_t_9) { /* "cerrormodel.pyx":394 * if tandemlen >= 2 and tandemunit.count('N') == 0: * if oldoutputpos + oldoutputlen >= pos and oldoutputunit == tandemunit: * oldoutputlen = pos + tandemlen - oldoutputpos # <<<<<<<<<<<<<< * else: * if oldoutputpos != -1 and oldoutputlen >= MINIMUM_TANDEM_LENGTH: */ __pyx_v_oldoutputlen = ((__pyx_v_pos + __pyx_v_tandemlen) - __pyx_v_oldoutputpos); goto __pyx_L9; } /*else*/ { /* "cerrormodel.pyx":396 * oldoutputlen = pos + tandemlen - oldoutputpos * else: * if oldoutputpos != -1 and oldoutputlen >= MINIMUM_TANDEM_LENGTH: # <<<<<<<<<<<<<< * add_tandem_read( oldoutputpos, oldoutputlen, oldoutputunit, indelq, indel_q_data, output_base = output_base) * */ __pyx_t_9 = (__pyx_v_oldoutputpos != -1); if (__pyx_t_9) { __pyx_t_10 = (__pyx_v_oldoutputlen >= __pyx_v_11cerrormodel_MINIMUM_TANDEM_LENGTH); __pyx_t_8 = __pyx_t_10; } else { __pyx_t_8 = __pyx_t_9; } if (__pyx_t_8) { /* "cerrormodel.pyx":397 * else: * if oldoutputpos != -1 and oldoutputlen >= MINIMUM_TANDEM_LENGTH: * add_tandem_read( oldoutputpos, oldoutputlen, oldoutputunit, indelq, indel_q_data, output_base = output_base) # <<<<<<<<<<<<<< * * oldoutputpos = pos */ __pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__add_tandem_read); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_1 = PyInt_FromLong(__pyx_v_oldoutputpos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = PyInt_FromLong(__pyx_v_oldoutputlen); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_5 = PyTuple_New(5); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_1); __Pyx_GIVEREF(__pyx_t_1); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __Pyx_INCREF(((PyObject *)__pyx_v_oldoutputunit)); PyTuple_SET_ITEM(__pyx_t_5, 2, ((PyObject *)__pyx_v_oldoutputunit)); __Pyx_GIVEREF(((PyObject *)__pyx_v_oldoutputunit)); __Pyx_INCREF(((PyObject *)__pyx_v_indelq)); PyTuple_SET_ITEM(__pyx_t_5, 3, ((PyObject *)__pyx_v_indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indelq)); __Pyx_INCREF(((PyObject *)__pyx_v_indel_q_data)); PyTuple_SET_ITEM(__pyx_t_5, 4, ((PyObject *)__pyx_v_indel_q_data)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indel_q_data)); __pyx_t_1 = 0; __pyx_t_2 = 0; __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); __pyx_t_1 = PyInt_FromLong(__pyx_v_output_base); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__output_base), __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_5), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; goto __pyx_L10; } __pyx_L10:; /* "cerrormodel.pyx":399 * add_tandem_read( oldoutputpos, oldoutputlen, oldoutputunit, indelq, indel_q_data, output_base = output_base) * * oldoutputpos = pos # <<<<<<<<<<<<<< * oldoutputlen = tandemlen * oldoutputunit = tandemunit */ __pyx_v_oldoutputpos = __pyx_v_pos; /* "cerrormodel.pyx":400 * * oldoutputpos = pos * oldoutputlen = tandemlen # <<<<<<<<<<<<<< * oldoutputunit = tandemunit * */ __pyx_v_oldoutputlen = __pyx_v_tandemlen; /* "cerrormodel.pyx":401 * oldoutputpos = pos * oldoutputlen = tandemlen * oldoutputunit = tandemunit # <<<<<<<<<<<<<< * * # next position */ __Pyx_INCREF(((PyObject *)__pyx_v_tandemunit)); __Pyx_DECREF(((PyObject *)__pyx_v_oldoutputunit)); __pyx_v_oldoutputunit = __pyx_v_tandemunit; } __pyx_L9:; goto __pyx_L8; } __pyx_L8:; /* "cerrormodel.pyx":404 * * # next position * pos += 1 # <<<<<<<<<<<<<< * * # add last tandem */ __pyx_v_pos = (__pyx_v_pos + 1); } /* "cerrormodel.pyx":407 * * # add last tandem * if oldoutputpos != -1: # <<<<<<<<<<<<<< * add_tandem_read( oldoutputpos, oldoutputlen, oldoutputunit, indelq, indel_q_data, output_base = output_base) * */ __pyx_t_8 = (__pyx_v_oldoutputpos != -1); if (__pyx_t_8) { /* "cerrormodel.pyx":408 * # add last tandem * if oldoutputpos != -1: * add_tandem_read( oldoutputpos, oldoutputlen, oldoutputunit, indelq, indel_q_data, output_base = output_base) # <<<<<<<<<<<<<< * * # post-process */ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__add_tandem_read); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = PyInt_FromLong(__pyx_v_oldoutputpos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_5 = PyInt_FromLong(__pyx_v_oldoutputlen); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_3 = PyTuple_New(5); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_t_5); __Pyx_GIVEREF(__pyx_t_5); __Pyx_INCREF(((PyObject *)__pyx_v_oldoutputunit)); PyTuple_SET_ITEM(__pyx_t_3, 2, ((PyObject *)__pyx_v_oldoutputunit)); __Pyx_GIVEREF(((PyObject *)__pyx_v_oldoutputunit)); __Pyx_INCREF(((PyObject *)__pyx_v_indelq)); PyTuple_SET_ITEM(__pyx_t_3, 3, ((PyObject *)__pyx_v_indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indelq)); __Pyx_INCREF(((PyObject *)__pyx_v_indel_q_data)); PyTuple_SET_ITEM(__pyx_t_3, 4, ((PyObject *)__pyx_v_indel_q_data)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indel_q_data)); __pyx_t_2 = 0; __pyx_t_5 = 0; __pyx_t_5 = PyDict_New(); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_5)); __pyx_t_2 = PyInt_FromLong(__pyx_v_output_base); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); if (PyDict_SetItem(__pyx_t_5, ((PyObject *)__pyx_n_s__output_base), __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), ((PyObject *)__pyx_t_5)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 408; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; goto __pyx_L11; } __pyx_L11:; /* "cerrormodel.pyx":411 * * # post-process * q = ord(indelq[0]) # <<<<<<<<<<<<<< * for idx in range(len(indelq)): * indelq[idx] = chr( min(q, ord(indelq[idx]))) */ __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 411; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_INCREF(PyList_GET_ITEM(__pyx_v_indelq, 0)); PyTuple_SET_ITEM(__pyx_t_2, 0, PyList_GET_ITEM(__pyx_v_indelq, 0)); __Pyx_GIVEREF(PyList_GET_ITEM(__pyx_v_indelq, 0)); __pyx_t_5 = PyObject_Call(__pyx_builtin_ord, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 411; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_t_11 = __Pyx_PyInt_AsChar(__pyx_t_5); if (unlikely((__pyx_t_11 == (char)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 411; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_v_q = __pyx_t_11; /* "cerrormodel.pyx":412 * # post-process * q = ord(indelq[0]) * for idx in range(len(indelq)): # <<<<<<<<<<<<<< * indelq[idx] = chr( min(q, ord(indelq[idx]))) * q = ord(indelq[idx]) */ __pyx_t_4 = PyList_GET_SIZE(((PyObject *)__pyx_v_indelq)); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_5 = PyInt_FromSsize_t(__pyx_t_4); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_5); __Pyx_GIVEREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = PyObject_Call(__pyx_builtin_range, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; if (PyList_CheckExact(__pyx_t_5) || PyTuple_CheckExact(__pyx_t_5)) { __pyx_t_2 = __pyx_t_5; __Pyx_INCREF(__pyx_t_2); __pyx_t_4 = 0; __pyx_t_12 = NULL; } else { __pyx_t_4 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_12 = Py_TYPE(__pyx_t_2)->tp_iternext; } __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; for (;;) { if (!__pyx_t_12 && PyList_CheckExact(__pyx_t_2)) { if (__pyx_t_4 >= PyList_GET_SIZE(__pyx_t_2)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_5 = PyList_GET_ITEM(__pyx_t_2, __pyx_t_4); __Pyx_INCREF(__pyx_t_5); __pyx_t_4++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_5 = PySequence_ITEM(__pyx_t_2, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else if (!__pyx_t_12 && PyTuple_CheckExact(__pyx_t_2)) { if (__pyx_t_4 >= PyTuple_GET_SIZE(__pyx_t_2)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_5 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_4); __Pyx_INCREF(__pyx_t_5); __pyx_t_4++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_5 = PySequence_ITEM(__pyx_t_2, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else { __pyx_t_5 = __pyx_t_12(__pyx_t_2); if (unlikely(!__pyx_t_5)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_5); } __Pyx_XDECREF(__pyx_v_idx); __pyx_v_idx = __pyx_t_5; __pyx_t_5 = 0; /* "cerrormodel.pyx":413 * q = ord(indelq[0]) * for idx in range(len(indelq)): * indelq[idx] = chr( min(q, ord(indelq[idx]))) # <<<<<<<<<<<<<< * q = ord(indelq[idx]) * */ __pyx_t_5 = PyObject_GetItem(((PyObject *)__pyx_v_indelq), __pyx_v_idx); if (!__pyx_t_5) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_5); __Pyx_GIVEREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = PyObject_Call(__pyx_builtin_ord, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_t_11 = __pyx_v_q; __pyx_t_1 = PyInt_FromLong(__pyx_t_11); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_13 = PyObject_RichCompare(__pyx_t_5, __pyx_t_1, Py_LT); __Pyx_XGOTREF(__pyx_t_13); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_8 = __Pyx_PyObject_IsTrue(__pyx_t_13); if (unlikely(__pyx_t_8 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; if (__pyx_t_8) { __Pyx_INCREF(__pyx_t_5); __pyx_t_3 = __pyx_t_5; } else { __pyx_t_13 = PyInt_FromLong(__pyx_t_11); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_13); __pyx_t_3 = __pyx_t_13; __pyx_t_13 = 0; } __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_INCREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyObject_Call(__pyx_builtin_chr, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; if (PyObject_SetItem(((PyObject *)__pyx_v_indelq), __pyx_v_idx, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 413; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; /* "cerrormodel.pyx":414 * for idx in range(len(indelq)): * indelq[idx] = chr( min(q, ord(indelq[idx]))) * q = ord(indelq[idx]) # <<<<<<<<<<<<<< * * # return result */ __pyx_t_3 = PyObject_GetItem(((PyObject *)__pyx_v_indelq), __pyx_v_idx); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 414; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 414; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = PyObject_Call(__pyx_builtin_ord, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 414; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __pyx_t_11 = __Pyx_PyInt_AsChar(__pyx_t_3); if (unlikely((__pyx_t_11 == (char)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 414; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_v_q = __pyx_t_11; } __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "cerrormodel.pyx":417 * * # return result * if reverse: # <<<<<<<<<<<<<< * return ''.join(reversed(indelq)) * else: */ if (__pyx_v_reverse) { /* "cerrormodel.pyx":418 * # return result * if reverse: * return ''.join(reversed(indelq)) # <<<<<<<<<<<<<< * else: * return ''.join(indelq) */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_2 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_17), __pyx_n_s__join); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_INCREF(((PyObject *)__pyx_v_indelq)); PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_v_indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indelq)); __pyx_t_5 = PyObject_Call(__pyx_builtin_reversed, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_5); __Pyx_GIVEREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_5))||((__pyx_t_5) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_5)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = ((PyObject*)__pyx_t_5); __pyx_t_5 = 0; goto __pyx_L0; goto __pyx_L14; } /*else*/ { /* "cerrormodel.pyx":420 * return ''.join(reversed(indelq)) * else: * return ''.join(indelq) # <<<<<<<<<<<<<< * * */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_5 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_17), __pyx_n_s__join); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 420; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 420; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_INCREF(((PyObject *)__pyx_v_indelq)); PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_v_indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_indelq)); __pyx_t_2 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 420; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 420; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; goto __pyx_L0; } __pyx_L14:; __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_13); __Pyx_AddTraceback("cerrormodel.annotate_sequence_read", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_indelq); __Pyx_XDECREF(__pyx_v_sizes); __Pyx_XDECREF(__pyx_v_displacements); __Pyx_XDECREF(__pyx_v_tandemunit); __Pyx_XDECREF(__pyx_v_oldoutputunit); __Pyx_XDECREF(__pyx_v_idx); __Pyx_XDECREF(__pyx_v_sequence); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":425 * ################################################################################################### * * cpdef testAnnotate(): # <<<<<<<<<<<<<< * seq1 = "TATTTGAAAAAAAAAAACATGCGCTTTCGAGCTGTTGAAGAGACGTGTATTGGAATAAGTAATCACATAAGTGTTAGTAACTTATTTAAATACGTATAGAGTCGCCTATTTGCCTAGCCTTTTGGTTCTCAGATTTTTTAATTATTACATTGCTATAAGGGTGTAACTGTGTGATAGCCAAAATTTTAAGCTGCAAATGGTTTGTAAATATGATATATTACAAGCTTCATGAAAATCGGTTTATGACTGATCCGCGATTACGTTGAAAGGCGACTGGCAGAGATACTTTTGTTCAGATGTTTTTTCAGGTAGCGATTCCAATGAATAGGTAAAATACCTTGCAAGTTTTGTTGTTGTCGTTGGAGGAAATGTGGATGTGGTTGTTATTGTTGA" * */ static PyObject *__pyx_pw_11cerrormodel_11testAnnotate(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused); /*proto*/ static PyObject *__pyx_f_11cerrormodel_testAnnotate(CYTHON_UNUSED int __pyx_skip_dispatch) { PyObject *__pyx_v_seq1 = NULL; PyObject *__pyx_v_time = NULL; PyObject *__pyx_v_t = NULL; PyObject *__pyx_v_model = NULL; PyObject *__pyx_v_indelq = NULL; PyObject *__pyx_v_indelq_fast = NULL; PyObject *__pyx_v_asr_fw = NULL; PyObject *__pyx_v_asr_bw = NULL; CYTHON_UNUSED PyObject *__pyx_v_seq2 = NULL; CYTHON_UNUSED long __pyx_v_i; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_t_3; long __pyx_t_4; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("testAnnotate", 0); /* "cerrormodel.pyx":426 * * cpdef testAnnotate(): * seq1 = "TATTTGAAAAAAAAAAACATGCGCTTTCGAGCTGTTGAAGAGACGTGTATTGGAATAAGTAATCACATAAGTGTTAGTAACTTATTTAAATACGTATAGAGTCGCCTATTTGCCTAGCCTTTTGGTTCTCAGATTTTTTAATTATTACATTGCTATAAGGGTGTAACTGTGTGATAGCCAAAATTTTAAGCTGCAAATGGTTTGTAAATATGATATATTACAAGCTTCATGAAAATCGGTTTATGACTGATCCGCGATTACGTTGAAAGGCGACTGGCAGAGATACTTTTGTTCAGATGTTTTTTCAGGTAGCGATTCCAATGAATAGGTAAAATACCTTGCAAGTTTTGTTGTTGTCGTTGGAGGAAATGTGGATGTGGTTGTTATTGTTGA" # <<<<<<<<<<<<<< * * import time */ __Pyx_INCREF(((PyObject *)__pyx_n_s_22)); __pyx_v_seq1 = ((PyObject *)__pyx_n_s_22); /* "cerrormodel.pyx":428 * seq1 = "TATTTGAAAAAAAAAAACATGCGCTTTCGAGCTGTTGAAGAGACGTGTATTGGAATAAGTAATCACATAAGTGTTAGTAACTTATTTAAATACGTATAGAGTCGCCTATTTGCCTAGCCTTTTGGTTCTCAGATTTTTTAATTATTACATTGCTATAAGGGTGTAACTGTGTGATAGCCAAAATTTTAAGCTGCAAATGGTTTGTAAATATGATATATTACAAGCTTCATGAAAATCGGTTTATGACTGATCCGCGATTACGTTGAAAGGCGACTGGCAGAGATACTTTTGTTCAGATGTTTTTTCAGGTAGCGATTCCAATGAATAGGTAAAATACCTTGCAAGTTTTGTTGTTGTCGTTGGAGGAAATGTGGATGTGGTTGTTATTGTTGA" * * import time # <<<<<<<<<<<<<< * * t = time.clock() */ __pyx_t_1 = __Pyx_Import(((PyObject *)__pyx_n_s__time), 0, -1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 428; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_time = __pyx_t_1; __pyx_t_1 = 0; /* "cerrormodel.pyx":430 * import time * * t = time.clock() # <<<<<<<<<<<<<< * model = {1:'SSI?5+#', * 'AG':'SS#'} */ __pyx_t_1 = PyObject_GetAttr(__pyx_v_time, __pyx_n_s__clock); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 430; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 430; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_v_t = __pyx_t_2; __pyx_t_2 = 0; /* "cerrormodel.pyx":431 * * t = time.clock() * model = {1:'SSI?5+#', # <<<<<<<<<<<<<< * 'AG':'SS#'} * indelq = annotate_sequence_slow(seq1, model, ord('!'), 24) */ __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 431; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); if (PyDict_SetItem(__pyx_t_2, __pyx_int_1, ((PyObject *)__pyx_kp_s_23)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 431; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__AG), ((PyObject *)__pyx_kp_s_24)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 431; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_model = __pyx_t_2; __pyx_t_2 = 0; /* "cerrormodel.pyx":433 * model = {1:'SSI?5+#', * 'AG':'SS#'} * indelq = annotate_sequence_slow(seq1, model, ord('!'), 24) # <<<<<<<<<<<<<< * indelq_fast = annotate_sequence(seq1, model, ord('!')) * asr_fw = annotate_sequence_read(seq1, model, ord('!'), False) */ __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_int_33); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 433; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = ((PyObject *)__pyx_f_11cerrormodel_annotate_sequence_slow(__pyx_v_seq1, __pyx_v_model, __pyx_t_3, 24)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 433; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_v_indelq = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "cerrormodel.pyx":434 * 'AG':'SS#'} * indelq = annotate_sequence_slow(seq1, model, ord('!'), 24) * indelq_fast = annotate_sequence(seq1, model, ord('!')) # <<<<<<<<<<<<<< * asr_fw = annotate_sequence_read(seq1, model, ord('!'), False) * asr_bw = annotate_sequence_read(seq1, model, ord('!'), True) */ __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_int_33); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 434; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = ((PyObject *)__pyx_f_11cerrormodel_annotate_sequence(__pyx_v_seq1, __pyx_v_model, __pyx_t_3)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 434; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_v_indelq_fast = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "cerrormodel.pyx":435 * indelq = annotate_sequence_slow(seq1, model, ord('!'), 24) * indelq_fast = annotate_sequence(seq1, model, ord('!')) * asr_fw = annotate_sequence_read(seq1, model, ord('!'), False) # <<<<<<<<<<<<<< * asr_bw = annotate_sequence_read(seq1, model, ord('!'), True) * print seq1 */ __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_int_33); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 435; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = ((PyObject *)__pyx_f_11cerrormodel_annotate_sequence_read(__pyx_v_seq1, __pyx_v_model, __pyx_t_3, 0)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 435; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_v_asr_fw = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "cerrormodel.pyx":436 * indelq_fast = annotate_sequence(seq1, model, ord('!')) * asr_fw = annotate_sequence_read(seq1, model, ord('!'), False) * asr_bw = annotate_sequence_read(seq1, model, ord('!'), True) # <<<<<<<<<<<<<< * print seq1 * print indelq */ __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_int_33); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 436; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = ((PyObject *)__pyx_f_11cerrormodel_annotate_sequence_read(__pyx_v_seq1, __pyx_v_model, __pyx_t_3, 1)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 436; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_v_asr_bw = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "cerrormodel.pyx":437 * asr_fw = annotate_sequence_read(seq1, model, ord('!'), False) * asr_bw = annotate_sequence_read(seq1, model, ord('!'), True) * print seq1 # <<<<<<<<<<<<<< * print indelq * print indelq_fast */ if (__Pyx_PrintOne(0, __pyx_v_seq1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 437; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "cerrormodel.pyx":438 * asr_bw = annotate_sequence_read(seq1, model, ord('!'), True) * print seq1 * print indelq # <<<<<<<<<<<<<< * print indelq_fast * print asr_fw */ if (__Pyx_PrintOne(0, ((PyObject *)__pyx_v_indelq)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "cerrormodel.pyx":439 * print seq1 * print indelq * print indelq_fast # <<<<<<<<<<<<<< * print asr_fw * print asr_bw */ if (__Pyx_PrintOne(0, ((PyObject *)__pyx_v_indelq_fast)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 439; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "cerrormodel.pyx":440 * print indelq * print indelq_fast * print asr_fw # <<<<<<<<<<<<<< * print asr_bw * */ if (__Pyx_PrintOne(0, ((PyObject *)__pyx_v_asr_fw)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 440; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "cerrormodel.pyx":441 * print indelq_fast * print asr_fw * print asr_bw # <<<<<<<<<<<<<< * * # test speed */ if (__Pyx_PrintOne(0, ((PyObject *)__pyx_v_asr_bw)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 441; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "cerrormodel.pyx":444 * * # test speed * seq2 = seq1*10 # <<<<<<<<<<<<<< * for i in range(10000): * indelq = annotate_sequence(seq1, model, ord('!')) */ __pyx_t_2 = PyNumber_Multiply(__pyx_v_seq1, __pyx_int_10); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 444; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_v_seq2 = __pyx_t_2; __pyx_t_2 = 0; /* "cerrormodel.pyx":445 * # test speed * seq2 = seq1*10 * for i in range(10000): # <<<<<<<<<<<<<< * indelq = annotate_sequence(seq1, model, ord('!')) * */ for (__pyx_t_4 = 0; __pyx_t_4 < 10000; __pyx_t_4+=1) { __pyx_v_i = __pyx_t_4; /* "cerrormodel.pyx":446 * seq2 = seq1*10 * for i in range(10000): * indelq = annotate_sequence(seq1, model, ord('!')) # <<<<<<<<<<<<<< * * print time.clock()-t */ __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_int_33); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 446; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = ((PyObject *)__pyx_f_11cerrormodel_annotate_sequence(__pyx_v_seq1, __pyx_v_model, __pyx_t_3)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 446; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_v_indelq)); __pyx_v_indelq = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; } /* "cerrormodel.pyx":448 * indelq = annotate_sequence(seq1, model, ord('!')) * * print time.clock()-t # <<<<<<<<<<<<<< * * */ __pyx_t_2 = PyObject_GetAttr(__pyx_v_time, __pyx_n_s__clock); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 448; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 448; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyNumber_Subtract(__pyx_t_1, __pyx_v_t); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 448; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__Pyx_PrintOne(0, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 448; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_AddTraceback("cerrormodel.testAnnotate", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_seq1); __Pyx_XDECREF(__pyx_v_time); __Pyx_XDECREF(__pyx_v_t); __Pyx_XDECREF(__pyx_v_model); __Pyx_XDECREF(__pyx_v_indelq); __Pyx_XDECREF(__pyx_v_indelq_fast); __Pyx_XDECREF(__pyx_v_asr_fw); __Pyx_XDECREF(__pyx_v_asr_bw); __Pyx_XDECREF(__pyx_v_seq2); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static PyObject *__pyx_pw_11cerrormodel_11testAnnotate(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused); /*proto*/ static PyObject *__pyx_pw_11cerrormodel_11testAnnotate(PyObject *__pyx_self, CYTHON_UNUSED PyObject *unused) { PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("testAnnotate (wrapper)", 0); __pyx_r = __pyx_pf_11cerrormodel_10testAnnotate(__pyx_self); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "cerrormodel.pyx":425 * ################################################################################################### * * cpdef testAnnotate(): # <<<<<<<<<<<<<< * seq1 = "TATTTGAAAAAAAAAAACATGCGCTTTCGAGCTGTTGAAGAGACGTGTATTGGAATAAGTAATCACATAAGTGTTAGTAACTTATTTAAATACGTATAGAGTCGCCTATTTGCCTAGCCTTTTGGTTCTCAGATTTTTTAATTATTACATTGCTATAAGGGTGTAACTGTGTGATAGCCAAAATTTTAAGCTGCAAATGGTTTGTAAATATGATATATTACAAGCTTCATGAAAATCGGTTTATGACTGATCCGCGATTACGTTGAAAGGCGACTGGCAGAGATACTTTTGTTCAGATGTTTTTTCAGGTAGCGATTCCAATGAATAGGTAAAATACCTTGCAAGTTTTGTTGTTGTCGTTGGAGGAAATGTGGATGTGGTTGTTATTGTTGA" * */ static PyObject *__pyx_pf_11cerrormodel_10testAnnotate(CYTHON_UNUSED PyObject *__pyx_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("testAnnotate", 0); __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __pyx_f_11cerrormodel_testAnnotate(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 425; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("cerrormodel.testAnnotate", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyMethodDef __pyx_methods[] = { {__Pyx_NAMESTR("get_repeats"), (PyCFunction)__pyx_pw_11cerrormodel_1get_repeats, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_11cerrormodel_get_repeats)}, {__Pyx_NAMESTR("approx_indel_error_rate"), (PyCFunction)__pyx_pw_11cerrormodel_3approx_indel_error_rate, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_11cerrormodel_2approx_indel_error_rate)}, {__Pyx_NAMESTR("testAnnotate"), (PyCFunction)__pyx_pw_11cerrormodel_11testAnnotate, METH_NOARGS, __Pyx_DOCSTR(0)}, {0, 0, 0, 0} }; #if PY_MAJOR_VERSION >= 3 static struct PyModuleDef __pyx_moduledef = { PyModuleDef_HEAD_INIT, __Pyx_NAMESTR("cerrormodel"), 0, /* m_doc */ -1, /* m_size */ __pyx_methods /* m_methods */, NULL, /* m_reload */ NULL, /* m_traverse */ NULL, /* m_clear */ NULL /* m_free */ }; #endif static __Pyx_StringTabEntry __pyx_string_tab[] = { {&__pyx_kp_s_17, __pyx_k_17, sizeof(__pyx_k_17), 0, 0, 1, 0}, {&__pyx_kp_s_18, __pyx_k_18, sizeof(__pyx_k_18), 0, 0, 1, 0}, {&__pyx_n_s_22, __pyx_k_22, sizeof(__pyx_k_22), 0, 0, 1, 1}, {&__pyx_kp_s_23, __pyx_k_23, sizeof(__pyx_k_23), 0, 0, 1, 0}, {&__pyx_kp_s_24, __pyx_k_24, sizeof(__pyx_k_24), 0, 0, 1, 0}, {&__pyx_kp_s_27, __pyx_k_27, sizeof(__pyx_k_27), 0, 0, 1, 0}, {&__pyx_n_s__A, __pyx_k__A, sizeof(__pyx_k__A), 0, 0, 1, 1}, {&__pyx_n_s__AC, __pyx_k__AC, sizeof(__pyx_k__AC), 0, 0, 1, 1}, {&__pyx_n_s__ACGT, __pyx_k__ACGT, sizeof(__pyx_k__ACGT), 0, 0, 1, 1}, {&__pyx_n_s__AG, __pyx_k__AG, sizeof(__pyx_k__AG), 0, 0, 1, 1}, {&__pyx_n_s__AT, __pyx_k__AT, sizeof(__pyx_k__AT), 0, 0, 1, 1}, {&__pyx_n_s__C, __pyx_k__C, sizeof(__pyx_k__C), 0, 0, 1, 1}, {&__pyx_n_s__CG, __pyx_k__CG, sizeof(__pyx_k__CG), 0, 0, 1, 1}, {&__pyx_n_s__G, __pyx_k__G, sizeof(__pyx_k__G), 0, 0, 1, 1}, {&__pyx_n_s__N, __pyx_k__N, sizeof(__pyx_k__N), 0, 0, 1, 1}, {&__pyx_n_s__T, __pyx_k__T, sizeof(__pyx_k__T), 0, 0, 1, 1}, {&__pyx_n_s____main__, __pyx_k____main__, sizeof(__pyx_k____main__), 0, 0, 1, 1}, {&__pyx_n_s____test__, __pyx_k____test__, sizeof(__pyx_k____test__), 0, 0, 1, 1}, {&__pyx_n_s__a, __pyx_k__a, sizeof(__pyx_k__a), 0, 0, 1, 1}, {&__pyx_n_s__ac, __pyx_k__ac, sizeof(__pyx_k__ac), 0, 0, 1, 1}, {&__pyx_n_s__add_tandem, __pyx_k__add_tandem, sizeof(__pyx_k__add_tandem), 0, 0, 1, 1}, {&__pyx_n_s__add_tandem_read, __pyx_k__add_tandem_read, sizeof(__pyx_k__add_tandem_read), 0, 0, 1, 1}, {&__pyx_n_s__ag, __pyx_k__ag, sizeof(__pyx_k__ag), 0, 0, 1, 1}, {&__pyx_n_s__c, __pyx_k__c, sizeof(__pyx_k__c), 0, 0, 1, 1}, {&__pyx_n_s__cGenericModel, __pyx_k__cGenericModel, sizeof(__pyx_k__cGenericModel), 0, 0, 1, 1}, {&__pyx_n_s__cModel, __pyx_k__cModel, sizeof(__pyx_k__cModel), 0, 0, 1, 1}, {&__pyx_n_s__cerrormodel, __pyx_k__cerrormodel, sizeof(__pyx_k__cerrormodel), 0, 0, 1, 1}, {&__pyx_n_s__chr, __pyx_k__chr, sizeof(__pyx_k__chr), 0, 0, 1, 1}, {&__pyx_n_s__clock, __pyx_k__clock, sizeof(__pyx_k__clock), 0, 0, 1, 1}, {&__pyx_n_s__count, __pyx_k__count, sizeof(__pyx_k__count), 0, 0, 1, 1}, {&__pyx_n_s__displacement, __pyx_k__displacement, sizeof(__pyx_k__displacement), 0, 0, 1, 1}, {&__pyx_n_s__genericModel, __pyx_k__genericModel, sizeof(__pyx_k__genericModel), 0, 0, 1, 1}, {&__pyx_n_s__get_annotation, __pyx_k__get_annotation, sizeof(__pyx_k__get_annotation), 0, 0, 1, 1}, {&__pyx_n_s__idx, __pyx_k__idx, sizeof(__pyx_k__idx), 0, 0, 1, 1}, {&__pyx_n_s__indel_q_data, __pyx_k__indel_q_data, sizeof(__pyx_k__indel_q_data), 0, 0, 1, 1}, {&__pyx_n_s__indelq, __pyx_k__indelq, sizeof(__pyx_k__indelq), 0, 0, 1, 1}, {&__pyx_n_s__join, __pyx_k__join, sizeof(__pyx_k__join), 0, 0, 1, 1}, {&__pyx_n_s__lower, __pyx_k__lower, sizeof(__pyx_k__lower), 0, 0, 1, 1}, {&__pyx_n_s__min_length, __pyx_k__min_length, sizeof(__pyx_k__min_length), 0, 0, 1, 1}, {&__pyx_n_s__model, __pyx_k__model, sizeof(__pyx_k__model), 0, 0, 1, 1}, {&__pyx_n_s__modelidx, __pyx_k__modelidx, sizeof(__pyx_k__modelidx), 0, 0, 1, 1}, {&__pyx_n_s__ord, __pyx_k__ord, sizeof(__pyx_k__ord), 0, 0, 1, 1}, {&__pyx_n_s__output_base, __pyx_k__output_base, sizeof(__pyx_k__output_base), 0, 0, 1, 1}, {&__pyx_n_s__pos, __pyx_k__pos, sizeof(__pyx_k__pos), 0, 0, 1, 1}, {&__pyx_n_s__q, __pyx_k__q, sizeof(__pyx_k__q), 0, 0, 1, 1}, {&__pyx_n_s__qdata, __pyx_k__qdata, sizeof(__pyx_k__qdata), 0, 0, 1, 1}, {&__pyx_n_s__range, __pyx_k__range, sizeof(__pyx_k__range), 0, 0, 1, 1}, {&__pyx_n_s__repstart, __pyx_k__repstart, sizeof(__pyx_k__repstart), 0, 0, 1, 1}, {&__pyx_n_s__repunitT, __pyx_k__repunitT, sizeof(__pyx_k__repunitT), 0, 0, 1, 1}, {&__pyx_n_s__reversed, __pyx_k__reversed, sizeof(__pyx_k__reversed), 0, 0, 1, 1}, {&__pyx_n_s__seq, __pyx_k__seq, sizeof(__pyx_k__seq), 0, 0, 1, 1}, {&__pyx_n_s__sequence, __pyx_k__sequence, sizeof(__pyx_k__sequence), 0, 0, 1, 1}, {&__pyx_n_s__size, __pyx_k__size, sizeof(__pyx_k__size), 0, 0, 1, 1}, {&__pyx_n_s__sorted, __pyx_k__sorted, sizeof(__pyx_k__sorted), 0, 0, 1, 1}, {&__pyx_n_s__t, __pyx_k__t, sizeof(__pyx_k__t), 0, 0, 1, 1}, {&__pyx_n_s__tandem, __pyx_k__tandem, sizeof(__pyx_k__tandem), 0, 0, 1, 1}, {&__pyx_n_s__tandemlen, __pyx_k__tandemlen, sizeof(__pyx_k__tandemlen), 0, 0, 1, 1}, {&__pyx_n_s__tandemunit, __pyx_k__tandemunit, sizeof(__pyx_k__tandemunit), 0, 0, 1, 1}, {&__pyx_n_s__time, __pyx_k__time, sizeof(__pyx_k__time), 0, 0, 1, 1}, {&__pyx_n_s__upper, __pyx_k__upper, sizeof(__pyx_k__upper), 0, 0, 1, 1}, {0, 0, 0, 0, 0, 0, 0} }; static int __Pyx_InitCachedBuiltins(void) { __pyx_builtin_range = __Pyx_GetName(__pyx_b, __pyx_n_s__range); if (!__pyx_builtin_range) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 46; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_sorted = __Pyx_GetName(__pyx_b, __pyx_n_s__sorted); if (!__pyx_builtin_sorted) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 92; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_chr = __Pyx_GetName(__pyx_b, __pyx_n_s__chr); if (!__pyx_builtin_chr) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_ord = __Pyx_GetName(__pyx_b, __pyx_n_s__ord); if (!__pyx_builtin_ord) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 220; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_reversed = __Pyx_GetName(__pyx_b, __pyx_n_s__reversed); if (!__pyx_builtin_reversed) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 365; __pyx_clineno = __LINE__; goto __pyx_L1_error;} return 0; __pyx_L1_error:; return -1; } static int __Pyx_InitCachedConstants(void) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); /* "cerrormodel.pyx":52 * if length == 1: * if cunit[0] <= 'C': return unit * if cunit[0] == 'G': return bytes('c') # <<<<<<<<<<<<<< * return bytes('a') * elif length == 2: */ __pyx_k_tuple_1 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 52; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_1); __Pyx_INCREF(((PyObject *)__pyx_n_s__c)); PyTuple_SET_ITEM(__pyx_k_tuple_1, 0, ((PyObject *)__pyx_n_s__c)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__c)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_1)); /* "cerrormodel.pyx":53 * if cunit[0] <= 'C': return unit * if cunit[0] == 'G': return bytes('c') * return bytes('a') # <<<<<<<<<<<<<< * elif length == 2: * both = cunit[0]+cunit[1] */ __pyx_k_tuple_2 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 53; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_2); __Pyx_INCREF(((PyObject *)__pyx_n_s__a)); PyTuple_SET_ITEM(__pyx_k_tuple_2, 0, ((PyObject *)__pyx_n_s__a)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__a)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_2)); /* "cerrormodel.pyx":56 * elif length == 2: * both = cunit[0]+cunit[1] * if both == 138: return bytes('CG') # c+g # <<<<<<<<<<<<<< * elif both == 149: return bytes('AT') # a+t * elif both == 132: return bytes('AC') # a+c */ __pyx_k_tuple_3 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 56; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_3); __Pyx_INCREF(((PyObject *)__pyx_n_s__CG)); PyTuple_SET_ITEM(__pyx_k_tuple_3, 0, ((PyObject *)__pyx_n_s__CG)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__CG)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_3)); /* "cerrormodel.pyx":57 * both = cunit[0]+cunit[1] * if both == 138: return bytes('CG') # c+g * elif both == 149: return bytes('AT') # a+t # <<<<<<<<<<<<<< * elif both == 132: return bytes('AC') # a+c * elif both == 155: return bytes('ac') # g+t */ __pyx_k_tuple_4 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 57; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_4); __Pyx_INCREF(((PyObject *)__pyx_n_s__AT)); PyTuple_SET_ITEM(__pyx_k_tuple_4, 0, ((PyObject *)__pyx_n_s__AT)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__AT)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_4)); /* "cerrormodel.pyx":58 * if both == 138: return bytes('CG') # c+g * elif both == 149: return bytes('AT') # a+t * elif both == 132: return bytes('AC') # a+c # <<<<<<<<<<<<<< * elif both == 155: return bytes('ac') # g+t * elif both == 136: return bytes('AG') # a+g */ __pyx_k_tuple_5 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 58; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_5); __Pyx_INCREF(((PyObject *)__pyx_n_s__AC)); PyTuple_SET_ITEM(__pyx_k_tuple_5, 0, ((PyObject *)__pyx_n_s__AC)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__AC)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_5)); /* "cerrormodel.pyx":59 * elif both == 149: return bytes('AT') # a+t * elif both == 132: return bytes('AC') # a+c * elif both == 155: return bytes('ac') # g+t # <<<<<<<<<<<<<< * elif both == 136: return bytes('AG') # a+g * return bytes('ag') # t+c */ __pyx_k_tuple_6 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 59; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_6); __Pyx_INCREF(((PyObject *)__pyx_n_s__ac)); PyTuple_SET_ITEM(__pyx_k_tuple_6, 0, ((PyObject *)__pyx_n_s__ac)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ac)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_6)); /* "cerrormodel.pyx":60 * elif both == 132: return bytes('AC') # a+c * elif both == 155: return bytes('ac') # g+t * elif both == 136: return bytes('AG') # a+g # <<<<<<<<<<<<<< * return bytes('ag') # t+c * cdef bytes n1,n2,n3,n4,n5,n6,n7,n8 */ __pyx_k_tuple_7 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 60; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_7); __Pyx_INCREF(((PyObject *)__pyx_n_s__AG)); PyTuple_SET_ITEM(__pyx_k_tuple_7, 0, ((PyObject *)__pyx_n_s__AG)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__AG)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_7)); /* "cerrormodel.pyx":61 * elif both == 155: return bytes('ac') # g+t * elif both == 136: return bytes('AG') # a+g * return bytes('ag') # t+c # <<<<<<<<<<<<<< * cdef bytes n1,n2,n3,n4,n5,n6,n7,n8 * if repunit_dict == None: */ __pyx_k_tuple_8 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 61; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_8); __Pyx_INCREF(((PyObject *)__pyx_n_s__ag)); PyTuple_SET_ITEM(__pyx_k_tuple_8, 0, ((PyObject *)__pyx_n_s__ag)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ag)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_8)); /* "cerrormodel.pyx":65 * if repunit_dict == None: * repunit_dict = {} * for n1 in bytes('ACGT'): # <<<<<<<<<<<<<< * for n2 in bytes('ACGT'): * for n3 in bytes('ACGT'): */ __pyx_k_tuple_9 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 65; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_9); __Pyx_INCREF(((PyObject *)__pyx_n_s__ACGT)); PyTuple_SET_ITEM(__pyx_k_tuple_9, 0, ((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_9)); /* "cerrormodel.pyx":66 * repunit_dict = {} * for n1 in bytes('ACGT'): * for n2 in bytes('ACGT'): # <<<<<<<<<<<<<< * for n3 in bytes('ACGT'): * repunit_dict[n1+n2+n3] = normalize_repunit(n1+n2+n3) */ __pyx_k_tuple_10 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_10); __Pyx_INCREF(((PyObject *)__pyx_n_s__ACGT)); PyTuple_SET_ITEM(__pyx_k_tuple_10, 0, ((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_10)); /* "cerrormodel.pyx":67 * for n1 in bytes('ACGT'): * for n2 in bytes('ACGT'): * for n3 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3] = normalize_repunit(n1+n2+n3) * for n4 in bytes('ACGT'): */ __pyx_k_tuple_11 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 67; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_11); __Pyx_INCREF(((PyObject *)__pyx_n_s__ACGT)); PyTuple_SET_ITEM(__pyx_k_tuple_11, 0, ((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_11)); /* "cerrormodel.pyx":69 * for n3 in bytes('ACGT'): * repunit_dict[n1+n2+n3] = normalize_repunit(n1+n2+n3) * for n4 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3+n4] = normalize_repunit(n1+n2+n3+n4) * for n5 in bytes('ACGT'): */ __pyx_k_tuple_12 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_12); __Pyx_INCREF(((PyObject *)__pyx_n_s__ACGT)); PyTuple_SET_ITEM(__pyx_k_tuple_12, 0, ((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_12)); /* "cerrormodel.pyx":71 * for n4 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4] = normalize_repunit(n1+n2+n3+n4) * for n5 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3+n4+n5] = normalize_repunit(n1+n2+n3+n4+n5) * for n6 in bytes('ACGT'): */ __pyx_k_tuple_13 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 71; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_13); __Pyx_INCREF(((PyObject *)__pyx_n_s__ACGT)); PyTuple_SET_ITEM(__pyx_k_tuple_13, 0, ((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_13)); /* "cerrormodel.pyx":73 * for n5 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5] = normalize_repunit(n1+n2+n3+n4+n5) * for n6 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3+n4+n5+n6] = normalize_repunit(n1+n2+n3+n4+n5+n6) * for n7 in bytes('ACGT'): */ __pyx_k_tuple_14 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 73; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_14); __Pyx_INCREF(((PyObject *)__pyx_n_s__ACGT)); PyTuple_SET_ITEM(__pyx_k_tuple_14, 0, ((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_14)); /* "cerrormodel.pyx":75 * for n6 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5+n6] = normalize_repunit(n1+n2+n3+n4+n5+n6) * for n7 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3+n4+n5+n6+n7] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7) * for n8 in bytes('ACGT'): */ __pyx_k_tuple_15 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 75; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_15); __Pyx_INCREF(((PyObject *)__pyx_n_s__ACGT)); PyTuple_SET_ITEM(__pyx_k_tuple_15, 0, ((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_15)); /* "cerrormodel.pyx":77 * for n7 in bytes('ACGT'): * repunit_dict[n1+n2+n3+n4+n5+n6+n7] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7) * for n8 in bytes('ACGT'): # <<<<<<<<<<<<<< * repunit_dict[n1+n2+n3+n4+n5+n6+n7+n8] = normalize_repunit(n1+n2+n3+n4+n5+n6+n7+n8) * if length <= 8: */ __pyx_k_tuple_16 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_16); __Pyx_INCREF(((PyObject *)__pyx_n_s__ACGT)); PyTuple_SET_ITEM(__pyx_k_tuple_16, 0, ((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ACGT)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_16)); /* "cerrormodel.pyx":164 * * cdef tuple microsattelite( char* seq, int seqlen, int start, int tandem ): * cdef tuple maxlen = (-1,"",-1) # <<<<<<<<<<<<<< * cdef tuple result * for m in range(1,tandem+1): */ __pyx_k_tuple_19 = PyTuple_New(3); if (unlikely(!__pyx_k_tuple_19)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 164; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_19); __Pyx_INCREF(__pyx_int_neg_1); PyTuple_SET_ITEM(__pyx_k_tuple_19, 0, __pyx_int_neg_1); __Pyx_GIVEREF(__pyx_int_neg_1); __Pyx_INCREF(((PyObject *)__pyx_kp_s_17)); PyTuple_SET_ITEM(__pyx_k_tuple_19, 1, ((PyObject *)__pyx_kp_s_17)); __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_17)); __Pyx_INCREF(__pyx_int_neg_1); PyTuple_SET_ITEM(__pyx_k_tuple_19, 2, __pyx_int_neg_1); __Pyx_GIVEREF(__pyx_int_neg_1); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_19)); /* "cerrormodel.pyx":335 * * # concatenate or output * if tandemlen >= 2 and tandemunit.count('N') == 0: # <<<<<<<<<<<<<< * if oldoutputpos + oldoutputlen >= pos and oldoutputunit == tandemunit: * oldoutputlen = pos + tandemlen - oldoutputpos */ __pyx_k_tuple_20 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_20)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 335; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_20); __Pyx_INCREF(((PyObject *)__pyx_n_s__N)); PyTuple_SET_ITEM(__pyx_k_tuple_20, 0, ((PyObject *)__pyx_n_s__N)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__N)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_20)); /* "cerrormodel.pyx":392 * * # concatenate or output * if tandemlen >= 2 and tandemunit.count('N') == 0: # <<<<<<<<<<<<<< * if oldoutputpos + oldoutputlen >= pos and oldoutputunit == tandemunit: * oldoutputlen = pos + tandemlen - oldoutputpos */ __pyx_k_tuple_21 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_21)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 392; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_21); __Pyx_INCREF(((PyObject *)__pyx_n_s__N)); PyTuple_SET_ITEM(__pyx_k_tuple_21, 0, ((PyObject *)__pyx_n_s__N)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__N)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_21)); /* "cerrormodel.pyx":179 * ################################################################################################### * * def get_annotation(seq, pos, tandem): # <<<<<<<<<<<<<< * t, repunitT, repstart = microsattelite( seq, len(seq), pos, tandem ) * return t,normalize_repunit(repunitT),repstart */ __pyx_k_tuple_25 = PyTuple_New(6); if (unlikely(!__pyx_k_tuple_25)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_25); __Pyx_INCREF(((PyObject *)__pyx_n_s__seq)); PyTuple_SET_ITEM(__pyx_k_tuple_25, 0, ((PyObject *)__pyx_n_s__seq)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__seq)); __Pyx_INCREF(((PyObject *)__pyx_n_s__pos)); PyTuple_SET_ITEM(__pyx_k_tuple_25, 1, ((PyObject *)__pyx_n_s__pos)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__pos)); __Pyx_INCREF(((PyObject *)__pyx_n_s__tandem)); PyTuple_SET_ITEM(__pyx_k_tuple_25, 2, ((PyObject *)__pyx_n_s__tandem)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__tandem)); __Pyx_INCREF(((PyObject *)__pyx_n_s__t)); PyTuple_SET_ITEM(__pyx_k_tuple_25, 3, ((PyObject *)__pyx_n_s__t)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__t)); __Pyx_INCREF(((PyObject *)__pyx_n_s__repunitT)); PyTuple_SET_ITEM(__pyx_k_tuple_25, 4, ((PyObject *)__pyx_n_s__repunitT)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__repunitT)); __Pyx_INCREF(((PyObject *)__pyx_n_s__repstart)); PyTuple_SET_ITEM(__pyx_k_tuple_25, 5, ((PyObject *)__pyx_n_s__repstart)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__repstart)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_25)); __pyx_k_codeobj_26 = (PyObject*)__Pyx_PyCode_New(3, 0, 6, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_k_tuple_25, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_27, __pyx_n_s__get_annotation, 179, __pyx_empty_bytes); if (unlikely(!__pyx_k_codeobj_26)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "cerrormodel.pyx":185 * ################################################################################################### * * def add_tandem(int pos, int tandemlen, bytes tandemunit, list indelq, dict indel_q_data, int output_base=0): # <<<<<<<<<<<<<< * """ * Adds gap opening penalties in string indelq, for the tandem repeat described by output. */ __pyx_k_tuple_28 = PyTuple_New(11); if (unlikely(!__pyx_k_tuple_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_28); __Pyx_INCREF(((PyObject *)__pyx_n_s__pos)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 0, ((PyObject *)__pyx_n_s__pos)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__pos)); __Pyx_INCREF(((PyObject *)__pyx_n_s__tandemlen)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 1, ((PyObject *)__pyx_n_s__tandemlen)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__tandemlen)); __Pyx_INCREF(((PyObject *)__pyx_n_s__tandemunit)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 2, ((PyObject *)__pyx_n_s__tandemunit)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__tandemunit)); __Pyx_INCREF(((PyObject *)__pyx_n_s__indelq)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 3, ((PyObject *)__pyx_n_s__indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__indelq)); __Pyx_INCREF(((PyObject *)__pyx_n_s__indel_q_data)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 4, ((PyObject *)__pyx_n_s__indel_q_data)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__indel_q_data)); __Pyx_INCREF(((PyObject *)__pyx_n_s__output_base)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 5, ((PyObject *)__pyx_n_s__output_base)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__output_base)); __Pyx_INCREF(((PyObject *)__pyx_n_s__model)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 6, ((PyObject *)__pyx_n_s__model)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__model)); __Pyx_INCREF(((PyObject *)__pyx_n_s__cModel)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 7, ((PyObject *)__pyx_n_s__cModel)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__cModel)); __Pyx_INCREF(((PyObject *)__pyx_n_s__qdata)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 8, ((PyObject *)__pyx_n_s__qdata)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__qdata)); __Pyx_INCREF(((PyObject *)__pyx_n_s__q)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 9, ((PyObject *)__pyx_n_s__q)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__q)); __Pyx_INCREF(((PyObject *)__pyx_n_s__idx)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 10, ((PyObject *)__pyx_n_s__idx)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__idx)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_28)); __pyx_k_codeobj_29 = (PyObject*)__Pyx_PyCode_New(6, 0, 11, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_k_tuple_28, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_27, __pyx_n_s__add_tandem, 185, __pyx_empty_bytes); if (unlikely(!__pyx_k_codeobj_29)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "cerrormodel.pyx":225 * * * def add_tandem_read(int pos, int tandemlen, bytes tandemunit, list indelq, dict indel_q_data, int output_base=0): # <<<<<<<<<<<<<< * """ * As add_tandem above, but calculates upper bounds for read base qualities due to polymerase slippage. */ __pyx_k_tuple_30 = PyTuple_New(14); if (unlikely(!__pyx_k_tuple_30)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_30); __Pyx_INCREF(((PyObject *)__pyx_n_s__pos)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 0, ((PyObject *)__pyx_n_s__pos)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__pos)); __Pyx_INCREF(((PyObject *)__pyx_n_s__tandemlen)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 1, ((PyObject *)__pyx_n_s__tandemlen)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__tandemlen)); __Pyx_INCREF(((PyObject *)__pyx_n_s__tandemunit)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 2, ((PyObject *)__pyx_n_s__tandemunit)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__tandemunit)); __Pyx_INCREF(((PyObject *)__pyx_n_s__indelq)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 3, ((PyObject *)__pyx_n_s__indelq)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__indelq)); __Pyx_INCREF(((PyObject *)__pyx_n_s__indel_q_data)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 4, ((PyObject *)__pyx_n_s__indel_q_data)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__indel_q_data)); __Pyx_INCREF(((PyObject *)__pyx_n_s__output_base)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 5, ((PyObject *)__pyx_n_s__output_base)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__output_base)); __Pyx_INCREF(((PyObject *)__pyx_n_s__model)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 6, ((PyObject *)__pyx_n_s__model)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__model)); __Pyx_INCREF(((PyObject *)__pyx_n_s__genericModel)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 7, ((PyObject *)__pyx_n_s__genericModel)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__genericModel)); __Pyx_INCREF(((PyObject *)__pyx_n_s__cModel)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 8, ((PyObject *)__pyx_n_s__cModel)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__cModel)); __Pyx_INCREF(((PyObject *)__pyx_n_s__cGenericModel)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 9, ((PyObject *)__pyx_n_s__cGenericModel)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__cGenericModel)); __Pyx_INCREF(((PyObject *)__pyx_n_s__qdata)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 10, ((PyObject *)__pyx_n_s__qdata)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__qdata)); __Pyx_INCREF(((PyObject *)__pyx_n_s__modelidx)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 11, ((PyObject *)__pyx_n_s__modelidx)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__modelidx)); __Pyx_INCREF(((PyObject *)__pyx_n_s__q)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 12, ((PyObject *)__pyx_n_s__q)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__q)); __Pyx_INCREF(((PyObject *)__pyx_n_s__idx)); PyTuple_SET_ITEM(__pyx_k_tuple_30, 13, ((PyObject *)__pyx_n_s__idx)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__idx)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_30)); __pyx_k_codeobj_31 = (PyObject*)__Pyx_PyCode_New(6, 0, 14, 0, 0, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_k_tuple_30, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_27, __pyx_n_s__add_tandem_read, 225, __pyx_empty_bytes); if (unlikely(!__pyx_k_codeobj_31)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_RefNannyFinishContext(); return 0; __pyx_L1_error:; __Pyx_RefNannyFinishContext(); return -1; } static int __Pyx_InitGlobals(void) { if (__Pyx_InitStrings(__pyx_string_tab) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_0 = PyInt_FromLong(0); if (unlikely(!__pyx_int_0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_1 = PyInt_FromLong(1); if (unlikely(!__pyx_int_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_2 = PyInt_FromLong(2); if (unlikely(!__pyx_int_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_neg_1 = PyInt_FromLong(-1); if (unlikely(!__pyx_int_neg_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_10 = PyInt_FromLong(10); if (unlikely(!__pyx_int_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_33 = PyInt_FromLong(33); if (unlikely(!__pyx_int_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; return 0; __pyx_L1_error:; return -1; } #if PY_MAJOR_VERSION < 3 PyMODINIT_FUNC initcerrormodel(void); /*proto*/ PyMODINIT_FUNC initcerrormodel(void) #else PyMODINIT_FUNC PyInit_cerrormodel(void); /*proto*/ PyMODINIT_FUNC PyInit_cerrormodel(void) #endif { PyObject *__pyx_t_1 = NULL; __Pyx_RefNannyDeclarations #if CYTHON_REFNANNY __Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); if (!__Pyx_RefNanny) { PyErr_Clear(); __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); if (!__Pyx_RefNanny) Py_FatalError("failed to import 'refnanny' module"); } #endif __Pyx_RefNannySetupContext("PyMODINIT_FUNC PyInit_cerrormodel(void)", 0); if ( __Pyx_check_binary_version() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #ifdef __Pyx_CyFunction_USED if (__Pyx_CyFunction_init() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif #ifdef __Pyx_FusedFunction_USED if (__pyx_FusedFunction_init() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif #ifdef __Pyx_Generator_USED if (__pyx_Generator_init() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif /*--- Library function declarations ---*/ /*--- Threads initialization code ---*/ #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS #ifdef WITH_THREAD /* Python build with threading support? */ PyEval_InitThreads(); #endif #endif /*--- Module creation code ---*/ #if PY_MAJOR_VERSION < 3 __pyx_m = Py_InitModule4(__Pyx_NAMESTR("cerrormodel"), __pyx_methods, 0, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); #else __pyx_m = PyModule_Create(&__pyx_moduledef); #endif if (unlikely(!__pyx_m)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #if PY_MAJOR_VERSION >= 3 { PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (!PyDict_GetItemString(modules, "cerrormodel")) { if (unlikely(PyDict_SetItemString(modules, "cerrormodel", __pyx_m) < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } } #endif __pyx_b = PyImport_AddModule(__Pyx_NAMESTR(__Pyx_BUILTIN_MODULE_NAME)); if (unlikely(!__pyx_b)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #if CYTHON_COMPILING_IN_PYPY Py_INCREF(__pyx_b); #endif if (__Pyx_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; /*--- Initialize various global constants etc. ---*/ if (unlikely(__Pyx_InitGlobals() < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_module_is_main_cerrormodel) { if (__Pyx_SetAttrString(__pyx_m, "__name__", __pyx_n_s____main__) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; } /*--- Builtin init code ---*/ if (unlikely(__Pyx_InitCachedBuiltins() < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /*--- Constants init code ---*/ if (unlikely(__Pyx_InitCachedConstants() < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /*--- Global init code ---*/ __pyx_v_11cerrormodel_repunit_dict = ((PyObject*)Py_None); Py_INCREF(Py_None); /*--- Variable export code ---*/ /*--- Function export code ---*/ if (__Pyx_ExportFunction("annotate_sequence", (void (*)(void))__pyx_f_11cerrormodel_annotate_sequence, "PyObject *(PyObject *, PyObject *, int)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ExportFunction("annotate_sequence_read", (void (*)(void))__pyx_f_11cerrormodel_annotate_sequence_read, "PyObject *(PyObject *, PyObject *, int, int)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ExportFunction("annotate_sequence_slow", (void (*)(void))__pyx_f_11cerrormodel_annotate_sequence_slow, "PyObject *(PyObject *, PyObject *, int, int)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ExportFunction("calculate_size_and_displacement", (void (*)(void))__pyx_f_11cerrormodel_calculate_size_and_displacement, "PyObject *(PyObject *, char)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ExportFunction("get_repeats", (void (*)(void))__pyx_f_11cerrormodel_get_repeats, "PyObject *(PyObject *, int, long, int __pyx_skip_dispatch)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ExportFunction("approx_indel_error_rate", (void (*)(void))__pyx_f_11cerrormodel_approx_indel_error_rate, "int (int, int, int __pyx_skip_dispatch)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ExportFunction("testAnnotate", (void (*)(void))__pyx_f_11cerrormodel_testAnnotate, "PyObject *(int __pyx_skip_dispatch)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /*--- Type init code ---*/ /*--- Type import code ---*/ /*--- Variable import code ---*/ /*--- Function import code ---*/ /*--- Execution code ---*/ /* "cerrormodel.pyx":14 * * # define the minimum tandem length defined in the model. * cdef int MINIMUM_TANDEM_LENGTH = 4 # <<<<<<<<<<<<<< * cdef dict repunit_dict = None * */ __pyx_v_11cerrormodel_MINIMUM_TANDEM_LENGTH = 4; /* "cerrormodel.pyx":15 * # define the minimum tandem length defined in the model. * cdef int MINIMUM_TANDEM_LENGTH = 4 * cdef dict repunit_dict = None # <<<<<<<<<<<<<< * * cdef extern from "tandem.h": */ __Pyx_INCREF(Py_None); __Pyx_XGOTREF(((PyObject *)__pyx_v_11cerrormodel_repunit_dict)); __Pyx_DECREF(((PyObject *)__pyx_v_11cerrormodel_repunit_dict)); __Pyx_GIVEREF(Py_None); __pyx_v_11cerrormodel_repunit_dict = ((PyObject*)Py_None); /* "cerrormodel.pyx":179 * ################################################################################################### * * def get_annotation(seq, pos, tandem): # <<<<<<<<<<<<<< * t, repunitT, repstart = microsattelite( seq, len(seq), pos, tandem ) * return t,normalize_repunit(repunitT),repstart */ __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_11cerrormodel_5get_annotation, NULL, __pyx_n_s__cerrormodel); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (PyObject_SetAttr(__pyx_m, __pyx_n_s__get_annotation, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "cerrormodel.pyx":185 * ################################################################################################### * * def add_tandem(int pos, int tandemlen, bytes tandemunit, list indelq, dict indel_q_data, int output_base=0): # <<<<<<<<<<<<<< * """ * Adds gap opening penalties in string indelq, for the tandem repeat described by output. */ __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_11cerrormodel_7add_tandem, NULL, __pyx_n_s__cerrormodel); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (PyObject_SetAttr(__pyx_m, __pyx_n_s__add_tandem, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "cerrormodel.pyx":225 * * * def add_tandem_read(int pos, int tandemlen, bytes tandemunit, list indelq, dict indel_q_data, int output_base=0): # <<<<<<<<<<<<<< * """ * As add_tandem above, but calculates upper bounds for read base qualities due to polymerase slippage. */ __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_11cerrormodel_9add_tandem_read, NULL, __pyx_n_s__cerrormodel); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (PyObject_SetAttr(__pyx_m, __pyx_n_s__add_tandem_read, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "cerrormodel.pyx":1 * ################################################################################################### # <<<<<<<<<<<<<< * * cdef extern from "stdlib.h": */ __pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_1)); if (PyObject_SetAttr(__pyx_m, __pyx_n_s____test__, ((PyObject *)__pyx_t_1)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); if (__pyx_m) { __Pyx_AddTraceback("init cerrormodel", __pyx_clineno, __pyx_lineno, __pyx_filename); Py_DECREF(__pyx_m); __pyx_m = 0; } else if (!PyErr_Occurred()) { PyErr_SetString(PyExc_ImportError, "init cerrormodel"); } __pyx_L0:; __Pyx_RefNannyFinishContext(); #if PY_MAJOR_VERSION < 3 return; #else return __pyx_m; #endif } /* Runtime support code */ #if CYTHON_REFNANNY static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { PyObject *m = NULL, *p = NULL; void *r = NULL; m = PyImport_ImportModule((char *)modname); if (!m) goto end; p = PyObject_GetAttrString(m, (char *)"RefNannyAPI"); if (!p) goto end; r = PyLong_AsVoidPtr(p); end: Py_XDECREF(p); Py_XDECREF(m); return (__Pyx_RefNannyAPIStruct *)r; } #endif /* CYTHON_REFNANNY */ static PyObject *__Pyx_GetName(PyObject *dict, PyObject *name) { PyObject *result; result = PyObject_GetAttr(dict, name); if (!result) { if (dict != __pyx_b) { PyErr_Clear(); result = PyObject_GetAttr(__pyx_b, name); } if (!result) { PyErr_SetObject(PyExc_NameError, name); } } return result; } static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) { PyErr_Format(PyExc_ValueError, "too many values to unpack (expected %" CYTHON_FORMAT_SSIZE_T "d)", expected); } static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) { PyErr_Format(PyExc_ValueError, "need more than %" CYTHON_FORMAT_SSIZE_T "d value%s to unpack", index, (index == 1) ? "" : "s"); } static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); } static CYTHON_INLINE int __Pyx_IterFinish(void) { #if CYTHON_COMPILING_IN_CPYTHON PyThreadState *tstate = PyThreadState_GET(); PyObject* exc_type = tstate->curexc_type; if (unlikely(exc_type)) { if (likely(exc_type == PyExc_StopIteration) || PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)) { PyObject *exc_value, *exc_tb; exc_value = tstate->curexc_value; exc_tb = tstate->curexc_traceback; tstate->curexc_type = 0; tstate->curexc_value = 0; tstate->curexc_traceback = 0; Py_DECREF(exc_type); Py_XDECREF(exc_value); Py_XDECREF(exc_tb); return 0; } else { return -1; } } return 0; #else if (unlikely(PyErr_Occurred())) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) { PyErr_Clear(); return 0; } else { return -1; } } return 0; #endif } static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected) { if (unlikely(retval)) { Py_DECREF(retval); __Pyx_RaiseTooManyValuesError(expected); return -1; } else { return __Pyx_IterFinish(); } return 0; } static void __Pyx_RaiseArgtupleInvalid( const char* func_name, int exact, Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found) { Py_ssize_t num_expected; const char *more_or_less; if (num_found < num_min) { num_expected = num_min; more_or_less = "at least"; } else { num_expected = num_max; more_or_less = "at most"; } if (exact) { more_or_less = "exactly"; } PyErr_Format(PyExc_TypeError, "%s() takes %s %" CYTHON_FORMAT_SSIZE_T "d positional argument%s (%" CYTHON_FORMAT_SSIZE_T "d given)", func_name, more_or_less, num_expected, (num_expected == 1) ? "" : "s", num_found); } static void __Pyx_RaiseDoubleKeywordsError( const char* func_name, PyObject* kw_name) { PyErr_Format(PyExc_TypeError, #if PY_MAJOR_VERSION >= 3 "%s() got multiple values for keyword argument '%U'", func_name, kw_name); #else "%s() got multiple values for keyword argument '%s'", func_name, PyString_AsString(kw_name)); #endif } static int __Pyx_ParseOptionalKeywords( PyObject *kwds, PyObject **argnames[], PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args, const char* function_name) { PyObject *key = 0, *value = 0; Py_ssize_t pos = 0; PyObject*** name; PyObject*** first_kw_arg = argnames + num_pos_args; while (PyDict_Next(kwds, &pos, &key, &value)) { name = first_kw_arg; while (*name && (**name != key)) name++; if (*name) { values[name-argnames] = value; continue; } name = first_kw_arg; #if PY_MAJOR_VERSION < 3 if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { while (*name) { if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) && _PyString_Eq(**name, key)) { values[name-argnames] = value; break; } name++; } if (*name) continue; else { PyObject*** argname = argnames; while (argname != first_kw_arg) { if ((**argname == key) || ( (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) && _PyString_Eq(**argname, key))) { goto arg_passed_twice; } argname++; } } } else #endif if (likely(PyUnicode_Check(key))) { while (*name) { int cmp = (**name == key) ? 0 : #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 : #endif PyUnicode_Compare(**name, key); if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; if (cmp == 0) { values[name-argnames] = value; break; } name++; } if (*name) continue; else { PyObject*** argname = argnames; while (argname != first_kw_arg) { int cmp = (**argname == key) ? 0 : #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 : #endif PyUnicode_Compare(**argname, key); if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; if (cmp == 0) goto arg_passed_twice; argname++; } } } else goto invalid_keyword_type; if (kwds2) { if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; } else { goto invalid_keyword; } } return 0; arg_passed_twice: __Pyx_RaiseDoubleKeywordsError(function_name, key); goto bad; invalid_keyword_type: PyErr_Format(PyExc_TypeError, "%s() keywords must be strings", function_name); goto bad; invalid_keyword: PyErr_Format(PyExc_TypeError, #if PY_MAJOR_VERSION < 3 "%s() got an unexpected keyword argument '%s'", function_name, PyString_AsString(key)); #else "%s() got an unexpected keyword argument '%U'", function_name, key); #endif bad: return -1; } static int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed, const char *name, int exact) { if (!type) { PyErr_Format(PyExc_SystemError, "Missing type object"); return 0; } if (none_allowed && obj == Py_None) return 1; else if (exact) { if (Py_TYPE(obj) == type) return 1; } else { if (PyObject_TypeCheck(obj, type)) return 1; } PyErr_Format(PyExc_TypeError, "Argument '%s' has incorrect type (expected %s, got %s)", name, type->tp_name, Py_TYPE(obj)->tp_name); return 0; } static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) { #if CYTHON_COMPILING_IN_PYPY return PyObject_RichCompareBool(s1, s2, equals); #else if (s1 == s2) { return (equals == Py_EQ); } else if (PyBytes_CheckExact(s1) & PyBytes_CheckExact(s2)) { if (PyBytes_GET_SIZE(s1) != PyBytes_GET_SIZE(s2)) { return (equals == Py_NE); } else if (PyBytes_GET_SIZE(s1) == 1) { if (equals == Py_EQ) return (PyBytes_AS_STRING(s1)[0] == PyBytes_AS_STRING(s2)[0]); else return (PyBytes_AS_STRING(s1)[0] != PyBytes_AS_STRING(s2)[0]); } else { int result = memcmp(PyBytes_AS_STRING(s1), PyBytes_AS_STRING(s2), (size_t)PyBytes_GET_SIZE(s1)); return (equals == Py_EQ) ? (result == 0) : (result != 0); } } else if ((s1 == Py_None) & PyBytes_CheckExact(s2)) { return (equals == Py_NE); } else if ((s2 == Py_None) & PyBytes_CheckExact(s1)) { return (equals == Py_NE); } else { int result; PyObject* py_result = PyObject_RichCompare(s1, s2, equals); if (!py_result) return -1; result = __Pyx_PyObject_IsTrue(py_result); Py_DECREF(py_result); return result; } #endif } static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, long level) { PyObject *py_import = 0; PyObject *empty_list = 0; PyObject *module = 0; PyObject *global_dict = 0; PyObject *empty_dict = 0; PyObject *list; py_import = __Pyx_GetAttrString(__pyx_b, "__import__"); if (!py_import) goto bad; if (from_list) list = from_list; else { empty_list = PyList_New(0); if (!empty_list) goto bad; list = empty_list; } global_dict = PyModule_GetDict(__pyx_m); if (!global_dict) goto bad; empty_dict = PyDict_New(); if (!empty_dict) goto bad; #if PY_VERSION_HEX >= 0x02050000 { #if PY_MAJOR_VERSION >= 3 if (level == -1) { if (strchr(__Pyx_MODULE_NAME, '.')) { /* try package relative import first */ PyObject *py_level = PyInt_FromLong(1); if (!py_level) goto bad; module = PyObject_CallFunctionObjArgs(py_import, name, global_dict, empty_dict, list, py_level, NULL); Py_DECREF(py_level); if (!module) { if (!PyErr_ExceptionMatches(PyExc_ImportError)) goto bad; PyErr_Clear(); } } level = 0; /* try absolute import on failure */ } #endif if (!module) { PyObject *py_level = PyInt_FromLong(level); if (!py_level) goto bad; module = PyObject_CallFunctionObjArgs(py_import, name, global_dict, empty_dict, list, py_level, NULL); Py_DECREF(py_level); } } #else if (level>0) { PyErr_SetString(PyExc_RuntimeError, "Relative import is not supported for Python <=2.4."); goto bad; } module = PyObject_CallFunctionObjArgs(py_import, name, global_dict, empty_dict, list, NULL); #endif bad: Py_XDECREF(empty_list); Py_XDECREF(py_import); Py_XDECREF(empty_dict); return module; } #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION < 3 static PyObject *__Pyx_GetStdout(void) { PyObject *f = PySys_GetObject((char *)"stdout"); if (!f) { PyErr_SetString(PyExc_RuntimeError, "lost sys.stdout"); } return f; } static int __Pyx_Print(PyObject* f, PyObject *arg_tuple, int newline) { int i; if (!f) { if (!(f = __Pyx_GetStdout())) return -1; } Py_INCREF(f); for (i=0; i < PyTuple_GET_SIZE(arg_tuple); i++) { PyObject* v; if (PyFile_SoftSpace(f, 1)) { if (PyFile_WriteString(" ", f) < 0) goto error; } v = PyTuple_GET_ITEM(arg_tuple, i); if (PyFile_WriteObject(v, f, Py_PRINT_RAW) < 0) goto error; if (PyString_Check(v)) { char *s = PyString_AsString(v); Py_ssize_t len = PyString_Size(v); if (len > 0 && isspace(Py_CHARMASK(s[len-1])) && s[len-1] != ' ') PyFile_SoftSpace(f, 0); } } if (newline) { if (PyFile_WriteString("\n", f) < 0) goto error; PyFile_SoftSpace(f, 0); } Py_DECREF(f); return 0; error: Py_DECREF(f); return -1; } #else /* Python 3 has a print function */ static int __Pyx_Print(PyObject* stream, PyObject *arg_tuple, int newline) { PyObject* kwargs = 0; PyObject* result = 0; PyObject* end_string; if (unlikely(!__pyx_print)) { __pyx_print = __Pyx_GetAttrString(__pyx_b, "print"); if (!__pyx_print) return -1; } if (stream) { kwargs = PyDict_New(); if (unlikely(!kwargs)) return -1; if (unlikely(PyDict_SetItemString(kwargs, "file", stream) < 0)) goto bad; if (!newline) { end_string = PyUnicode_FromStringAndSize(" ", 1); if (unlikely(!end_string)) goto bad; if (PyDict_SetItemString(kwargs, "end", end_string) < 0) { Py_DECREF(end_string); goto bad; } Py_DECREF(end_string); } } else if (!newline) { if (unlikely(!__pyx_print_kwargs)) { __pyx_print_kwargs = PyDict_New(); if (unlikely(!__pyx_print_kwargs)) return -1; end_string = PyUnicode_FromStringAndSize(" ", 1); if (unlikely(!end_string)) return -1; if (PyDict_SetItemString(__pyx_print_kwargs, "end", end_string) < 0) { Py_DECREF(end_string); return -1; } Py_DECREF(end_string); } kwargs = __pyx_print_kwargs; } result = PyObject_Call(__pyx_print, arg_tuple, kwargs); if (unlikely(kwargs) && (kwargs != __pyx_print_kwargs)) Py_DECREF(kwargs); if (!result) return -1; Py_DECREF(result); return 0; bad: if (kwargs != __pyx_print_kwargs) Py_XDECREF(kwargs); return -1; } #endif #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION < 3 static int __Pyx_PrintOne(PyObject* f, PyObject *o) { if (!f) { if (!(f = __Pyx_GetStdout())) return -1; } Py_INCREF(f); if (PyFile_SoftSpace(f, 0)) { if (PyFile_WriteString(" ", f) < 0) goto error; } if (PyFile_WriteObject(o, f, Py_PRINT_RAW) < 0) goto error; if (PyFile_WriteString("\n", f) < 0) goto error; Py_DECREF(f); return 0; error: Py_DECREF(f); return -1; /* the line below is just to avoid C compiler * warnings about unused functions */ return __Pyx_Print(f, NULL, 0); } #else /* Python 3 has a print function */ static int __Pyx_PrintOne(PyObject* stream, PyObject *o) { int res; PyObject* arg_tuple = PyTuple_Pack(1, o); if (unlikely(!arg_tuple)) return -1; res = __Pyx_Print(stream, arg_tuple, 1); Py_DECREF(arg_tuple); return res; } #endif static CYTHON_INLINE unsigned char __Pyx_PyInt_AsUnsignedChar(PyObject* x) { const unsigned char neg_one = (unsigned char)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(unsigned char) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(unsigned char)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to unsigned char" : "value too large to convert to unsigned char"); } return (unsigned char)-1; } return (unsigned char)val; } return (unsigned char)__Pyx_PyInt_AsUnsignedLong(x); } static CYTHON_INLINE unsigned short __Pyx_PyInt_AsUnsignedShort(PyObject* x) { const unsigned short neg_one = (unsigned short)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(unsigned short) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(unsigned short)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to unsigned short" : "value too large to convert to unsigned short"); } return (unsigned short)-1; } return (unsigned short)val; } return (unsigned short)__Pyx_PyInt_AsUnsignedLong(x); } static CYTHON_INLINE unsigned int __Pyx_PyInt_AsUnsignedInt(PyObject* x) { const unsigned int neg_one = (unsigned int)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(unsigned int) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(unsigned int)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to unsigned int" : "value too large to convert to unsigned int"); } return (unsigned int)-1; } return (unsigned int)val; } return (unsigned int)__Pyx_PyInt_AsUnsignedLong(x); } static CYTHON_INLINE char __Pyx_PyInt_AsChar(PyObject* x) { const char neg_one = (char)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(char) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(char)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to char" : "value too large to convert to char"); } return (char)-1; } return (char)val; } return (char)__Pyx_PyInt_AsLong(x); } static CYTHON_INLINE short __Pyx_PyInt_AsShort(PyObject* x) { const short neg_one = (short)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(short) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(short)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to short" : "value too large to convert to short"); } return (short)-1; } return (short)val; } return (short)__Pyx_PyInt_AsLong(x); } static CYTHON_INLINE int __Pyx_PyInt_AsInt(PyObject* x) { const int neg_one = (int)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(int) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(int)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to int" : "value too large to convert to int"); } return (int)-1; } return (int)val; } return (int)__Pyx_PyInt_AsLong(x); } static CYTHON_INLINE signed char __Pyx_PyInt_AsSignedChar(PyObject* x) { const signed char neg_one = (signed char)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(signed char) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(signed char)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to signed char" : "value too large to convert to signed char"); } return (signed char)-1; } return (signed char)val; } return (signed char)__Pyx_PyInt_AsSignedLong(x); } static CYTHON_INLINE signed short __Pyx_PyInt_AsSignedShort(PyObject* x) { const signed short neg_one = (signed short)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(signed short) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(signed short)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to signed short" : "value too large to convert to signed short"); } return (signed short)-1; } return (signed short)val; } return (signed short)__Pyx_PyInt_AsSignedLong(x); } static CYTHON_INLINE signed int __Pyx_PyInt_AsSignedInt(PyObject* x) { const signed int neg_one = (signed int)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(signed int) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(signed int)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to signed int" : "value too large to convert to signed int"); } return (signed int)-1; } return (signed int)val; } return (signed int)__Pyx_PyInt_AsSignedLong(x); } static CYTHON_INLINE int __Pyx_PyInt_AsLongDouble(PyObject* x) { const int neg_one = (int)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; if (sizeof(int) < sizeof(long)) { long val = __Pyx_PyInt_AsLong(x); if (unlikely(val != (long)(int)val)) { if (!unlikely(val == -1 && PyErr_Occurred())) { PyErr_SetString(PyExc_OverflowError, (is_unsigned && unlikely(val < 0)) ? "can't convert negative value to int" : "value too large to convert to int"); } return (int)-1; } return (int)val; } return (int)__Pyx_PyInt_AsLong(x); } static CYTHON_INLINE unsigned long __Pyx_PyInt_AsUnsignedLong(PyObject* x) { const unsigned long neg_one = (unsigned long)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to unsigned long"); return (unsigned long)-1; } return (unsigned long)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to unsigned long"); return (unsigned long)-1; } return (unsigned long)PyLong_AsUnsignedLong(x); } else { return (unsigned long)PyLong_AsLong(x); } } else { unsigned long val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (unsigned long)-1; val = __Pyx_PyInt_AsUnsignedLong(tmp); Py_DECREF(tmp); return val; } } static CYTHON_INLINE unsigned PY_LONG_LONG __Pyx_PyInt_AsUnsignedLongLong(PyObject* x) { const unsigned PY_LONG_LONG neg_one = (unsigned PY_LONG_LONG)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to unsigned PY_LONG_LONG"); return (unsigned PY_LONG_LONG)-1; } return (unsigned PY_LONG_LONG)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to unsigned PY_LONG_LONG"); return (unsigned PY_LONG_LONG)-1; } return (unsigned PY_LONG_LONG)PyLong_AsUnsignedLongLong(x); } else { return (unsigned PY_LONG_LONG)PyLong_AsLongLong(x); } } else { unsigned PY_LONG_LONG val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (unsigned PY_LONG_LONG)-1; val = __Pyx_PyInt_AsUnsignedLongLong(tmp); Py_DECREF(tmp); return val; } } static CYTHON_INLINE long __Pyx_PyInt_AsLong(PyObject* x) { const long neg_one = (long)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to long"); return (long)-1; } return (long)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to long"); return (long)-1; } return (long)PyLong_AsUnsignedLong(x); } else { return (long)PyLong_AsLong(x); } } else { long val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (long)-1; val = __Pyx_PyInt_AsLong(tmp); Py_DECREF(tmp); return val; } } static CYTHON_INLINE PY_LONG_LONG __Pyx_PyInt_AsLongLong(PyObject* x) { const PY_LONG_LONG neg_one = (PY_LONG_LONG)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to PY_LONG_LONG"); return (PY_LONG_LONG)-1; } return (PY_LONG_LONG)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to PY_LONG_LONG"); return (PY_LONG_LONG)-1; } return (PY_LONG_LONG)PyLong_AsUnsignedLongLong(x); } else { return (PY_LONG_LONG)PyLong_AsLongLong(x); } } else { PY_LONG_LONG val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (PY_LONG_LONG)-1; val = __Pyx_PyInt_AsLongLong(tmp); Py_DECREF(tmp); return val; } } static CYTHON_INLINE signed long __Pyx_PyInt_AsSignedLong(PyObject* x) { const signed long neg_one = (signed long)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to signed long"); return (signed long)-1; } return (signed long)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to signed long"); return (signed long)-1; } return (signed long)PyLong_AsUnsignedLong(x); } else { return (signed long)PyLong_AsLong(x); } } else { signed long val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (signed long)-1; val = __Pyx_PyInt_AsSignedLong(tmp); Py_DECREF(tmp); return val; } } static CYTHON_INLINE signed PY_LONG_LONG __Pyx_PyInt_AsSignedLongLong(PyObject* x) { const signed PY_LONG_LONG neg_one = (signed PY_LONG_LONG)-1, const_zero = 0; const int is_unsigned = neg_one > const_zero; #if PY_VERSION_HEX < 0x03000000 if (likely(PyInt_Check(x))) { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to signed PY_LONG_LONG"); return (signed PY_LONG_LONG)-1; } return (signed PY_LONG_LONG)val; } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { if (unlikely(Py_SIZE(x) < 0)) { PyErr_SetString(PyExc_OverflowError, "can't convert negative value to signed PY_LONG_LONG"); return (signed PY_LONG_LONG)-1; } return (signed PY_LONG_LONG)PyLong_AsUnsignedLongLong(x); } else { return (signed PY_LONG_LONG)PyLong_AsLongLong(x); } } else { signed PY_LONG_LONG val; PyObject *tmp = __Pyx_PyNumber_Int(x); if (!tmp) return (signed PY_LONG_LONG)-1; val = __Pyx_PyInt_AsSignedLongLong(tmp); Py_DECREF(tmp); return val; } } static int __Pyx_check_binary_version(void) { char ctversion[4], rtversion[4]; PyOS_snprintf(ctversion, 4, "%d.%d", PY_MAJOR_VERSION, PY_MINOR_VERSION); PyOS_snprintf(rtversion, 4, "%s", Py_GetVersion()); if (ctversion[0] != rtversion[0] || ctversion[2] != rtversion[2]) { char message[200]; PyOS_snprintf(message, sizeof(message), "compiletime version %s of module '%.100s' " "does not match runtime version %s", ctversion, __Pyx_MODULE_NAME, rtversion); #if PY_VERSION_HEX < 0x02050000 return PyErr_Warn(NULL, message); #else return PyErr_WarnEx(NULL, message, 1); #endif } return 0; } static int __Pyx_ExportFunction(const char *name, void (*f)(void), const char *sig) { PyObject *d = 0; PyObject *cobj = 0; union { void (*fp)(void); void *p; } tmp; d = PyObject_GetAttrString(__pyx_m, (char *)"__pyx_capi__"); if (!d) { PyErr_Clear(); d = PyDict_New(); if (!d) goto bad; Py_INCREF(d); if (PyModule_AddObject(__pyx_m, (char *)"__pyx_capi__", d) < 0) goto bad; } tmp.fp = f; #if PY_VERSION_HEX >= 0x02070000 && !(PY_MAJOR_VERSION==3&&PY_MINOR_VERSION==0) cobj = PyCapsule_New(tmp.p, sig, 0); #else cobj = PyCObject_FromVoidPtrAndDesc(tmp.p, (void *)sig, 0); #endif if (!cobj) goto bad; if (PyDict_SetItemString(d, name, cobj) < 0) goto bad; Py_DECREF(cobj); Py_DECREF(d); return 0; bad: Py_XDECREF(cobj); Py_XDECREF(d); return -1; } static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { int start = 0, mid = 0, end = count - 1; if (end >= 0 && code_line > entries[end].code_line) { return count; } while (start < end) { mid = (start + end) / 2; if (code_line < entries[mid].code_line) { end = mid; } else if (code_line > entries[mid].code_line) { start = mid + 1; } else { return mid; } } if (code_line <= entries[mid].code_line) { return mid; } else { return mid + 1; } } static PyCodeObject *__pyx_find_code_object(int code_line) { PyCodeObject* code_object; int pos; if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { return NULL; } pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { return NULL; } code_object = __pyx_code_cache.entries[pos].code_object; Py_INCREF(code_object); return code_object; } static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { int pos, i; __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; if (unlikely(!code_line)) { return; } if (unlikely(!entries)) { entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); if (likely(entries)) { __pyx_code_cache.entries = entries; __pyx_code_cache.max_count = 64; __pyx_code_cache.count = 1; entries[0].code_line = code_line; entries[0].code_object = code_object; Py_INCREF(code_object); } return; } pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { PyCodeObject* tmp = entries[pos].code_object; entries[pos].code_object = code_object; Py_DECREF(tmp); return; } if (__pyx_code_cache.count == __pyx_code_cache.max_count) { int new_max = __pyx_code_cache.max_count + 64; entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( __pyx_code_cache.entries, new_max*sizeof(__Pyx_CodeObjectCacheEntry)); if (unlikely(!entries)) { return; } __pyx_code_cache.entries = entries; __pyx_code_cache.max_count = new_max; } for (i=__pyx_code_cache.count; i>pos; i--) { entries[i] = entries[i-1]; } entries[pos].code_line = code_line; entries[pos].code_object = code_object; __pyx_code_cache.count++; Py_INCREF(code_object); } #include "compile.h" #include "frameobject.h" #include "traceback.h" static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( const char *funcname, int c_line, int py_line, const char *filename) { PyCodeObject *py_code = 0; PyObject *py_srcfile = 0; PyObject *py_funcname = 0; #if PY_MAJOR_VERSION < 3 py_srcfile = PyString_FromString(filename); #else py_srcfile = PyUnicode_FromString(filename); #endif if (!py_srcfile) goto bad; if (c_line) { #if PY_MAJOR_VERSION < 3 py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); #else py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); #endif } else { #if PY_MAJOR_VERSION < 3 py_funcname = PyString_FromString(funcname); #else py_funcname = PyUnicode_FromString(funcname); #endif } if (!py_funcname) goto bad; py_code = __Pyx_PyCode_New( 0, /*int argcount,*/ 0, /*int kwonlyargcount,*/ 0, /*int nlocals,*/ 0, /*int stacksize,*/ 0, /*int flags,*/ __pyx_empty_bytes, /*PyObject *code,*/ __pyx_empty_tuple, /*PyObject *consts,*/ __pyx_empty_tuple, /*PyObject *names,*/ __pyx_empty_tuple, /*PyObject *varnames,*/ __pyx_empty_tuple, /*PyObject *freevars,*/ __pyx_empty_tuple, /*PyObject *cellvars,*/ py_srcfile, /*PyObject *filename,*/ py_funcname, /*PyObject *name,*/ py_line, /*int firstlineno,*/ __pyx_empty_bytes /*PyObject *lnotab*/ ); Py_DECREF(py_srcfile); Py_DECREF(py_funcname); return py_code; bad: Py_XDECREF(py_srcfile); Py_XDECREF(py_funcname); return NULL; } static void __Pyx_AddTraceback(const char *funcname, int c_line, int py_line, const char *filename) { PyCodeObject *py_code = 0; PyObject *py_globals = 0; PyFrameObject *py_frame = 0; py_code = __pyx_find_code_object(c_line ? c_line : py_line); if (!py_code) { py_code = __Pyx_CreateCodeObjectForTraceback( funcname, c_line, py_line, filename); if (!py_code) goto bad; __pyx_insert_code_object(c_line ? c_line : py_line, py_code); } py_globals = PyModule_GetDict(__pyx_m); if (!py_globals) goto bad; py_frame = PyFrame_New( PyThreadState_GET(), /*PyThreadState *tstate,*/ py_code, /*PyCodeObject *code,*/ py_globals, /*PyObject *globals,*/ 0 /*PyObject *locals*/ ); if (!py_frame) goto bad; py_frame->f_lineno = py_line; PyTraceBack_Here(py_frame); bad: Py_XDECREF(py_code); Py_XDECREF(py_frame); } static int __Pyx_InitStrings(__Pyx_StringTabEntry *t) { while (t->p) { #if PY_MAJOR_VERSION < 3 if (t->is_unicode) { *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); } else if (t->intern) { *t->p = PyString_InternFromString(t->s); } else { *t->p = PyString_FromStringAndSize(t->s, t->n - 1); } #else /* Python 3+ has unicode identifiers */ if (t->is_unicode | t->is_str) { if (t->intern) { *t->p = PyUnicode_InternFromString(t->s); } else if (t->encoding) { *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); } else { *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); } } else { *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); } #endif if (!*t->p) return -1; ++t; } return 0; } /* Type Conversion Functions */ static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { int is_true = x == Py_True; if (is_true | (x == Py_False) | (x == Py_None)) return is_true; else return PyObject_IsTrue(x); } static CYTHON_INLINE PyObject* __Pyx_PyNumber_Int(PyObject* x) { PyNumberMethods *m; const char *name = NULL; PyObject *res = NULL; #if PY_VERSION_HEX < 0x03000000 if (PyInt_Check(x) || PyLong_Check(x)) #else if (PyLong_Check(x)) #endif return Py_INCREF(x), x; m = Py_TYPE(x)->tp_as_number; #if PY_VERSION_HEX < 0x03000000 if (m && m->nb_int) { name = "int"; res = PyNumber_Int(x); } else if (m && m->nb_long) { name = "long"; res = PyNumber_Long(x); } #else if (m && m->nb_int) { name = "int"; res = PyNumber_Long(x); } #endif if (res) { #if PY_VERSION_HEX < 0x03000000 if (!PyInt_Check(res) && !PyLong_Check(res)) { #else if (!PyLong_Check(res)) { #endif PyErr_Format(PyExc_TypeError, "__%s__ returned non-%s (type %.200s)", name, name, Py_TYPE(res)->tp_name); Py_DECREF(res); return NULL; } } else if (!PyErr_Occurred()) { PyErr_SetString(PyExc_TypeError, "an integer is required"); } return res; } static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { Py_ssize_t ival; PyObject* x = PyNumber_Index(b); if (!x) return -1; ival = PyInt_AsSsize_t(x); Py_DECREF(x); return ival; } static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { #if PY_VERSION_HEX < 0x02050000 if (ival <= LONG_MAX) return PyInt_FromLong((long)ival); else { unsigned char *bytes = (unsigned char *) &ival; int one = 1; int little = (int)*(unsigned char*)&one; return _PyLong_FromByteArray(bytes, sizeof(size_t), little, 0); } #else return PyInt_FromSize_t(ival); #endif } static CYTHON_INLINE size_t __Pyx_PyInt_AsSize_t(PyObject* x) { unsigned PY_LONG_LONG val = __Pyx_PyInt_AsUnsignedLongLong(x); if (unlikely(val == (unsigned PY_LONG_LONG)-1 && PyErr_Occurred())) { return (size_t)-1; } else if (unlikely(val != (unsigned PY_LONG_LONG)(size_t)val)) { PyErr_SetString(PyExc_OverflowError, "value too large to convert to size_t"); return (size_t)-1; } return (size_t)val; } #endif /* Py_PYTHON_H */