/* 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_TrueDivide(x,y) #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(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__chaplotype #define __PYX_HAVE_API__chaplotype #include "string.h" #include "stdlib.h" #include "stdio.h" #include "ctype.h" #include "unistd.h" #include "razf.h" #include "stdint.h" #include "bam.h" #include "sam.h" #include "pysam_util.h" #include "math.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[] = { "chaplotype.pyx", "fastafile.pxd", "samtoolsWrapper.pxd", "bamfileutils.pxd", "variant.pxd", }; /*--- Type declarations ---*/ struct __pyx_obj_7variant_VariantCandidateGenerator; struct __pyx_obj_10chaplotype_Haplotype; struct __pyx_obj_9fastafile_FastaFile; struct __pyx_obj_15samtoolsWrapper_AlignedRead; struct __pyx_obj_15samtoolsWrapper_IteratorRow; struct __pyx_obj_15samtoolsWrapper_Samfile; struct __pyx_obj_15samtoolsWrapper_IteratorRowAll; struct __pyx_obj_9fastafile_FastaIndex; struct __pyx_obj_12bamfileutils_MultiBamFileReader; struct __pyx_obj_12bamfileutils_MultiBamFileIterator; struct __pyx_obj_7variant_Variant; struct __pyx_obj_12bamfileutils_BamFileIterator; struct __pyx_opt_args_15samtoolsWrapper_7Samfile__open; struct __pyx_opt_args_15samtoolsWrapper_7Samfile__parseRegion; struct __pyx_t_15samtoolsWrapper_cAlignedRead; typedef struct __pyx_t_15samtoolsWrapper_cAlignedRead __pyx_t_15samtoolsWrapper_cAlignedRead; /* "samtoolsWrapper.pxd":254 * cdef int _isOpen( self ) * cdef _hasIndex( self ) * cpdef _open(self, mode, loadIndex=*) # <<<<<<<<<<<<<< * cdef char* getrname(self, int tid) * cdef _parseRegion(self, reference=*, start=*, end=*, region=*) */ struct __pyx_opt_args_15samtoolsWrapper_7Samfile__open { int __pyx_n; PyObject *loadIndex; }; /* "samtoolsWrapper.pxd":256 * cpdef _open(self, mode, loadIndex=*) * cdef char* getrname(self, int tid) * cdef _parseRegion(self, reference=*, start=*, end=*, region=*) # <<<<<<<<<<<<<< * cpdef IteratorRow fetch(self, char* reference, int start, int end) * cpdef IteratorRowAll fetchAllReads(self) */ struct __pyx_opt_args_15samtoolsWrapper_7Samfile__parseRegion { int __pyx_n; PyObject *reference; PyObject *start; PyObject *end; PyObject *region; }; /* "samtoolsWrapper.pxd":311 * ################################################################################################### * * ctypedef struct cAlignedRead: # <<<<<<<<<<<<<< * char* seq * char* qual */ struct __pyx_t_15samtoolsWrapper_cAlignedRead { char *seq; char *qual; short *cigarOps; short *hash; short mateChromID; short cigarLen; short chromID; short rlen; int pos; int end; int insertSize; int matePos; int bitFlag; char mapq; }; struct __pyx_opt_args_10chaplotype_9Haplotype_getReferenceSequence; /* "chaplotype.pxd":47 * double* alignReads(self, int individualIndex, cAlignedRead** start, cAlignedRead** end, cAlignedRead** badReadStart, cAlignedRead** badReadsEnd, cAlignedRead** brokenReadsStart, cAlignedRead** brokenReadsEnd, int useMapQualCap, int printAlignments) * double alignSingleRead(self, cAlignedRead* theRead, int useMapQualCap, int printAlignments) * char* getReferenceSequence(self, prefix=*) # <<<<<<<<<<<<<< * char* getMutatedSequence(self) * dict vcfINFO(self) */ struct __pyx_opt_args_10chaplotype_9Haplotype_getReferenceSequence { int __pyx_n; PyObject *prefix; }; /* "variant.pxd":42 * ################################################################################################### * * cdef class VariantCandidateGenerator: # <<<<<<<<<<<<<< * cdef int CIGAR_M * cdef int CIGAR_I */ struct __pyx_obj_7variant_VariantCandidateGenerator { PyObject_HEAD struct __pyx_vtabstruct_7variant_VariantCandidateGenerator *__pyx_vtab; int CIGAR_M; int CIGAR_I; int CIGAR_D; int CIGAR_N; int CIGAR_S; int CIGAR_H; int CIGAR_P; int minMapQual; int minBaseQual; int minFlank; int refId; int maxCoverage; int verbosity; int genSNPs; int genIndels; int maxReadLength; long rStart; long rEnd; long refSeqStart; long refSeqEnd; char *refSeq; PyObject *variantHeap; PyObject *pyRefSeq; PyObject *rname; struct __pyx_obj_9fastafile_FastaFile *refFile; PyObject *options; int qualBinSize; }; /* "chaplotype.pxd":14 * cdef int computeOverlapOfReadAndHaplotype(int hapStart, int hapEnd, cAlignedRead* theRead) * * cdef class Haplotype: # <<<<<<<<<<<<<< * cdef: * bytes refName */ struct __pyx_obj_10chaplotype_Haplotype { PyObject_HEAD struct __pyx_vtabstruct_10chaplotype_Haplotype *__pyx_vtab; PyObject *refName; int startPos; int endPos; int maxReadLength; int minVarPos; int maxVarPos; PyObject *variants; PyObject *haplotypeSequence; char *cHaplotypeSequence; struct __pyx_obj_9fastafile_FastaFile *refFile; PyObject *options; double *likelihoodCache; int lenCache; int lastIndividualIndex; PyObject *referenceSequence; int hash; int hapLen; int hasIndel; int nBaseChangesFromRef; int verbosity; int endBufferSize; char *cHomopolQ; short *localGapOpen; short *hapSequenceHash; short *hapSequenceNextArray; PyObject *indelErrorModel; int useIndelErrorModel; PyObject *localGapOpenQ; char *cLocalGapOpenQ; }; /* "fastafile.pxd":5 * cdef dict getRefs(self, int parseNCBI) * * cdef class FastaFile(object): # <<<<<<<<<<<<<< * cdef object theFile * cdef FastaIndex theIndex */ struct __pyx_obj_9fastafile_FastaFile { PyObject_HEAD struct __pyx_vtabstruct_9fastafile_FastaFile *__pyx_vtab; PyObject *theFile; struct __pyx_obj_9fastafile_FastaIndex *theIndex; PyObject *refs; PyObject *cache; PyObject *cacheRefName; PY_LONG_LONG cacheStartPos; PY_LONG_LONG cacheEndPos; }; /* "samtoolsWrapper.pxd":266 * ################################################################################################### * * cdef class AlignedRead: # <<<<<<<<<<<<<< * cdef bam1_t* _delegate * cdef int hashValue */ struct __pyx_obj_15samtoolsWrapper_AlignedRead { PyObject_HEAD struct __pyx_vtabstruct_15samtoolsWrapper_AlignedRead *__pyx_vtab; bam1_t *_delegate; int hashValue; int readEnd; char *_seq; char *_qual; }; /* "samtoolsWrapper.pxd":225 * cdef class Samfile * * cdef class IteratorRow: # <<<<<<<<<<<<<< * cdef bam_fetch_iterator_t* bam_iter # iterator state object * cdef bam1_t* b */ struct __pyx_obj_15samtoolsWrapper_IteratorRow { PyObject_HEAD struct __pyx_vtabstruct_15samtoolsWrapper_IteratorRow *__pyx_vtab; bam_fetch_iterator_t *bam_iter; bam1_t *b; int useIndex; }; /* "samtoolsWrapper.pxd":223 * * ################################################################################################### * cdef class Samfile # <<<<<<<<<<<<<< * * cdef class IteratorRow: */ struct __pyx_obj_15samtoolsWrapper_Samfile { PyObject_HEAD struct __pyx_vtabstruct_15samtoolsWrapper_Samfile *__pyx_vtab; char *filename; samfile_t *samfile; bam_index_t *index; int isbam; PyObject *indexesByRegion; PyObject *lock; }; /* "samtoolsWrapper.pxd":233 * ################################################################################################### * * cdef class IteratorRowAll: # <<<<<<<<<<<<<< * cdef bam1_t* b * cdef samfile_t* fp */ struct __pyx_obj_15samtoolsWrapper_IteratorRowAll { PyObject_HEAD struct __pyx_vtabstruct_15samtoolsWrapper_IteratorRowAll *__pyx_vtab; bam1_t *b; samfile_t *fp; }; /* "fastafile.pxd":1 * cdef class FastaIndex: # <<<<<<<<<<<<<< * cdef object theFile * cdef dict getRefs(self, int parseNCBI) */ struct __pyx_obj_9fastafile_FastaIndex { PyObject_HEAD struct __pyx_vtabstruct_9fastafile_FastaIndex *__pyx_vtab; PyObject *theFile; }; /* "bamfileutils.pxd":22 * ################################################################################################### * * cdef class MultiBamFileReader(object): # <<<<<<<<<<<<<< * cdef public object files * cpdef getRName(self, int refId) */ struct __pyx_obj_12bamfileutils_MultiBamFileReader { PyObject_HEAD struct __pyx_vtabstruct_12bamfileutils_MultiBamFileReader *__pyx_vtab; PyObject *files; }; /* "bamfileutils.pxd":14 * ################################################################################################### * * cdef class MultiBamFileIterator(object): # <<<<<<<<<<<<<< * cdef public list files * cdef list queue */ struct __pyx_obj_12bamfileutils_MultiBamFileIterator { PyObject_HEAD PyObject *files; PyObject *queue; int nReadsInQueue; struct __pyx_obj_15samtoolsWrapper_AlignedRead *lastRead; }; /* "variant.pxd":16 * ################################################################################################### * * cdef class Variant: # <<<<<<<<<<<<<< * cdef: * public bytes refName */ struct __pyx_obj_7variant_Variant { PyObject_HEAD struct __pyx_vtabstruct_7variant_Variant *__pyx_vtab; PyObject *refName; PyObject *added; PyObject *removed; PyObject *bamAdded; PyObject *bamRemoved; int refPos; int bamMinPos; int bamMaxPos; int minRefPos; int maxRefPos; int nSupportingReads; int varSource; int hashValue; int nAdded; int nRemoved; int varType; }; /* "bamfileutils.pxd":7 * ################################################################################################### * * cdef class BamFileIterator(object): # <<<<<<<<<<<<<< * cdef public object iterator * cdef public AlignedRead currentValue */ struct __pyx_obj_12bamfileutils_BamFileIterator { PyObject_HEAD struct __pyx_vtabstruct_12bamfileutils_BamFileIterator *__pyx_vtab; PyObject *iterator; struct __pyx_obj_15samtoolsWrapper_AlignedRead *currentValue; }; /* "fastafile.pxd":1 * cdef class FastaIndex: # <<<<<<<<<<<<<< * cdef object theFile * cdef dict getRefs(self, int parseNCBI) */ struct __pyx_vtabstruct_9fastafile_FastaIndex { PyObject *(*getRefs)(struct __pyx_obj_9fastafile_FastaIndex *, int); }; static struct __pyx_vtabstruct_9fastafile_FastaIndex *__pyx_vtabptr_9fastafile_FastaIndex; /* "samtoolsWrapper.pxd":223 * * ################################################################################################### * cdef class Samfile # <<<<<<<<<<<<<< * * cdef class IteratorRow: */ struct __pyx_vtabstruct_15samtoolsWrapper_Samfile { void (*clearHeader)(struct __pyx_obj_15samtoolsWrapper_Samfile *); void (*clearIndex)(struct __pyx_obj_15samtoolsWrapper_Samfile *); void (*createCache)(struct __pyx_obj_15samtoolsWrapper_Samfile *); void (*clearCache)(struct __pyx_obj_15samtoolsWrapper_Samfile *); int (*_isOpen)(struct __pyx_obj_15samtoolsWrapper_Samfile *); PyObject *(*_hasIndex)(struct __pyx_obj_15samtoolsWrapper_Samfile *); PyObject *(*_open)(struct __pyx_obj_15samtoolsWrapper_Samfile *, PyObject *, int __pyx_skip_dispatch, struct __pyx_opt_args_15samtoolsWrapper_7Samfile__open *__pyx_optional_args); char *(*getrname)(struct __pyx_obj_15samtoolsWrapper_Samfile *, int); PyObject *(*_parseRegion)(struct __pyx_obj_15samtoolsWrapper_Samfile *, struct __pyx_opt_args_15samtoolsWrapper_7Samfile__parseRegion *__pyx_optional_args); struct __pyx_obj_15samtoolsWrapper_IteratorRow *(*fetch)(struct __pyx_obj_15samtoolsWrapper_Samfile *, char *, int, int, int __pyx_skip_dispatch); struct __pyx_obj_15samtoolsWrapper_IteratorRowAll *(*fetchAllReads)(struct __pyx_obj_15samtoolsWrapper_Samfile *, int __pyx_skip_dispatch); PyObject *(*close)(struct __pyx_obj_15samtoolsWrapper_Samfile *, int __pyx_skip_dispatch); void (*loadOffsetsForRegions)(struct __pyx_obj_15samtoolsWrapper_Samfile *, PyObject *); void (*openBAMFile)(struct __pyx_obj_15samtoolsWrapper_Samfile *, PyObject *); }; static struct __pyx_vtabstruct_15samtoolsWrapper_Samfile *__pyx_vtabptr_15samtoolsWrapper_Samfile; /* "chaplotype.pyx":283 * ################################################################################################### * * cdef class Haplotype: # <<<<<<<<<<<<<< * """ * Class to encapsulate a single haplotype. This will store all the */ struct __pyx_vtabstruct_10chaplotype_Haplotype { double *(*alignReads)(struct __pyx_obj_10chaplotype_Haplotype *, int, __pyx_t_15samtoolsWrapper_cAlignedRead **, __pyx_t_15samtoolsWrapper_cAlignedRead **, __pyx_t_15samtoolsWrapper_cAlignedRead **, __pyx_t_15samtoolsWrapper_cAlignedRead **, __pyx_t_15samtoolsWrapper_cAlignedRead **, __pyx_t_15samtoolsWrapper_cAlignedRead **, int, int); double (*alignSingleRead)(struct __pyx_obj_10chaplotype_Haplotype *, __pyx_t_15samtoolsWrapper_cAlignedRead *, int, int); char *(*getReferenceSequence)(struct __pyx_obj_10chaplotype_Haplotype *, struct __pyx_opt_args_10chaplotype_9Haplotype_getReferenceSequence *__pyx_optional_args); char *(*getMutatedSequence)(struct __pyx_obj_10chaplotype_Haplotype *); PyObject *(*vcfINFO)(struct __pyx_obj_10chaplotype_Haplotype *); PyObject *(*getSequenceContext)(struct __pyx_obj_10chaplotype_Haplotype *, struct __pyx_obj_7variant_Variant *); int (*homopolymerLengthForOneVariant)(struct __pyx_obj_10chaplotype_Haplotype *, struct __pyx_obj_7variant_Variant *); PyObject *(*homopolymerLengths)(struct __pyx_obj_10chaplotype_Haplotype *); void (*annotateWithGapOpen)(struct __pyx_obj_10chaplotype_Haplotype *); }; static struct __pyx_vtabstruct_10chaplotype_Haplotype *__pyx_vtabptr_10chaplotype_Haplotype; static double __pyx_f_10chaplotype_9Haplotype_alignSingleRead(struct __pyx_obj_10chaplotype_Haplotype *, __pyx_t_15samtoolsWrapper_cAlignedRead *, int, int); /* "fastafile.pxd":5 * cdef dict getRefs(self, int parseNCBI) * * cdef class FastaFile(object): # <<<<<<<<<<<<<< * cdef object theFile * cdef FastaIndex theIndex */ struct __pyx_vtabstruct_9fastafile_FastaFile { PyObject *(*getCharacter)(struct __pyx_obj_9fastafile_FastaFile *, PyObject *, PY_LONG_LONG); PyObject *(*getSequence)(struct __pyx_obj_9fastafile_FastaFile *, PyObject *, PY_LONG_LONG, PY_LONG_LONG); void (*setCacheSequence)(struct __pyx_obj_9fastafile_FastaFile *, PyObject *, PY_LONG_LONG, PY_LONG_LONG); }; static struct __pyx_vtabstruct_9fastafile_FastaFile *__pyx_vtabptr_9fastafile_FastaFile; /* "variant.pxd":16 * ################################################################################################### * * cdef class Variant: # <<<<<<<<<<<<<< * cdef: * public bytes refName */ struct __pyx_vtabstruct_7variant_Variant { double (*indelPrior)(struct __pyx_obj_7variant_Variant *, struct __pyx_obj_9fastafile_FastaFile *, int); double (*calculatePrior)(struct __pyx_obj_7variant_Variant *, struct __pyx_obj_9fastafile_FastaFile *); void (*addVariant)(struct __pyx_obj_7variant_Variant *, struct __pyx_obj_7variant_Variant *); int (*overlaps)(struct __pyx_obj_7variant_Variant *, struct __pyx_obj_7variant_Variant *); }; static struct __pyx_vtabstruct_7variant_Variant *__pyx_vtabptr_7variant_Variant; /* "samtoolsWrapper.pxd":233 * ################################################################################################### * * cdef class IteratorRowAll: # <<<<<<<<<<<<<< * cdef bam1_t* b * cdef samfile_t* fp */ struct __pyx_vtabstruct_15samtoolsWrapper_IteratorRowAll { bam1_t *(*getCurrent)(struct __pyx_obj_15samtoolsWrapper_IteratorRowAll *); int (*cnext)(struct __pyx_obj_15samtoolsWrapper_IteratorRowAll *); }; static struct __pyx_vtabstruct_15samtoolsWrapper_IteratorRowAll *__pyx_vtabptr_15samtoolsWrapper_IteratorRowAll; /* "bamfileutils.pxd":22 * ################################################################################################### * * cdef class MultiBamFileReader(object): # <<<<<<<<<<<<<< * cdef public object files * cpdef getRName(self, int refId) */ struct __pyx_vtabstruct_12bamfileutils_MultiBamFileReader { PyObject *(*getRName)(struct __pyx_obj_12bamfileutils_MultiBamFileReader *, int, int __pyx_skip_dispatch); struct __pyx_obj_12bamfileutils_MultiBamFileIterator *(*fetch)(struct __pyx_obj_12bamfileutils_MultiBamFileReader *, char *, int, int, int __pyx_skip_dispatch); }; static struct __pyx_vtabstruct_12bamfileutils_MultiBamFileReader *__pyx_vtabptr_12bamfileutils_MultiBamFileReader; /* "samtoolsWrapper.pxd":266 * ################################################################################################### * * cdef class AlignedRead: # <<<<<<<<<<<<<< * cdef bam1_t* _delegate * cdef int hashValue */ struct __pyx_vtabstruct_15samtoolsWrapper_AlignedRead { PyObject *(*qname)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *, int __pyx_skip_dispatch); char *(*fastQName)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); char *(*seq)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); char *(*qual)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); PyObject *(*tags)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*flag)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*rname)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*getCigarLength)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*pos)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*end)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); PyObject *(*bin)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*getCigarOpCode)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *, int); int (*getCigarOpLength)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *, int); int (*rlen)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*mapq)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *, int __pyx_skip_dispatch); int (*mrnm)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*mpos)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*isize)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*is_paired)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*is_proper_pair)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*is_unmapped)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*mate_is_unmapped)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*is_reverse)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*mate_is_reverse)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*is_read1)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*is_read2)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*is_secondary)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*is_qcfail)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); int (*is_duplicate)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *); PyObject *(*opt)(struct __pyx_obj_15samtoolsWrapper_AlignedRead *, PyObject *); }; static struct __pyx_vtabstruct_15samtoolsWrapper_AlignedRead *__pyx_vtabptr_15samtoolsWrapper_AlignedRead; /* "variant.pxd":42 * ################################################################################################### * * cdef class VariantCandidateGenerator: # <<<<<<<<<<<<<< * cdef int CIGAR_M * cdef int CIGAR_I */ struct __pyx_vtabstruct_7variant_VariantCandidateGenerator { void (*addVariantToList)(struct __pyx_obj_7variant_VariantCandidateGenerator *, struct __pyx_obj_7variant_Variant *); void (*getSnpCandidatesFromReadSegment)(struct __pyx_obj_7variant_VariantCandidateGenerator *, __pyx_t_15samtoolsWrapper_cAlignedRead *, char *, char *, int, int, int, int, int); void (*getVariantCandidatesFromSingleRead)(struct __pyx_obj_7variant_VariantCandidateGenerator *, __pyx_t_15samtoolsWrapper_cAlignedRead *); void (*addCandidatesFromReads)(struct __pyx_obj_7variant_VariantCandidateGenerator *, __pyx_t_15samtoolsWrapper_cAlignedRead **, __pyx_t_15samtoolsWrapper_cAlignedRead **); PyObject *(*getCandidates)(struct __pyx_obj_7variant_VariantCandidateGenerator *, int); PyObject *(*getListOfSnpPositions)(struct __pyx_obj_7variant_VariantCandidateGenerator *, struct __pyx_obj_15samtoolsWrapper_AlignedRead *); PyObject *(*getListOfIndelPositions)(struct __pyx_obj_7variant_VariantCandidateGenerator *, struct __pyx_obj_15samtoolsWrapper_AlignedRead *); }; static struct __pyx_vtabstruct_7variant_VariantCandidateGenerator *__pyx_vtabptr_7variant_VariantCandidateGenerator; /* "bamfileutils.pxd":7 * ################################################################################################### * * cdef class BamFileIterator(object): # <<<<<<<<<<<<<< * cdef public object iterator * cdef public AlignedRead currentValue */ struct __pyx_vtabstruct_12bamfileutils_BamFileIterator { PyObject *(*next)(struct __pyx_obj_12bamfileutils_BamFileIterator *, int __pyx_skip_dispatch); }; static struct __pyx_vtabstruct_12bamfileutils_BamFileIterator *__pyx_vtabptr_12bamfileutils_BamFileIterator; /* "samtoolsWrapper.pxd":225 * cdef class Samfile * * cdef class IteratorRow: # <<<<<<<<<<<<<< * cdef bam_fetch_iterator_t* bam_iter # iterator state object * cdef bam1_t* b */ struct __pyx_vtabstruct_15samtoolsWrapper_IteratorRow { int (*cnext)(struct __pyx_obj_15samtoolsWrapper_IteratorRow *); }; static struct __pyx_vtabstruct_15samtoolsWrapper_IteratorRow *__pyx_vtabptr_15samtoolsWrapper_IteratorRow; #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*/ 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*/ #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 static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type); /*proto*/ #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 #if HAVE_LONG_LONG && defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L #define __Pyx_abs_int(x) ((sizeof(x) <= sizeof(int)) ? ((unsigned int)abs(x)) : ((sizeof(x) <= sizeof(long)) ? ((unsigned long)labs(x)) : ((unsigned PY_LONG_LONG)llabs(x)))) #else #define __Pyx_abs_int(x) ((sizeof(x) <= sizeof(int)) ? ((unsigned int)abs(x)) : ((unsigned long)labs(x))) #endif #define __Pyx_abs_long(x) __Pyx_abs_int(x) static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected); static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index); static CYTHON_INLINE int __Pyx_IterFinish(void); /*proto*/ static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected); /*proto*/ #include static CYTHON_INLINE void __Pyx_ErrRestore(PyObject *type, PyObject *value, PyObject *tb); /*proto*/ static CYTHON_INLINE void __Pyx_ErrFetch(PyObject **type, PyObject **value, PyObject **tb); /*proto*/ static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); /*proto*/ static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals); /*proto*/ 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 PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, long level); /*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 void __Pyx_WriteUnraisable(const char *name, int clineno, int lineno, const char *filename); /*proto*/ static int __Pyx_check_binary_version(void); static int __Pyx_ExportFunction(const char *name, void (*f)(void), const char *sig); /*proto*/ static int __Pyx_SetVtable(PyObject *dict, void *vtable); /*proto*/ #if !defined(__Pyx_PyIdentifier_FromString) #if PY_MAJOR_VERSION < 3 #define __Pyx_PyIdentifier_FromString(s) PyString_FromString(s) #else #define __Pyx_PyIdentifier_FromString(s) PyUnicode_FromString(s) #endif #endif static PyObject *__Pyx_ImportModule(const char *name); /*proto*/ static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name, size_t size, int strict); /*proto*/ static void* __Pyx_GetVtable(PyObject *dict); /*proto*/ static int __Pyx_ImportVoidPtr(PyObject *module, const char *name, void **p, const char *sig); /*proto*/ static int __Pyx_ImportFunction(PyObject *module, const char *funcname, 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 'cython' */ /* Module declarations from 'fastafile' */ static PyTypeObject *__pyx_ptype_9fastafile_FastaIndex = 0; static PyTypeObject *__pyx_ptype_9fastafile_FastaFile = 0; /* Module declarations from 'samtoolsWrapper' */ static PyTypeObject *__pyx_ptype_15samtoolsWrapper_Samfile = 0; static PyTypeObject *__pyx_ptype_15samtoolsWrapper_IteratorRow = 0; static PyTypeObject *__pyx_ptype_15samtoolsWrapper_IteratorRowAll = 0; static PyTypeObject *__pyx_ptype_15samtoolsWrapper_AlignedRead = 0; static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsReverse(__pyx_t_15samtoolsWrapper_cAlignedRead *); /*proto*/ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsPaired(__pyx_t_15samtoolsWrapper_cAlignedRead *); /*proto*/ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsProperPair(__pyx_t_15samtoolsWrapper_cAlignedRead *); /*proto*/ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsDuplicate(__pyx_t_15samtoolsWrapper_cAlignedRead *); /*proto*/ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsUnmapped(__pyx_t_15samtoolsWrapper_cAlignedRead *); /*proto*/ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_MateIsUnmapped(__pyx_t_15samtoolsWrapper_cAlignedRead *); /*proto*/ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsQCFail(__pyx_t_15samtoolsWrapper_cAlignedRead *); /*proto*/ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsReadOne(__pyx_t_15samtoolsWrapper_cAlignedRead *); /*proto*/ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsSecondaryAlignment(__pyx_t_15samtoolsWrapper_cAlignedRead *); /*proto*/ /* Module declarations from 'bamfileutils' */ static PyTypeObject *__pyx_ptype_12bamfileutils_BamFileIterator = 0; static PyTypeObject *__pyx_ptype_12bamfileutils_MultiBamFileIterator = 0; static PyTypeObject *__pyx_ptype_12bamfileutils_MultiBamFileReader = 0; /* Module declarations from 'variant' */ static PyTypeObject *__pyx_ptype_7variant_Variant = 0; static PyTypeObject *__pyx_ptype_7variant_VariantCandidateGenerator = 0; static int *__pyx_vp_7variant_PLATYPUS_VAR = 0; #define __pyx_v_7variant_PLATYPUS_VAR (*__pyx_vp_7variant_PLATYPUS_VAR) static int *__pyx_vp_7variant_FILE_VAR = 0; #define __pyx_v_7variant_FILE_VAR (*__pyx_vp_7variant_FILE_VAR) static int *__pyx_vp_7variant_ASSEMBLER_VAR = 0; #define __pyx_v_7variant_ASSEMBLER_VAR (*__pyx_vp_7variant_ASSEMBLER_VAR) /* Module declarations from 'calign' */ static int *__pyx_vp_6calign_hash_nucs = 0; #define __pyx_v_6calign_hash_nucs (*__pyx_vp_6calign_hash_nucs) static int *__pyx_vp_6calign_hash_size = 0; #define __pyx_v_6calign_hash_size (*__pyx_vp_6calign_hash_size) static int *__pyx_vp_6calign_max_sequence_length = 0; #define __pyx_v_6calign_max_sequence_length (*__pyx_vp_6calign_max_sequence_length) static short *(*__pyx_f_6calign_hash_sequence)(char *, int); /*proto*/ static void (*__pyx_f_6calign_hash_sequence_multihit)(char *, int, short **, short **); /*proto*/ static int (*__pyx_f_6calign_mapAndAlignReadToHaplotype)(char *, char *, int, int, int, int, short *, short *, short *, char *, int, int, char *, int, char *, char *, int *); /*proto*/ static void (*__pyx_f_6calign_hashReadForMapping)(__pyx_t_15samtoolsWrapper_cAlignedRead *); /*proto*/ /* Module declarations from 'cerrormodel' */ static PyObject *(*__pyx_f_11cerrormodel_annotate_sequence)(PyObject *, PyObject *, int); /*proto*/ /* Module declarations from 'chaplotype' */ static PyTypeObject *__pyx_ptype_10chaplotype_Haplotype = 0; static double __pyx_v_10chaplotype_PI; static double __pyx_v_10chaplotype_mLTOT; static PyObject *__pyx_v_10chaplotype_per_base_indel_errors = 0; static PyObject *__pyx_v_10chaplotype_homopolq = 0; static PyObject *__pyx_v_10chaplotype_indel_error_model = 0; static int __pyx_f_10chaplotype_computeOverlapOfReadAndHaplotype(int, int, __pyx_t_15samtoolsWrapper_cAlignedRead *); /*proto*/ static void __pyx_f_10chaplotype_my_free(void *); /*proto*/ static void *__pyx_f_10chaplotype_my_malloc(size_t); /*proto*/ static double __pyx_f_10chaplotype_alignReadToHaplotype(__pyx_t_15samtoolsWrapper_cAlignedRead *, struct __pyx_obj_10chaplotype_Haplotype *, int, int); /*proto*/ static void __pyx_f_10chaplotype_logAlignmentOfReadToHaplotype(struct __pyx_obj_10chaplotype_Haplotype *, char *, char *, char *, char *, int, int, PyObject *); /*proto*/ #define __Pyx_MODULE_NAME "chaplotype" int __pyx_module_is_main_chaplotype = 0; /* Implementation of 'chaplotype' */ static PyObject *__pyx_builtin_range; static PyObject *__pyx_builtin_enumerate; static PyObject *__pyx_builtin_chr; static PyObject *__pyx_builtin_min; static PyObject *__pyx_builtin_max; static PyObject *__pyx_builtin_zip; static PyObject *__pyx_builtin_StandardError; static PyObject *__pyx_builtin_reversed; static int __pyx_pf_10chaplotype_9Haplotype___init__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self, PyObject *__pyx_v_refName, int __pyx_v_startPos, int __pyx_v_endPos, PyObject *__pyx_v_variants, struct __pyx_obj_9fastafile_FastaFile *__pyx_v_refFile, int __pyx_v_maxReadLength, int __pyx_v_useIndelErrorModel, PyObject *__pyx_v_options); /* proto */ static void __pyx_pf_10chaplotype_9Haplotype_2__dealloc__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_10chaplotype_9Haplotype_4__copy__(CYTHON_UNUSED struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_10chaplotype_9Haplotype_6__richcmp__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self, struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_other, int __pyx_v_opCode); /* proto */ static Py_hash_t __pyx_pf_10chaplotype_9Haplotype_8__hash__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_10chaplotype_9Haplotype_10__str__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_10chaplotype_9Haplotype_12__repr__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self); /* proto */ static char __pyx_k_1[] = "Haplotype with vars %s has len %s. Start is %s. End is %s. maxReadLen = %s"; static char __pyx_k_2[] = "Oh no! The bridge is gone!"; static char __pyx_k_3[] = "Op code %s not implemented in haplotype__richcmp__()"; static char __pyx_k_4[] = "Could not allocate haplotype cache"; static char __pyx_k_6[] = "Out of memory in cHaplotype.alignReads"; static char __pyx_k_7[] = "Could not reallocate haplotype cache"; static char __pyx_k_9[] = ""; static char __pyx_k_11[] = "#########################################################################"; static char __pyx_k_13[] = "Logging alignments for haplotype %s and sample %s"; static char __pyx_k_14[] = "Haplotype sequence is followed by alignments of all reads (good then bad then broken mates)"; static char __pyx_k_18[] = " Haplotype(*Reference*) %s:%s-%s"; static char __pyx_k_19[] = " Haplotype("; static char __pyx_k_20[] = ","; static char __pyx_k_21[] = ") %s:%s-%s"; static char __pyx_k_22[] = " "; static char __pyx_k_23[] = "-"; static char __pyx_k_24[] = "!"; static char __pyx_k_25[] = "."; static char __pyx_k_26[] = " Score = %s"; static char __pyx_k_27[] = "\nmodule containing various classes and functions for use in generating\nand processing haplotypes.\n"; static char __pyx_k_30[] = "WWWWWWWKJHFEC<<;98665320/-,*)(&%#\"!"; static char __pyx_k_31[] = "WWWKIFB<83/+(%\"!!!!!!!!!!!!!!"; static char __pyx_k_32[] = "WWWKKKJJFB=:86531/.,*('%#!!!!!!!!!!!!!!!!!!!!!!"; static char __pyx_k_33[] = "WWWWWLLKIGEDB@====;;53220.,+)'%#\"!!!"; static char __pyx_k_34[] = "WWWWWWWKJHHFFBBBB>>=<<;764310.-+*)'&$#!!!!!!!!!!!!!!!!!!!!!!!!"; static char __pyx_k_35[] = "WWWWWWWWWIIIFEA@\077\077?><<<;9865320/-,+)(&%#\"!"; static char __pyx_k_36[] = "WWWWWWWWWWIIIIFDCA@>=;:87754210.-+*('%$\"!"; static char __pyx_k_37[] = "WWWWWWWWWWWIHHEEA?>>=;:875421/.,+*('%$\"!"; static char __pyx_k_38[] = "WWWWWWWWWWWWIFEECB@?;99865320/-,*)'&%#\"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"; static char __pyx_k_39[] = "WWWWWWWWWWWWWHFFFDB=;:875421/.-+*('%$\"!"; static char __pyx_k_40[] = "WWWWWWWWWWWWWWHFFCB\077\077><;99764310.-+*)'&$#!!"; static char __pyx_k_41[] = "WWWWWWWWWWWWWWWGGEEBB?=:9764310.-,*)'&$#!!"; static char __pyx_k_42[] = "WWWWWMMKKKGFDB@?=;986420/-+)(&$\"!"; static char __pyx_k_43[] = "WWWWWMMLJHGECA@><:975320.,+)'%#\"!"; static char __pyx_k_44[] = "WWWWWWWHHHGEDBA?><;:875421/.,+)('%$\"!"; static char __pyx_k_45[] = "WWWWWWWWWIHFEDBA?><;9865321/.,+)(&%#\"!"; static char __pyx_k_46[] = "WWWWWKJIHGEC@><;;9775420.-+)'%$\"!!!!!!!!!!!"; static char __pyx_k_47[] = "WWWWWWWJJHGFDCA@>==;:888754310.-+*('%$#!!"; static char __pyx_k_48[] = "WWWWWWWLGFDCA@>=;:9764310.-+*('&$#!!"; static char __pyx_k_49[] = "WWWWWWWJJFEEA@?=<:9765320/-,*)'&$#\"!"; static char __pyx_k_50[] = "WWWWWMJJIGEDB@><;975420.-+)'&$\"!"; static char __pyx_k_51[] = "WWWWWWWJIGFDCA@?=<:9764310.-,*)'&$#!!"; static char __pyx_k_52[] = "WWWWWIGECA@><:975320.,+)'%$\"!"; static char __pyx_k_53[] = "WWWWWWWJIHFEECCBA@@>=;;:875421/.,+*('%$\"!"; static char __pyx_k_54[] = "WWWWWWWKFEDBA?><;9865421/.,+)(&%#\"!"; static char __pyx_k_55[] = "WWWWWWWWWWWWWA>>=;:9764310.-+*('&$#!!"; static char __pyx_k_56[] = "WWWWWWWWWWWWVTA@>=<:9764310.-+*)'&$#!!"; static char __pyx_k_57[] = "WWWWWWWJIHFEDBA?><;9865321/.,+)(&%#\"!"; static char __pyx_k_58[] = "WWWWWWWKJIGFECB@?=<:9764320/-,*)'&$#!!"; static char __pyx_k_59[] = "WWWWWWWJIHDCA@>=;:9764310.-+*('&$#!!"; static char __pyx_k_60[] = "WWWWWWWWWWWWWW>>><;9865321/.,+)(&%#\"!"; static char __pyx_k_61[] = "WWWWWWWWWWWD@@?=<:9765320/-,*)'&$#\"!"; static char __pyx_k_62[] = "WWWWWWWWWWWWBA@?=;:9764310.-+*('&$#!!"; static char __pyx_k_63[] = "WWWWWKIGEDB@>=;975420.-+)'&$\"!"; static char __pyx_k_64[] = "WWWWWWWWWWVHHFECBA?><;9865320/.,+)(&%#\"!"; static char __pyx_k_65[] = "WWWWWWWHGEDBA?><;9865421/.,+)(&%#\"!"; static char __pyx_k_66[] = "WWWWWWWMKJHGEDCA@>=;:8754210.-+*('%$\"!"; static char __pyx_k_67[] = "WWWWWWWMKJIGFDCA@>=;:8764310.-+*('%$#!!"; static char __pyx_k_68[] = "WWWWWWWWWWWWWWWVT<;9865321/.,+)(&%#\"!"; static char __pyx_k_69[] = "WWWNMLIGGC=987631/-,*(&$#!!!!!!!!!!!!!!!!!!!!!!"; static char __pyx_k_70[] = "WWWWWWWWWWFBA?><;9865321/.,+)(&%#\"!"; static char __pyx_k_71[] = "WWWIIIIIDD?=9774420-,*(&%#!!!!!!!!!"; static char __pyx_k_72[] = "WWWWWWWHHEECB@?=<:9765320/-,*)'&%#\"!"; static char __pyx_k_73[] = "WWWWWWWWWWWWVA?><;9865421/.,+)(&%$\"!"; static char __pyx_k_74[] = "WWWMJHGECA@><:975320.,+)'%#\"!"; static char __pyx_k_75[] = "WWWWWWWWWWWBA?><;9865320/.,+)(&%#\"!"; static char __pyx_k_76[] = "WWWWWWWHGFDCB@?=<:9764310/-,*)'&$#!!"; static char __pyx_k_77[] = "WWWMMMKKE?<:7420/-+('%#!!"; static char __pyx_k_78[] = "WWWWWWWWWECB@?=<:9764320/-,*)'&$#!!"; static char __pyx_k_79[] = "WWWWWWWWWWWWWWV>=;:8764310.-+*('%$#!!"; static char __pyx_k_80[] = "WWWWWKKIHEDCA?=<:86531/.,*('%#!!"; static char __pyx_k_81[] = "WWWWWWWWWVCA@>=;:8754310.-+*('%$\"!!"; static char __pyx_k_82[] = "WWWWWWWWWWJIGFECB@?=<:9764320/-,*)'&$#!!"; static char __pyx_k_83[] = "WWWWWWWWWWIIGFDCA@>=;:8764310.-+*('%$#!!"; static char __pyx_k_84[] = "WWWWWWWWWWHFEDBA?><;9865321/.,+)(&%#\"!"; static char __pyx_k_85[] = "WWWWWWWKIIHFECB@?=<;9865320/-,*)(&%#\"!"; static char __pyx_k_86[] = "WWWJHD<74-*'$!"; static char __pyx_k_87[] = "WWWWWWWWWWWWWW;:8754210.-+*('%$\"!"; static char __pyx_k_88[] = "WWWWWWWWWWHGFDCA@>=;:8754310.-+*('%$\"!"; static char __pyx_k_89[] = "WWWWWWWWWWW@?=<:9764320/-,*)'&$#!!"; static char __pyx_k_90[] = "WWWWWWWWWWWWWVT?><;9865320/.,+)(&%#\"!"; static char __pyx_k_91[] = "WWWWWWWWWWEDBA?>=;:875421/.,+*('%$\"!"; static char __pyx_k_92[] = "WWWWWWWLKKIHFECB@?=<:9865320/-,*)'&%#\"!"; static char __pyx_k_93[] = "WWWWWMMKHFDCA?=<:86431/-,*(&%#!!"; static char __pyx_k_94[] = "WWWWWWWWWECB@?=<:9765320/-,*)'&$#\"!"; static char __pyx_k_95[] = "WWWWWKKJHFDB@?=;986421/-+*(&$#!"; static char __pyx_k_96[] = "WWWWWWWWWWWWWWW9765320/-,*)'&$#\"!"; static char __pyx_k_97[] = "WWWWWWWWWWWWV=<:9765320/-,*)'&$#\"!"; static char __pyx_k_98[] = "WWWWWWWWWFECCB@?==<:::9765320/-,*)'&$#\"!"; static char __pyx_k_99[] = "WWWWWWWMKJHGEDBA?>=;:875421/.,+*('%$\"!"; 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__n[] = "n"; static char __pyx_k__q[] = "q"; static char __pyx_k_100[] = "WWWWWWWWWGFDCB>;:875421/.,+*('%$\"!"; static char __pyx_k_101[] = "WWWWWWWLKIHFECB@?=<:9865320/-,*)'&%#\"!"; static char __pyx_k_102[] = "default_indel_error_model"; 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__HP[] = "HP"; static char __pyx_k__SC[] = "SC"; static char __pyx_k__pi[] = "pi"; static char __pyx_k__AAG[] = "AAG"; static char __pyx_k__AAT[] = "AAT"; static char __pyx_k__ACC[] = "ACC"; static char __pyx_k__ACG[] = "ACG"; static char __pyx_k__ACT[] = "ACT"; static char __pyx_k__AGC[] = "AGC"; static char __pyx_k__AGG[] = "AGG"; static char __pyx_k__ATC[] = "ATC"; static char __pyx_k__CCG[] = "CCG"; static char __pyx_k__Log[] = "Log"; static char __pyx_k__chr[] = "chr"; static char __pyx_k__idx[] = "idx"; static char __pyx_k__max[] = "max"; static char __pyx_k__min[] = "min"; static char __pyx_k__zip[] = "zip"; static char __pyx_k__AAAC[] = "AAAC"; static char __pyx_k__AAAG[] = "AAAG"; static char __pyx_k__AAAT[] = "AAAT"; static char __pyx_k__AACC[] = "AACC"; static char __pyx_k__AACT[] = "AACT"; static char __pyx_k__AAGC[] = "AAGC"; static char __pyx_k__AAGG[] = "AAGG"; static char __pyx_k__AAGT[] = "AAGT"; static char __pyx_k__AATG[] = "AATG"; static char __pyx_k__AATT[] = "AATT"; static char __pyx_k__ACAG[] = "ACAG"; static char __pyx_k__ACAT[] = "ACAT"; static char __pyx_k__ACCC[] = "ACCC"; static char __pyx_k__ACCT[] = "ACCT"; static char __pyx_k__ACTG[] = "ACTG"; static char __pyx_k__AGCC[] = "AGCC"; static char __pyx_k__AGGC[] = "AGGC"; static char __pyx_k__AGGG[] = "AGGG"; static char __pyx_k__ATCC[] = "ATCC"; static char __pyx_k__CCCG[] = "CCCG"; static char __pyx_k__join[] = "join"; static char __pyx_k__math[] = "math"; static char __pyx_k__AAAAC[] = "AAAAC"; static char __pyx_k__AAAAG[] = "AAAAG"; static char __pyx_k__AAAAT[] = "AAAAT"; static char __pyx_k__AATAT[] = "AATAT"; static char __pyx_k__ACCCC[] = "ACCCC"; static char __pyx_k__ATCCC[] = "ATCCC"; static char __pyx_k__debug[] = "debug"; static char __pyx_k__error[] = "error"; static char __pyx_k__lower[] = "lower"; static char __pyx_k__range[] = "range"; static char __pyx_k__upper[] = "upper"; static char __pyx_k__AAAAAC[] = "AAAAAC"; static char __pyx_k__AAAAAG[] = "AAAAAG"; static char __pyx_k__AAAAAT[] = "AAAAAT"; static char __pyx_k__ACCTCC[] = "ACCTCC"; static char __pyx_k__AGCCTC[] = "AGCCTC"; static char __pyx_k__AGGCCG[] = "AGGCCG"; static char __pyx_k__AGGCGG[] = "AGGCGG"; static char __pyx_k__choice[] = "choice"; static char __pyx_k__endPos[] = "endPos"; static char __pyx_k__logger[] = "logger"; static char __pyx_k__random[] = "random"; static char __pyx_k__AAAAAAG[] = "AAAAAAG"; static char __pyx_k__AAAAAAT[] = "AAAAAAT"; static char __pyx_k__AAAATAC[] = "AAAATAC"; static char __pyx_k____str__[] = "__str__"; static char __pyx_k__logging[] = "logging"; static char __pyx_k__options[] = "options"; static char __pyx_k__refFile[] = "refFile"; static char __pyx_k__refName[] = "refName"; static char __pyx_k__warning[] = "warning"; static char __pyx_k__AAAAAAAG[] = "AAAAAAAG"; static char __pyx_k__AAAAATAC[] = "AAAAATAC"; static char __pyx_k__AAAAATAT[] = "AAAAATAT"; static char __pyx_k__AAACAGAC[] = "AAACAGAC"; static char __pyx_k____main__[] = "__main__"; static char __pyx_k____test__[] = "__test__"; static char __pyx_k__reversed[] = "reversed"; static char __pyx_k__startPos[] = "startPos"; static char __pyx_k__variants[] = "variants"; static char __pyx_k__AAAAAATAC[] = "AAAAAATAC"; static char __pyx_k__AAAAGAAAG[] = "AAAAGAAAG"; static char __pyx_k__SeqLength[] = "SeqLength"; static char __pyx_k__enumerate[] = "enumerate"; static char __pyx_k__getLogger[] = "getLogger"; static char __pyx_k__verbosity[] = "verbosity"; static char __pyx_k__AAAAAAATAC[] = "AAAAAAATAC"; static char __pyx_k__ACACACATAT[] = "ACACACATAT"; static char __pyx_k__ACATATATAT[] = "ACATATATAT"; static char __pyx_k__AAAAAAAATAC[] = "AAAAAAAATAC"; static char __pyx_k__AAAAAGAAAAG[] = "AAAAAGAAAAG"; static char __pyx_k__minBaseQual[] = "minBaseQual"; static char __pyx_k__StandardError[] = "StandardError"; static char __pyx_k__maxReadLength[] = "maxReadLength"; static char __pyx_k__useIndelErrorModel[] = "useIndelErrorModel"; static PyObject *__pyx_kp_s_1; static PyObject *__pyx_kp_s_100; static PyObject *__pyx_kp_s_101; static PyObject *__pyx_n_s_102; static PyObject *__pyx_kp_s_11; static PyObject *__pyx_kp_s_13; static PyObject *__pyx_kp_s_14; static PyObject *__pyx_kp_s_18; static PyObject *__pyx_kp_s_19; static PyObject *__pyx_kp_s_2; static PyObject *__pyx_kp_s_20; static PyObject *__pyx_kp_s_21; static PyObject *__pyx_kp_s_22; static PyObject *__pyx_kp_s_23; static PyObject *__pyx_kp_s_24; static PyObject *__pyx_kp_s_25; static PyObject *__pyx_kp_s_26; static PyObject *__pyx_kp_s_3; static PyObject *__pyx_kp_s_30; static PyObject *__pyx_kp_s_31; static PyObject *__pyx_kp_s_32; static PyObject *__pyx_kp_s_33; static PyObject *__pyx_kp_s_34; static PyObject *__pyx_kp_s_35; static PyObject *__pyx_kp_s_36; static PyObject *__pyx_kp_s_37; static PyObject *__pyx_kp_s_38; static PyObject *__pyx_kp_s_39; static PyObject *__pyx_kp_s_4; static PyObject *__pyx_kp_s_40; static PyObject *__pyx_kp_s_41; static PyObject *__pyx_kp_s_42; static PyObject *__pyx_kp_s_43; static PyObject *__pyx_kp_s_44; static PyObject *__pyx_kp_s_45; static PyObject *__pyx_kp_s_46; static PyObject *__pyx_kp_s_47; static PyObject *__pyx_kp_s_48; static PyObject *__pyx_kp_s_49; static PyObject *__pyx_kp_s_50; static PyObject *__pyx_kp_s_51; static PyObject *__pyx_kp_s_52; static PyObject *__pyx_kp_s_53; static PyObject *__pyx_kp_s_54; static PyObject *__pyx_kp_s_55; static PyObject *__pyx_kp_s_56; static PyObject *__pyx_kp_s_57; static PyObject *__pyx_kp_s_58; static PyObject *__pyx_kp_s_59; static PyObject *__pyx_kp_s_6; static PyObject *__pyx_kp_s_60; static PyObject *__pyx_kp_s_61; static PyObject *__pyx_kp_s_62; static PyObject *__pyx_kp_s_63; static PyObject *__pyx_kp_s_64; static PyObject *__pyx_kp_s_65; static PyObject *__pyx_kp_s_66; static PyObject *__pyx_kp_s_67; static PyObject *__pyx_kp_s_68; static PyObject *__pyx_kp_s_69; static PyObject *__pyx_kp_s_7; static PyObject *__pyx_kp_s_70; static PyObject *__pyx_kp_s_71; static PyObject *__pyx_kp_s_72; static PyObject *__pyx_kp_s_73; static PyObject *__pyx_kp_s_74; static PyObject *__pyx_kp_s_75; static PyObject *__pyx_kp_s_76; static PyObject *__pyx_kp_s_77; static PyObject *__pyx_kp_s_78; static PyObject *__pyx_kp_s_79; static PyObject *__pyx_kp_s_80; static PyObject *__pyx_kp_s_81; static PyObject *__pyx_kp_s_82; static PyObject *__pyx_kp_s_83; static PyObject *__pyx_kp_s_84; static PyObject *__pyx_kp_s_85; static PyObject *__pyx_kp_s_86; static PyObject *__pyx_kp_s_87; static PyObject *__pyx_kp_s_88; static PyObject *__pyx_kp_s_89; static PyObject *__pyx_kp_s_9; static PyObject *__pyx_kp_s_90; static PyObject *__pyx_kp_s_91; static PyObject *__pyx_kp_s_92; static PyObject *__pyx_kp_s_93; static PyObject *__pyx_kp_s_94; static PyObject *__pyx_kp_s_95; static PyObject *__pyx_kp_s_96; static PyObject *__pyx_kp_s_97; static PyObject *__pyx_kp_s_98; static PyObject *__pyx_kp_s_99; static PyObject *__pyx_n_s__A; static PyObject *__pyx_n_s__AAAAAAAATAC; static PyObject *__pyx_n_s__AAAAAAAG; static PyObject *__pyx_n_s__AAAAAAATAC; static PyObject *__pyx_n_s__AAAAAAG; static PyObject *__pyx_n_s__AAAAAAT; static PyObject *__pyx_n_s__AAAAAATAC; static PyObject *__pyx_n_s__AAAAAC; static PyObject *__pyx_n_s__AAAAAG; static PyObject *__pyx_n_s__AAAAAGAAAAG; static PyObject *__pyx_n_s__AAAAAT; static PyObject *__pyx_n_s__AAAAATAC; static PyObject *__pyx_n_s__AAAAATAT; static PyObject *__pyx_n_s__AAAAC; static PyObject *__pyx_n_s__AAAAG; static PyObject *__pyx_n_s__AAAAGAAAG; static PyObject *__pyx_n_s__AAAAT; static PyObject *__pyx_n_s__AAAATAC; static PyObject *__pyx_n_s__AAAC; static PyObject *__pyx_n_s__AAACAGAC; static PyObject *__pyx_n_s__AAAG; static PyObject *__pyx_n_s__AAAT; static PyObject *__pyx_n_s__AACC; static PyObject *__pyx_n_s__AACT; static PyObject *__pyx_n_s__AAG; static PyObject *__pyx_n_s__AAGC; static PyObject *__pyx_n_s__AAGG; static PyObject *__pyx_n_s__AAGT; static PyObject *__pyx_n_s__AAT; static PyObject *__pyx_n_s__AATAT; static PyObject *__pyx_n_s__AATG; static PyObject *__pyx_n_s__AATT; static PyObject *__pyx_n_s__AC; static PyObject *__pyx_n_s__ACACACATAT; static PyObject *__pyx_n_s__ACAG; static PyObject *__pyx_n_s__ACAT; static PyObject *__pyx_n_s__ACATATATAT; static PyObject *__pyx_n_s__ACC; static PyObject *__pyx_n_s__ACCC; static PyObject *__pyx_n_s__ACCCC; static PyObject *__pyx_n_s__ACCT; static PyObject *__pyx_n_s__ACCTCC; static PyObject *__pyx_n_s__ACG; static PyObject *__pyx_n_s__ACT; static PyObject *__pyx_n_s__ACTG; static PyObject *__pyx_n_s__AG; static PyObject *__pyx_n_s__AGC; static PyObject *__pyx_n_s__AGCC; static PyObject *__pyx_n_s__AGCCTC; static PyObject *__pyx_n_s__AGG; static PyObject *__pyx_n_s__AGGC; static PyObject *__pyx_n_s__AGGCCG; static PyObject *__pyx_n_s__AGGCGG; static PyObject *__pyx_n_s__AGGG; static PyObject *__pyx_n_s__AT; static PyObject *__pyx_n_s__ATC; static PyObject *__pyx_n_s__ATCC; static PyObject *__pyx_n_s__ATCCC; static PyObject *__pyx_n_s__C; static PyObject *__pyx_n_s__CCCG; static PyObject *__pyx_n_s__CCG; static PyObject *__pyx_n_s__CG; static PyObject *__pyx_n_s__G; static PyObject *__pyx_n_s__HP; static PyObject *__pyx_n_s__Log; static PyObject *__pyx_n_s__N; static PyObject *__pyx_n_s__SC; static PyObject *__pyx_n_s__SeqLength; static PyObject *__pyx_n_s__StandardError; static PyObject *__pyx_n_s__T; static PyObject *__pyx_n_s____main__; static PyObject *__pyx_n_s____str__; static PyObject *__pyx_n_s____test__; static PyObject *__pyx_n_s__choice; static PyObject *__pyx_n_s__chr; static PyObject *__pyx_n_s__debug; static PyObject *__pyx_n_s__endPos; static PyObject *__pyx_n_s__enumerate; static PyObject *__pyx_n_s__error; static PyObject *__pyx_n_s__getLogger; static PyObject *__pyx_n_s__idx; static PyObject *__pyx_n_s__join; static PyObject *__pyx_n_s__logger; static PyObject *__pyx_n_s__logging; static PyObject *__pyx_n_s__lower; static PyObject *__pyx_n_s__math; static PyObject *__pyx_n_s__max; static PyObject *__pyx_n_s__maxReadLength; static PyObject *__pyx_n_s__min; static PyObject *__pyx_n_s__minBaseQual; static PyObject *__pyx_n_s__n; static PyObject *__pyx_n_s__options; static PyObject *__pyx_n_s__pi; static PyObject *__pyx_n_s__q; static PyObject *__pyx_n_s__random; static PyObject *__pyx_n_s__range; static PyObject *__pyx_n_s__refFile; static PyObject *__pyx_n_s__refName; static PyObject *__pyx_n_s__reversed; static PyObject *__pyx_n_s__startPos; static PyObject *__pyx_n_s__upper; static PyObject *__pyx_n_s__useIndelErrorModel; static PyObject *__pyx_n_s__variants; static PyObject *__pyx_n_s__verbosity; static PyObject *__pyx_n_s__warning; static PyObject *__pyx_n_s__zip; static PyObject *__pyx_int_0; static PyObject *__pyx_int_1; static PyObject *__pyx_int_2; static PyObject *__pyx_int_3; static PyObject *__pyx_int_4; static PyObject *__pyx_int_5; static PyObject *__pyx_int_6; static PyObject *__pyx_int_7; static PyObject *__pyx_int_8; static PyObject *__pyx_int_9; static PyObject *__pyx_int_10; static PyObject *__pyx_int_11; static PyObject *__pyx_int_20; static PyObject *__pyx_int_21; static PyObject *__pyx_int_50; static PyObject *__pyx_k_tuple_5; static PyObject *__pyx_k_tuple_8; static PyObject *__pyx_k_tuple_10; static PyObject *__pyx_k_tuple_12; static PyObject *__pyx_k_tuple_15; static PyObject *__pyx_k_tuple_16; static PyObject *__pyx_k_tuple_17; static PyObject *__pyx_k_tuple_28; static PyObject *__pyx_k_tuple_29; /* "chaplotype.pyx":235 * ################################################################################################### * * cdef void my_free(void* thePointer): # <<<<<<<<<<<<<< * """ * Cython wrapper. Used for profiling. */ static void __pyx_f_10chaplotype_my_free(void *__pyx_v_thePointer) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("my_free", 0); /* "chaplotype.pyx":239 * Cython wrapper. Used for profiling. * """ * free(thePointer) # <<<<<<<<<<<<<< * * ################################################################################################### */ free(__pyx_v_thePointer); __Pyx_RefNannyFinishContext(); } /* "chaplotype.pyx":243 * ################################################################################################### * * cdef void* my_malloc(size_t theSize): # <<<<<<<<<<<<<< * """ * Cython wrapper. Used for profiling. */ static void *__pyx_f_10chaplotype_my_malloc(size_t __pyx_v_theSize) { void *__pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("my_malloc", 0); /* "chaplotype.pyx":247 * Cython wrapper. Used for profiling. * """ * return malloc(theSize) # <<<<<<<<<<<<<< * * ################################################################################################### */ __pyx_r = malloc(__pyx_v_theSize); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":251 * ################################################################################################### * * cdef void* my_calloc(size_t theSize1, size_t theSize2): # <<<<<<<<<<<<<< * """ * Cython wrapper. Used for profiling. */ static void *__pyx_f_10chaplotype_my_calloc(size_t __pyx_v_theSize1, size_t __pyx_v_theSize2) { void *__pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("my_calloc", 0); /* "chaplotype.pyx":255 * Cython wrapper. Used for profiling. * """ * return calloc(theSize1, theSize2) # <<<<<<<<<<<<<< * * ################################################################################################### */ __pyx_r = calloc(__pyx_v_theSize1, __pyx_v_theSize2); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":259 * ################################################################################################### * * cdef void* my_realloc(void* thePointer, size_t newSize): # <<<<<<<<<<<<<< * """ * Cython wrapper. Used for profiling. */ static void *__pyx_f_10chaplotype_my_realloc(void *__pyx_v_thePointer, size_t __pyx_v_newSize) { void *__pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("my_realloc", 0); /* "chaplotype.pyx":263 * Cython wrapper. Used for profiling. * """ * return realloc(thePointer, newSize) # <<<<<<<<<<<<<< * * ################################################################################################### */ __pyx_r = realloc(__pyx_v_thePointer, __pyx_v_newSize); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":267 * ################################################################################################### * * cdef int computeOverlapOfReadAndHaplotype(int hapStart, int hapEnd, cAlignedRead* theRead): # <<<<<<<<<<<<<< * """ * Compute and return the number of bases by which a read overlaps the haplotype of interest. */ static int __pyx_f_10chaplotype_computeOverlapOfReadAndHaplotype(int __pyx_v_hapStart, int __pyx_v_hapEnd, __pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_v_readStart; int __pyx_v_readEnd; int __pyx_v_overlapStart; int __pyx_v_overlapEnd; int __pyx_r; __Pyx_RefNannyDeclarations int __pyx_t_1; int __pyx_t_2; int __pyx_t_3; int __pyx_t_4; __Pyx_RefNannySetupContext("computeOverlapOfReadAndHaplotype", 0); /* "chaplotype.pyx":271 * Compute and return the number of bases by which a read overlaps the haplotype of interest. * """ * cdef int readStart = theRead[0].pos # <<<<<<<<<<<<<< * cdef int readEnd = theRead[0].end * cdef int overlapStart = max(hapStart, readStart) */ __pyx_t_1 = (__pyx_v_theRead[0]).pos; __pyx_v_readStart = __pyx_t_1; /* "chaplotype.pyx":272 * """ * cdef int readStart = theRead[0].pos * cdef int readEnd = theRead[0].end # <<<<<<<<<<<<<< * cdef int overlapStart = max(hapStart, readStart) * cdef int overlapEnd = min(hapEnd, readEnd) */ __pyx_t_1 = (__pyx_v_theRead[0]).end; __pyx_v_readEnd = __pyx_t_1; /* "chaplotype.pyx":273 * cdef int readStart = theRead[0].pos * cdef int readEnd = theRead[0].end * cdef int overlapStart = max(hapStart, readStart) # <<<<<<<<<<<<<< * cdef int overlapEnd = min(hapEnd, readEnd) * */ __pyx_t_1 = __pyx_v_readStart; __pyx_t_2 = __pyx_v_hapStart; if ((__pyx_t_1 > __pyx_t_2)) { __pyx_t_3 = __pyx_t_1; } else { __pyx_t_3 = __pyx_t_2; } __pyx_v_overlapStart = __pyx_t_3; /* "chaplotype.pyx":274 * cdef int readEnd = theRead[0].end * cdef int overlapStart = max(hapStart, readStart) * cdef int overlapEnd = min(hapEnd, readEnd) # <<<<<<<<<<<<<< * * if overlapEnd > overlapStart: */ __pyx_t_3 = __pyx_v_readEnd; __pyx_t_1 = __pyx_v_hapEnd; if ((__pyx_t_3 < __pyx_t_1)) { __pyx_t_2 = __pyx_t_3; } else { __pyx_t_2 = __pyx_t_1; } __pyx_v_overlapEnd = __pyx_t_2; /* "chaplotype.pyx":276 * cdef int overlapEnd = min(hapEnd, readEnd) * * if overlapEnd > overlapStart: # <<<<<<<<<<<<<< * return overlapEnd - overlapStart * else: */ __pyx_t_4 = (__pyx_v_overlapEnd > __pyx_v_overlapStart); if (__pyx_t_4) { /* "chaplotype.pyx":277 * * if overlapEnd > overlapStart: * return overlapEnd - overlapStart # <<<<<<<<<<<<<< * else: * return -1 */ __pyx_r = (__pyx_v_overlapEnd - __pyx_v_overlapStart); goto __pyx_L0; goto __pyx_L3; } /*else*/ { /* "chaplotype.pyx":279 * return overlapEnd - overlapStart * else: * return -1 # <<<<<<<<<<<<<< * * ################################################################################################### */ __pyx_r = -1; goto __pyx_L0; } __pyx_L3:; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static int __pyx_pw_10chaplotype_9Haplotype_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static char __pyx_doc_10chaplotype_9Haplotype___init__[] = "\n Constructor. Takes a tuple of variants and a\n fasta file of the referene sequence.\n Variants are sorted on instantiation\n "; #if CYTHON_COMPILING_IN_CPYTHON struct wrapperbase __pyx_wrapperbase_10chaplotype_9Haplotype___init__; #endif static int __pyx_pw_10chaplotype_9Haplotype_1__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_refName = 0; int __pyx_v_startPos; int __pyx_v_endPos; PyObject *__pyx_v_variants = 0; struct __pyx_obj_9fastafile_FastaFile *__pyx_v_refFile = 0; int __pyx_v_maxReadLength; int __pyx_v_useIndelErrorModel; PyObject *__pyx_v_options = 0; int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__init__ (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__refName,&__pyx_n_s__startPos,&__pyx_n_s__endPos,&__pyx_n_s__variants,&__pyx_n_s__refFile,&__pyx_n_s__maxReadLength,&__pyx_n_s__useIndelErrorModel,&__pyx_n_s__options,0}; PyObject* values[8] = {0,0,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 8: values[7] = PyTuple_GET_ITEM(__pyx_args, 7); case 7: values[6] = PyTuple_GET_ITEM(__pyx_args, 6); 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__refName)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; case 1: if (likely((values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__startPos)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("__init__", 1, 8, 8, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 2: if (likely((values[2] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__endPos)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("__init__", 1, 8, 8, 2); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 3: if (likely((values[3] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__variants)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("__init__", 1, 8, 8, 3); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 4: if (likely((values[4] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__refFile)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("__init__", 1, 8, 8, 4); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 5: if (likely((values[5] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__maxReadLength)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("__init__", 1, 8, 8, 5); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 6: if (likely((values[6] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__useIndelErrorModel)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("__init__", 1, 8, 8, 6); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } case 7: if (likely((values[7] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__options)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("__init__", 1, 8, 8, 7); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "__init__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} } } else if (PyTuple_GET_SIZE(__pyx_args) != 8) { 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); values[3] = PyTuple_GET_ITEM(__pyx_args, 3); values[4] = PyTuple_GET_ITEM(__pyx_args, 4); values[5] = PyTuple_GET_ITEM(__pyx_args, 5); values[6] = PyTuple_GET_ITEM(__pyx_args, 6); values[7] = PyTuple_GET_ITEM(__pyx_args, 7); } __pyx_v_refName = ((PyObject*)values[0]); __pyx_v_startPos = __Pyx_PyInt_AsInt(values[1]); if (unlikely((__pyx_v_startPos == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_endPos = __Pyx_PyInt_AsInt(values[2]); if (unlikely((__pyx_v_endPos == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_variants = ((PyObject*)values[3]); __pyx_v_refFile = ((struct __pyx_obj_9fastafile_FastaFile *)values[4]); __pyx_v_maxReadLength = __Pyx_PyInt_AsInt(values[5]); if (unlikely((__pyx_v_maxReadLength == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_useIndelErrorModel = __Pyx_PyInt_AsInt(values[6]); if (unlikely((__pyx_v_useIndelErrorModel == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_v_options = values[7]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("__init__", 1, 8, 8, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L3_error;} __pyx_L3_error:; __Pyx_AddTraceback("chaplotype.Haplotype.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return -1; __pyx_L4_argument_unpacking_done:; if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_refName), (&PyBytes_Type), 1, "refName", 1))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_variants), (&PyTuple_Type), 1, "variants", 1))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_refFile), __pyx_ptype_9fastafile_FastaFile, 1, "refFile", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 290; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = __pyx_pf_10chaplotype_9Haplotype___init__(((struct __pyx_obj_10chaplotype_Haplotype *)__pyx_v_self), __pyx_v_refName, __pyx_v_startPos, __pyx_v_endPos, __pyx_v_variants, __pyx_v_refFile, __pyx_v_maxReadLength, __pyx_v_useIndelErrorModel, __pyx_v_options); goto __pyx_L0; __pyx_L1_error:; __pyx_r = -1; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":290 * this haplotype in the reference. * """ * def __init__(self, bytes refName, int startPos, int endPos, tuple variants, FastaFile refFile, int maxReadLength, int useIndelErrorModel, options): # <<<<<<<<<<<<<< * """ * Constructor. Takes a tuple of variants and a */ static int __pyx_pf_10chaplotype_9Haplotype___init__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self, PyObject *__pyx_v_refName, int __pyx_v_startPos, int __pyx_v_endPos, PyObject *__pyx_v_variants, struct __pyx_obj_9fastafile_FastaFile *__pyx_v_refFile, int __pyx_v_maxReadLength, int __pyx_v_useIndelErrorModel, PyObject *__pyx_v_options) { struct __pyx_obj_7variant_Variant *__pyx_v_v = 0; PyObject *__pyx_v_ref = NULL; PyObject *__pyx_v_alt = NULL; PyObject *__pyx_v_leftBuffer = NULL; PyObject *__pyx_v_rightBuffer = NULL; int __pyx_r; __Pyx_RefNannyDeclarations int __pyx_t_1; long __pyx_t_2; long __pyx_t_3; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; PyObject *__pyx_t_7 = NULL; int __pyx_t_8; long __pyx_t_9; Py_ssize_t __pyx_t_10; unsigned int __pyx_t_11; Py_ssize_t __pyx_t_12; PyObject *(*__pyx_t_13)(PyObject *); PyObject *__pyx_t_14 = NULL; PyObject *__pyx_t_15 = NULL; PyObject *(*__pyx_t_16)(PyObject *); int __pyx_t_17; int __pyx_t_18; char *__pyx_t_19; size_t __pyx_t_20; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__init__", 0); /* "chaplotype.pyx":296 * Variants are sorted on instantiation * """ * self.refName = refName # <<<<<<<<<<<<<< * self.refFile = refFile * self.variants = variants */ __Pyx_INCREF(((PyObject *)__pyx_v_refName)); __Pyx_GIVEREF(((PyObject *)__pyx_v_refName)); __Pyx_GOTREF(__pyx_v_self->refName); __Pyx_DECREF(((PyObject *)__pyx_v_self->refName)); __pyx_v_self->refName = __pyx_v_refName; /* "chaplotype.pyx":297 * """ * self.refName = refName * self.refFile = refFile # <<<<<<<<<<<<<< * self.variants = variants * self.hasIndel = 0 */ __Pyx_INCREF(((PyObject *)__pyx_v_refFile)); __Pyx_GIVEREF(((PyObject *)__pyx_v_refFile)); __Pyx_GOTREF(__pyx_v_self->refFile); __Pyx_DECREF(((PyObject *)__pyx_v_self->refFile)); __pyx_v_self->refFile = __pyx_v_refFile; /* "chaplotype.pyx":298 * self.refName = refName * self.refFile = refFile * self.variants = variants # <<<<<<<<<<<<<< * self.hasIndel = 0 * self.hash = -1 */ __Pyx_INCREF(((PyObject *)__pyx_v_variants)); __Pyx_GIVEREF(((PyObject *)__pyx_v_variants)); __Pyx_GOTREF(__pyx_v_self->variants); __Pyx_DECREF(((PyObject *)__pyx_v_self->variants)); __pyx_v_self->variants = __pyx_v_variants; /* "chaplotype.pyx":299 * self.refFile = refFile * self.variants = variants * self.hasIndel = 0 # <<<<<<<<<<<<<< * self.hash = -1 * self.indelErrorModel = indel_error_model */ __pyx_v_self->hasIndel = 0; /* "chaplotype.pyx":300 * self.variants = variants * self.hasIndel = 0 * self.hash = -1 # <<<<<<<<<<<<<< * self.indelErrorModel = indel_error_model * self.useIndelErrorModel = useIndelErrorModel */ __pyx_v_self->hash = -1; /* "chaplotype.pyx":301 * self.hasIndel = 0 * self.hash = -1 * self.indelErrorModel = indel_error_model # <<<<<<<<<<<<<< * self.useIndelErrorModel = useIndelErrorModel * self.cLocalGapOpenQ = NULL */ __Pyx_INCREF(((PyObject *)__pyx_v_10chaplotype_indel_error_model)); __Pyx_GIVEREF(((PyObject *)__pyx_v_10chaplotype_indel_error_model)); __Pyx_GOTREF(__pyx_v_self->indelErrorModel); __Pyx_DECREF(((PyObject *)__pyx_v_self->indelErrorModel)); __pyx_v_self->indelErrorModel = __pyx_v_10chaplotype_indel_error_model; /* "chaplotype.pyx":302 * self.hash = -1 * self.indelErrorModel = indel_error_model * self.useIndelErrorModel = useIndelErrorModel # <<<<<<<<<<<<<< * self.cLocalGapOpenQ = NULL * self.haplotypeSequence = None */ __pyx_v_self->useIndelErrorModel = __pyx_v_useIndelErrorModel; /* "chaplotype.pyx":303 * self.indelErrorModel = indel_error_model * self.useIndelErrorModel = useIndelErrorModel * self.cLocalGapOpenQ = NULL # <<<<<<<<<<<<<< * self.haplotypeSequence = None * self.startPos = max(0, startPos) */ __pyx_v_self->cLocalGapOpenQ = NULL; /* "chaplotype.pyx":304 * self.useIndelErrorModel = useIndelErrorModel * self.cLocalGapOpenQ = NULL * self.haplotypeSequence = None # <<<<<<<<<<<<<< * self.startPos = max(0, startPos) * self.endPos = min(endPos, self.refFile.refs[self.refName].SeqLength-1) */ __Pyx_INCREF(Py_None); __Pyx_GIVEREF(Py_None); __Pyx_GOTREF(__pyx_v_self->haplotypeSequence); __Pyx_DECREF(((PyObject *)__pyx_v_self->haplotypeSequence)); __pyx_v_self->haplotypeSequence = ((PyObject*)Py_None); /* "chaplotype.pyx":305 * self.cLocalGapOpenQ = NULL * self.haplotypeSequence = None * self.startPos = max(0, startPos) # <<<<<<<<<<<<<< * self.endPos = min(endPos, self.refFile.refs[self.refName].SeqLength-1) * self.maxReadLength = maxReadLength */ __pyx_t_1 = __pyx_v_startPos; __pyx_t_2 = 0; if ((__pyx_t_1 > __pyx_t_2)) { __pyx_t_3 = __pyx_t_1; } else { __pyx_t_3 = __pyx_t_2; } __pyx_v_self->startPos = __pyx_t_3; /* "chaplotype.pyx":306 * self.haplotypeSequence = None * self.startPos = max(0, startPos) * self.endPos = min(endPos, self.refFile.refs[self.refName].SeqLength-1) # <<<<<<<<<<<<<< * self.maxReadLength = maxReadLength * self.nBaseChangesFromRef = 0 */ if (unlikely(((PyObject *)__pyx_v_self->refFile->refs) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_4 = __Pyx_PyDict_GetItem(((PyObject *)__pyx_v_self->refFile->refs), ((PyObject *)__pyx_v_self->refName)); if (!__pyx_t_4) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_t_5 = PyObject_GetAttr(__pyx_t_4, __pyx_n_s__SeqLength); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_4 = PyNumber_Subtract(__pyx_t_5, __pyx_int_1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_1 = __pyx_v_endPos; __pyx_t_6 = PyInt_FromLong(__pyx_t_1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_7 = PyObject_RichCompare(__pyx_t_4, __pyx_t_6, Py_LT); __Pyx_XGOTREF(__pyx_t_7); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_8 = __Pyx_PyObject_IsTrue(__pyx_t_7); if (unlikely(__pyx_t_8 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; if (__pyx_t_8) { __Pyx_INCREF(__pyx_t_4); __pyx_t_5 = __pyx_t_4; } else { __pyx_t_7 = PyInt_FromLong(__pyx_t_1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __pyx_t_5 = __pyx_t_7; __pyx_t_7 = 0; } __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_1 = __Pyx_PyInt_AsInt(__pyx_t_5); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_v_self->endPos = __pyx_t_1; /* "chaplotype.pyx":307 * self.startPos = max(0, startPos) * self.endPos = min(endPos, self.refFile.refs[self.refName].SeqLength-1) * self.maxReadLength = maxReadLength # <<<<<<<<<<<<<< * self.nBaseChangesFromRef = 0 * self.endBufferSize = min(2*maxReadLength, 200) # Cap the buffer size at a reasonable length */ __pyx_v_self->maxReadLength = __pyx_v_maxReadLength; /* "chaplotype.pyx":308 * self.endPos = min(endPos, self.refFile.refs[self.refName].SeqLength-1) * self.maxReadLength = maxReadLength * self.nBaseChangesFromRef = 0 # <<<<<<<<<<<<<< * self.endBufferSize = min(2*maxReadLength, 200) # Cap the buffer size at a reasonable length * self.verbosity = options.verbosity */ __pyx_v_self->nBaseChangesFromRef = 0; /* "chaplotype.pyx":309 * self.maxReadLength = maxReadLength * self.nBaseChangesFromRef = 0 * self.endBufferSize = min(2*maxReadLength, 200) # Cap the buffer size at a reasonable length # <<<<<<<<<<<<<< * self.verbosity = options.verbosity * self.options = options */ __pyx_t_3 = 200; __pyx_t_2 = (2 * __pyx_v_maxReadLength); if ((__pyx_t_3 < __pyx_t_2)) { __pyx_t_9 = __pyx_t_3; } else { __pyx_t_9 = __pyx_t_2; } __pyx_v_self->endBufferSize = __pyx_t_9; /* "chaplotype.pyx":310 * self.nBaseChangesFromRef = 0 * self.endBufferSize = min(2*maxReadLength, 200) # Cap the buffer size at a reasonable length * self.verbosity = options.verbosity # <<<<<<<<<<<<<< * self.options = options * self.lastIndividualIndex = -1 */ __pyx_t_5 = PyObject_GetAttr(__pyx_v_options, __pyx_n_s__verbosity); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 310; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_1 = __Pyx_PyInt_AsInt(__pyx_t_5); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 310; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_v_self->verbosity = __pyx_t_1; /* "chaplotype.pyx":311 * self.endBufferSize = min(2*maxReadLength, 200) # Cap the buffer size at a reasonable length * self.verbosity = options.verbosity * self.options = options # <<<<<<<<<<<<<< * self.lastIndividualIndex = -1 * */ __Pyx_INCREF(__pyx_v_options); __Pyx_GIVEREF(__pyx_v_options); __Pyx_GOTREF(__pyx_v_self->options); __Pyx_DECREF(__pyx_v_self->options); __pyx_v_self->options = __pyx_v_options; /* "chaplotype.pyx":312 * self.verbosity = options.verbosity * self.options = options * self.lastIndividualIndex = -1 # <<<<<<<<<<<<<< * * cdef Variant v */ __pyx_v_self->lastIndividualIndex = -1; /* "chaplotype.pyx":316 * cdef Variant v * * if len(variants) > 0: # <<<<<<<<<<<<<< * self.minVarPos = min([v.minRefPos for v in variants]) * self.maxVarPos = max([v.maxRefPos for v in variants]) */ if (unlikely(((PyObject *)__pyx_v_variants) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_10 = PyTuple_GET_SIZE(((PyObject *)__pyx_v_variants)); if (unlikely(__pyx_t_10 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_8 = (__pyx_t_10 > 0); if (__pyx_t_8) { /* "chaplotype.pyx":317 * * if len(variants) > 0: * self.minVarPos = min([v.minRefPos for v in variants]) # <<<<<<<<<<<<<< * self.maxVarPos = max([v.maxRefPos for v in variants]) * */ __pyx_t_5 = PyList_New(0); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); if (unlikely(((PyObject *)__pyx_v_variants) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_4 = ((PyObject *)__pyx_v_variants); __Pyx_INCREF(__pyx_t_4); __pyx_t_10 = 0; for (;;) { if (__pyx_t_10 >= PyTuple_GET_SIZE(__pyx_t_4)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_7 = PyTuple_GET_ITEM(__pyx_t_4, __pyx_t_10); __Pyx_INCREF(__pyx_t_7); __pyx_t_10++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_7 = PySequence_ITEM(__pyx_t_4, __pyx_t_10); __pyx_t_10++; if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif if (!(likely(((__pyx_t_7) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_7, __pyx_ptype_7variant_Variant))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_XDECREF(((PyObject *)__pyx_v_v)); __pyx_v_v = ((struct __pyx_obj_7variant_Variant *)__pyx_t_7); __pyx_t_7 = 0; __pyx_t_7 = PyInt_FromLong(__pyx_v_v->minRefPos); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); if (unlikely(__Pyx_PyList_Append(__pyx_t_5, (PyObject*)__pyx_t_7))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; } __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_INCREF(((PyObject *)__pyx_t_5)); PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_t_5)); __Pyx_GIVEREF(((PyObject *)__pyx_t_5)); __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __pyx_t_5 = PyObject_Call(__pyx_builtin_min, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; __pyx_t_1 = __Pyx_PyInt_AsInt(__pyx_t_5); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_v_self->minVarPos = __pyx_t_1; /* "chaplotype.pyx":318 * if len(variants) > 0: * self.minVarPos = min([v.minRefPos for v in variants]) * self.maxVarPos = max([v.maxRefPos for v in variants]) # <<<<<<<<<<<<<< * * if self.minVarPos == self.maxVarPos: */ __pyx_t_5 = PyList_New(0); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); if (unlikely(((PyObject *)__pyx_v_variants) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_4 = ((PyObject *)__pyx_v_variants); __Pyx_INCREF(__pyx_t_4); __pyx_t_10 = 0; for (;;) { if (__pyx_t_10 >= PyTuple_GET_SIZE(__pyx_t_4)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_7 = PyTuple_GET_ITEM(__pyx_t_4, __pyx_t_10); __Pyx_INCREF(__pyx_t_7); __pyx_t_10++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_7 = PySequence_ITEM(__pyx_t_4, __pyx_t_10); __pyx_t_10++; if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif if (!(likely(((__pyx_t_7) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_7, __pyx_ptype_7variant_Variant))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_XDECREF(((PyObject *)__pyx_v_v)); __pyx_v_v = ((struct __pyx_obj_7variant_Variant *)__pyx_t_7); __pyx_t_7 = 0; __pyx_t_7 = PyInt_FromLong(__pyx_v_v->maxRefPos); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); if (unlikely(__Pyx_PyList_Append(__pyx_t_5, (PyObject*)__pyx_t_7))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; } __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_INCREF(((PyObject *)__pyx_t_5)); PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_t_5)); __Pyx_GIVEREF(((PyObject *)__pyx_t_5)); __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __pyx_t_5 = PyObject_Call(__pyx_builtin_max, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; __pyx_t_1 = __Pyx_PyInt_AsInt(__pyx_t_5); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_v_self->maxVarPos = __pyx_t_1; /* "chaplotype.pyx":320 * self.maxVarPos = max([v.maxRefPos for v in variants]) * * if self.minVarPos == self.maxVarPos: # <<<<<<<<<<<<<< * self.maxVarPos += 1 * else: */ __pyx_t_8 = (__pyx_v_self->minVarPos == __pyx_v_self->maxVarPos); if (__pyx_t_8) { /* "chaplotype.pyx":321 * * if self.minVarPos == self.maxVarPos: * self.maxVarPos += 1 # <<<<<<<<<<<<<< * else: * self.minVarPos = self.startPos */ __pyx_v_self->maxVarPos = (__pyx_v_self->maxVarPos + 1); goto __pyx_L8; } __pyx_L8:; goto __pyx_L3; } /*else*/ { /* "chaplotype.pyx":323 * self.maxVarPos += 1 * else: * self.minVarPos = self.startPos # <<<<<<<<<<<<<< * self.maxVarPos = self.endPos * */ __pyx_t_1 = __pyx_v_self->startPos; __pyx_v_self->minVarPos = __pyx_t_1; /* "chaplotype.pyx":324 * else: * self.minVarPos = self.startPos * self.maxVarPos = self.endPos # <<<<<<<<<<<<<< * * # Make sure that all haplotypes contain the same amount of non-N sequence */ __pyx_t_1 = __pyx_v_self->endPos; __pyx_v_self->maxVarPos = __pyx_t_1; } __pyx_L3:; /* "chaplotype.pyx":327 * * # Make sure that all haplotypes contain the same amount of non-N sequence * for v in variants: # <<<<<<<<<<<<<< * * if v.nAdded != v.nRemoved: */ if (unlikely(((PyObject *)__pyx_v_variants) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 327; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_5 = ((PyObject *)__pyx_v_variants); __Pyx_INCREF(__pyx_t_5); __pyx_t_10 = 0; for (;;) { if (__pyx_t_10 >= PyTuple_GET_SIZE(__pyx_t_5)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_4 = PyTuple_GET_ITEM(__pyx_t_5, __pyx_t_10); __Pyx_INCREF(__pyx_t_4); __pyx_t_10++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 327; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_4 = PySequence_ITEM(__pyx_t_5, __pyx_t_10); __pyx_t_10++; if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 327; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_7variant_Variant))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 327; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_XDECREF(((PyObject *)__pyx_v_v)); __pyx_v_v = ((struct __pyx_obj_7variant_Variant *)__pyx_t_4); __pyx_t_4 = 0; /* "chaplotype.pyx":329 * for v in variants: * * if v.nAdded != v.nRemoved: # <<<<<<<<<<<<<< * self.nBaseChangesFromRef += abs(v.nAdded - v.nRemoved) * else: */ __pyx_t_8 = (__pyx_v_v->nAdded != __pyx_v_v->nRemoved); if (__pyx_t_8) { /* "chaplotype.pyx":330 * * if v.nAdded != v.nRemoved: * self.nBaseChangesFromRef += abs(v.nAdded - v.nRemoved) # <<<<<<<<<<<<<< * else: * for ref,alt in zip(v.removed,v.added): */ __pyx_t_11 = __Pyx_abs_int((__pyx_v_v->nAdded - __pyx_v_v->nRemoved)); __pyx_v_self->nBaseChangesFromRef = (__pyx_v_self->nBaseChangesFromRef + __pyx_t_11); goto __pyx_L11; } /*else*/ { /* "chaplotype.pyx":332 * self.nBaseChangesFromRef += abs(v.nAdded - v.nRemoved) * else: * for ref,alt in zip(v.removed,v.added): # <<<<<<<<<<<<<< * if ref != alt: * self.nBaseChangesFromRef += 1 */ __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_INCREF(((PyObject *)__pyx_v_v->removed)); PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_v_v->removed)); __Pyx_GIVEREF(((PyObject *)__pyx_v_v->removed)); __Pyx_INCREF(((PyObject *)__pyx_v_v->added)); PyTuple_SET_ITEM(__pyx_t_4, 1, ((PyObject *)__pyx_v_v->added)); __Pyx_GIVEREF(((PyObject *)__pyx_v_v->added)); __pyx_t_7 = PyObject_Call(__pyx_builtin_zip, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; if (PyList_CheckExact(__pyx_t_7) || PyTuple_CheckExact(__pyx_t_7)) { __pyx_t_4 = __pyx_t_7; __Pyx_INCREF(__pyx_t_4); __pyx_t_12 = 0; __pyx_t_13 = NULL; } else { __pyx_t_12 = -1; __pyx_t_4 = PyObject_GetIter(__pyx_t_7); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_t_13 = Py_TYPE(__pyx_t_4)->tp_iternext; } __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; for (;;) { if (!__pyx_t_13 && PyList_CheckExact(__pyx_t_4)) { if (__pyx_t_12 >= PyList_GET_SIZE(__pyx_t_4)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_7 = PyList_GET_ITEM(__pyx_t_4, __pyx_t_12); __Pyx_INCREF(__pyx_t_7); __pyx_t_12++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_7 = PySequence_ITEM(__pyx_t_4, __pyx_t_12); __pyx_t_12++; if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else if (!__pyx_t_13 && PyTuple_CheckExact(__pyx_t_4)) { if (__pyx_t_12 >= PyTuple_GET_SIZE(__pyx_t_4)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_7 = PyTuple_GET_ITEM(__pyx_t_4, __pyx_t_12); __Pyx_INCREF(__pyx_t_7); __pyx_t_12++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_7 = PySequence_ITEM(__pyx_t_4, __pyx_t_12); __pyx_t_12++; if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else { __pyx_t_7 = __pyx_t_13(__pyx_t_4); if (unlikely(!__pyx_t_7)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_7); } if ((likely(PyTuple_CheckExact(__pyx_t_7))) || (PyList_CheckExact(__pyx_t_7))) { PyObject* sequence = __pyx_t_7; #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 = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } #if CYTHON_COMPILING_IN_CPYTHON if (likely(PyTuple_CheckExact(sequence))) { __pyx_t_6 = PyTuple_GET_ITEM(sequence, 0); __pyx_t_14 = PyTuple_GET_ITEM(sequence, 1); } else { __pyx_t_6 = PyList_GET_ITEM(sequence, 0); __pyx_t_14 = PyList_GET_ITEM(sequence, 1); } __Pyx_INCREF(__pyx_t_6); __Pyx_INCREF(__pyx_t_14); #else __pyx_t_6 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_14 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; } else { Py_ssize_t index = -1; __pyx_t_15 = PyObject_GetIter(__pyx_t_7); if (unlikely(!__pyx_t_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_15); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_16 = Py_TYPE(__pyx_t_15)->tp_iternext; index = 0; __pyx_t_6 = __pyx_t_16(__pyx_t_15); if (unlikely(!__pyx_t_6)) goto __pyx_L14_unpacking_failed; __Pyx_GOTREF(__pyx_t_6); index = 1; __pyx_t_14 = __pyx_t_16(__pyx_t_15); if (unlikely(!__pyx_t_14)) goto __pyx_L14_unpacking_failed; __Pyx_GOTREF(__pyx_t_14); if (__Pyx_IternextUnpackEndCheck(__pyx_t_16(__pyx_t_15), 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_16 = NULL; __Pyx_DECREF(__pyx_t_15); __pyx_t_15 = 0; goto __pyx_L15_unpacking_done; __pyx_L14_unpacking_failed:; __Pyx_DECREF(__pyx_t_15); __pyx_t_15 = 0; __pyx_t_16 = NULL; if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_L15_unpacking_done:; } __Pyx_XDECREF(__pyx_v_ref); __pyx_v_ref = __pyx_t_6; __pyx_t_6 = 0; __Pyx_XDECREF(__pyx_v_alt); __pyx_v_alt = __pyx_t_14; __pyx_t_14 = 0; /* "chaplotype.pyx":333 * else: * for ref,alt in zip(v.removed,v.added): * if ref != alt: # <<<<<<<<<<<<<< * self.nBaseChangesFromRef += 1 * */ __pyx_t_7 = PyObject_RichCompare(__pyx_v_ref, __pyx_v_alt, Py_NE); __Pyx_XGOTREF(__pyx_t_7); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 333; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_8 = __Pyx_PyObject_IsTrue(__pyx_t_7); if (unlikely(__pyx_t_8 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 333; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; if (__pyx_t_8) { /* "chaplotype.pyx":334 * for ref,alt in zip(v.removed,v.added): * if ref != alt: * self.nBaseChangesFromRef += 1 # <<<<<<<<<<<<<< * * if not (v.nAdded == 1 and v.nRemoved == 1): */ __pyx_v_self->nBaseChangesFromRef = (__pyx_v_self->nBaseChangesFromRef + 1); goto __pyx_L16; } __pyx_L16:; } __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; } __pyx_L11:; /* "chaplotype.pyx":336 * self.nBaseChangesFromRef += 1 * * if not (v.nAdded == 1 and v.nRemoved == 1): # <<<<<<<<<<<<<< * self.hasIndel = 1 * */ __pyx_t_8 = (__pyx_v_v->nAdded == 1); if (__pyx_t_8) { __pyx_t_17 = (__pyx_v_v->nRemoved == 1); __pyx_t_18 = __pyx_t_17; } else { __pyx_t_18 = __pyx_t_8; } __pyx_t_8 = (!__pyx_t_18); if (__pyx_t_8) { /* "chaplotype.pyx":337 * * if not (v.nAdded == 1 and v.nRemoved == 1): * self.hasIndel = 1 # <<<<<<<<<<<<<< * * self.referenceSequence = self.refFile.getSequence(self.refName, self.startPos - self.endBufferSize, self.endPos + self.endBufferSize) */ __pyx_v_self->hasIndel = 1; goto __pyx_L17; } __pyx_L17:; } __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "chaplotype.pyx":339 * self.hasIndel = 1 * * self.referenceSequence = self.refFile.getSequence(self.refName, self.startPos - self.endBufferSize, self.endPos + self.endBufferSize) # <<<<<<<<<<<<<< * #self.referenceSequence = ("N" * self.endBufferSize) + self.refFile.getSequence(self.refName, self.startPos, self.endPos) + ("N" * self.endBufferSize) * */ __pyx_t_5 = ((PyObject *)__pyx_v_self->refName); __Pyx_INCREF(__pyx_t_5); __pyx_t_4 = ((PyObject *)((struct __pyx_vtabstruct_9fastafile_FastaFile *)__pyx_v_self->refFile->__pyx_vtab)->getSequence(__pyx_v_self->refFile, ((PyObject*)__pyx_t_5), (__pyx_v_self->startPos - __pyx_v_self->endBufferSize), (__pyx_v_self->endPos + __pyx_v_self->endBufferSize))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 339; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_GIVEREF(__pyx_t_4); __Pyx_GOTREF(__pyx_v_self->referenceSequence); __Pyx_DECREF(((PyObject *)__pyx_v_self->referenceSequence)); __pyx_v_self->referenceSequence = ((PyObject*)__pyx_t_4); __pyx_t_4 = 0; /* "chaplotype.pyx":342 * #self.referenceSequence = ("N" * self.endBufferSize) + self.refFile.getSequence(self.refName, self.startPos, self.endPos) + ("N" * self.endBufferSize) * * if len(self.variants) == 0: # <<<<<<<<<<<<<< * self.haplotypeSequence = self.referenceSequence * else: */ __pyx_t_4 = ((PyObject *)__pyx_v_self->variants); __Pyx_INCREF(__pyx_t_4); if (unlikely(__pyx_t_4 == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 342; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_10 = PyTuple_GET_SIZE(__pyx_t_4); if (unlikely(__pyx_t_10 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 342; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_8 = (__pyx_t_10 == 0); if (__pyx_t_8) { /* "chaplotype.pyx":343 * * if len(self.variants) == 0: * self.haplotypeSequence = self.referenceSequence # <<<<<<<<<<<<<< * else: * leftBuffer = self.refFile.getSequence(self.refName, self.startPos - self.endBufferSize, self.startPos) */ __pyx_t_4 = ((PyObject *)__pyx_v_self->referenceSequence); __Pyx_INCREF(__pyx_t_4); __Pyx_GIVEREF(__pyx_t_4); __Pyx_GOTREF(__pyx_v_self->haplotypeSequence); __Pyx_DECREF(((PyObject *)__pyx_v_self->haplotypeSequence)); __pyx_v_self->haplotypeSequence = ((PyObject*)__pyx_t_4); __pyx_t_4 = 0; goto __pyx_L18; } /*else*/ { /* "chaplotype.pyx":345 * self.haplotypeSequence = self.referenceSequence * else: * leftBuffer = self.refFile.getSequence(self.refName, self.startPos - self.endBufferSize, self.startPos) # <<<<<<<<<<<<<< * rightBuffer = self.refFile.getSequence(self.refName, self.endPos, self.endPos + self.endBufferSize) * self.haplotypeSequence = leftBuffer + self.getMutatedSequence() + rightBuffer */ __pyx_t_4 = ((PyObject *)__pyx_v_self->refName); __Pyx_INCREF(__pyx_t_4); __pyx_t_5 = ((PyObject *)((struct __pyx_vtabstruct_9fastafile_FastaFile *)__pyx_v_self->refFile->__pyx_vtab)->getSequence(__pyx_v_self->refFile, ((PyObject*)__pyx_t_4), (__pyx_v_self->startPos - __pyx_v_self->endBufferSize), __pyx_v_self->startPos)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 345; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_v_leftBuffer = ((PyObject*)__pyx_t_5); __pyx_t_5 = 0; /* "chaplotype.pyx":346 * else: * leftBuffer = self.refFile.getSequence(self.refName, self.startPos - self.endBufferSize, self.startPos) * rightBuffer = self.refFile.getSequence(self.refName, self.endPos, self.endPos + self.endBufferSize) # <<<<<<<<<<<<<< * self.haplotypeSequence = leftBuffer + self.getMutatedSequence() + rightBuffer * #self.haplotypeSequence = ("N" * self.endBufferSize) + self.getMutatedSequence() + ("N" * self.endBufferSize) */ __pyx_t_5 = ((PyObject *)__pyx_v_self->refName); __Pyx_INCREF(__pyx_t_5); __pyx_t_4 = ((PyObject *)((struct __pyx_vtabstruct_9fastafile_FastaFile *)__pyx_v_self->refFile->__pyx_vtab)->getSequence(__pyx_v_self->refFile, ((PyObject*)__pyx_t_5), __pyx_v_self->endPos, (__pyx_v_self->endPos + __pyx_v_self->endBufferSize))); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 346; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_v_rightBuffer = ((PyObject*)__pyx_t_4); __pyx_t_4 = 0; /* "chaplotype.pyx":347 * leftBuffer = self.refFile.getSequence(self.refName, self.startPos - self.endBufferSize, self.startPos) * rightBuffer = self.refFile.getSequence(self.refName, self.endPos, self.endPos + self.endBufferSize) * self.haplotypeSequence = leftBuffer + self.getMutatedSequence() + rightBuffer # <<<<<<<<<<<<<< * #self.haplotypeSequence = ("N" * self.endBufferSize) + self.getMutatedSequence() + ("N" * self.endBufferSize) * */ __pyx_t_4 = PyBytes_FromString(((struct __pyx_vtabstruct_10chaplotype_Haplotype *)__pyx_v_self->__pyx_vtab)->getMutatedSequence(__pyx_v_self)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 347; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_4)); __pyx_t_5 = PyNumber_Add(((PyObject *)__pyx_v_leftBuffer), ((PyObject *)__pyx_t_4)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 347; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_5)); __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; __pyx_t_4 = PyNumber_Add(((PyObject *)__pyx_t_5), ((PyObject *)__pyx_v_rightBuffer)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 347; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_4)); __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __Pyx_GIVEREF(((PyObject *)__pyx_t_4)); __Pyx_GOTREF(__pyx_v_self->haplotypeSequence); __Pyx_DECREF(((PyObject *)__pyx_v_self->haplotypeSequence)); __pyx_v_self->haplotypeSequence = __pyx_t_4; __pyx_t_4 = 0; } __pyx_L18:; /* "chaplotype.pyx":350 * #self.haplotypeSequence = ("N" * self.endBufferSize) + self.getMutatedSequence() + ("N" * self.endBufferSize) * * self.cHaplotypeSequence = self.haplotypeSequence # <<<<<<<<<<<<<< * self.hapLen = len(self.cHaplotypeSequence) * */ __pyx_t_19 = PyBytes_AsString(((PyObject *)__pyx_v_self->haplotypeSequence)); if (unlikely((!__pyx_t_19) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 350; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->cHaplotypeSequence = __pyx_t_19; /* "chaplotype.pyx":351 * * self.cHaplotypeSequence = self.haplotypeSequence * self.hapLen = len(self.cHaplotypeSequence) # <<<<<<<<<<<<<< * * if self.hapLen > hash_size: */ __pyx_t_20 = strlen(__pyx_v_self->cHaplotypeSequence); __pyx_v_self->hapLen = __pyx_t_20; /* "chaplotype.pyx":353 * self.hapLen = len(self.cHaplotypeSequence) * * if self.hapLen > hash_size: # <<<<<<<<<<<<<< * logger.warning("Haplotype with vars %s has len %s. Start is %s. End is %s. maxReadLen = %s" %(self.variants, self.hapLen, self.startPos, self.endPos, maxReadLength)) * logger.debug(self.haplotypeSequence) */ __pyx_t_8 = (__pyx_v_self->hapLen > __pyx_v_6calign_hash_size); if (__pyx_t_8) { /* "chaplotype.pyx":354 * * if self.hapLen > hash_size: * logger.warning("Haplotype with vars %s has len %s. Start is %s. End is %s. maxReadLen = %s" %(self.variants, self.hapLen, self.startPos, self.endPos, maxReadLength)) # <<<<<<<<<<<<<< * logger.debug(self.haplotypeSequence) * */ __pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_t_5 = PyObject_GetAttr(__pyx_t_4, __pyx_n_s__warning); 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_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_4 = PyInt_FromLong(__pyx_v_self->hapLen); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_t_7 = PyInt_FromLong(__pyx_v_self->startPos); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __pyx_t_14 = PyInt_FromLong(__pyx_v_self->endPos); if (unlikely(!__pyx_t_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_14); __pyx_t_6 = PyInt_FromLong(__pyx_v_maxReadLength); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_15 = PyTuple_New(5); if (unlikely(!__pyx_t_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_15); __Pyx_INCREF(((PyObject *)__pyx_v_self->variants)); PyTuple_SET_ITEM(__pyx_t_15, 0, ((PyObject *)__pyx_v_self->variants)); __Pyx_GIVEREF(((PyObject *)__pyx_v_self->variants)); PyTuple_SET_ITEM(__pyx_t_15, 1, __pyx_t_4); __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_15, 2, __pyx_t_7); __Pyx_GIVEREF(__pyx_t_7); PyTuple_SET_ITEM(__pyx_t_15, 3, __pyx_t_14); __Pyx_GIVEREF(__pyx_t_14); PyTuple_SET_ITEM(__pyx_t_15, 4, __pyx_t_6); __Pyx_GIVEREF(__pyx_t_6); __pyx_t_4 = 0; __pyx_t_7 = 0; __pyx_t_14 = 0; __pyx_t_6 = 0; __pyx_t_6 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_1), ((PyObject *)__pyx_t_15)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_6)); __Pyx_DECREF(((PyObject *)__pyx_t_15)); __pyx_t_15 = 0; __pyx_t_15 = PyTuple_New(1); if (unlikely(!__pyx_t_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_15); PyTuple_SET_ITEM(__pyx_t_15, 0, ((PyObject *)__pyx_t_6)); __Pyx_GIVEREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0; __pyx_t_6 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_t_15), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 354; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_15)); __pyx_t_15 = 0; __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; /* "chaplotype.pyx":355 * if self.hapLen > hash_size: * logger.warning("Haplotype with vars %s has len %s. Start is %s. End is %s. maxReadLen = %s" %(self.variants, self.hapLen, self.startPos, self.endPos, maxReadLength)) * logger.debug(self.haplotypeSequence) # <<<<<<<<<<<<<< * * self.cHomopolQ = homopolq */ __pyx_t_6 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 355; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_15 = PyObject_GetAttr(__pyx_t_6, __pyx_n_s__debug); if (unlikely(!__pyx_t_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 355; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_15); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 355; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_INCREF(((PyObject *)__pyx_v_self->haplotypeSequence)); PyTuple_SET_ITEM(__pyx_t_6, 0, ((PyObject *)__pyx_v_self->haplotypeSequence)); __Pyx_GIVEREF(((PyObject *)__pyx_v_self->haplotypeSequence)); __pyx_t_5 = PyObject_Call(__pyx_t_15, ((PyObject *)__pyx_t_6), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 355; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_15); __pyx_t_15 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; goto __pyx_L19; } __pyx_L19:; /* "chaplotype.pyx":357 * logger.debug(self.haplotypeSequence) * * self.cHomopolQ = homopolq # <<<<<<<<<<<<<< * self.hapSequenceHash = NULL * self.hapSequenceNextArray = NULL */ __pyx_t_19 = PyBytes_AsString(((PyObject *)__pyx_v_10chaplotype_homopolq)); if (unlikely((!__pyx_t_19) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 357; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->cHomopolQ = __pyx_t_19; /* "chaplotype.pyx":358 * * self.cHomopolQ = homopolq * self.hapSequenceHash = NULL # <<<<<<<<<<<<<< * self.hapSequenceNextArray = NULL * self.likelihoodCache = NULL */ __pyx_v_self->hapSequenceHash = NULL; /* "chaplotype.pyx":359 * self.cHomopolQ = homopolq * self.hapSequenceHash = NULL * self.hapSequenceNextArray = NULL # <<<<<<<<<<<<<< * self.likelihoodCache = NULL * self.lenCache = 0 */ __pyx_v_self->hapSequenceNextArray = NULL; /* "chaplotype.pyx":360 * self.hapSequenceHash = NULL * self.hapSequenceNextArray = NULL * self.likelihoodCache = NULL # <<<<<<<<<<<<<< * self.lenCache = 0 * self.localGapOpen = NULL */ __pyx_v_self->likelihoodCache = NULL; /* "chaplotype.pyx":361 * self.hapSequenceNextArray = NULL * self.likelihoodCache = NULL * self.lenCache = 0 # <<<<<<<<<<<<<< * self.localGapOpen = NULL * */ __pyx_v_self->lenCache = 0; /* "chaplotype.pyx":362 * self.likelihoodCache = NULL * self.lenCache = 0 * self.localGapOpen = NULL # <<<<<<<<<<<<<< * * def __dealloc__(self): */ __pyx_v_self->localGapOpen = NULL; __pyx_r = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_7); __Pyx_XDECREF(__pyx_t_14); __Pyx_XDECREF(__pyx_t_15); __Pyx_AddTraceback("chaplotype.Haplotype.__init__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = -1; __pyx_L0:; __Pyx_XDECREF((PyObject *)__pyx_v_v); __Pyx_XDECREF(__pyx_v_ref); __Pyx_XDECREF(__pyx_v_alt); __Pyx_XDECREF(__pyx_v_leftBuffer); __Pyx_XDECREF(__pyx_v_rightBuffer); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static void __pyx_pw_10chaplotype_9Haplotype_3__dealloc__(PyObject *__pyx_v_self); /*proto*/ static void __pyx_pw_10chaplotype_9Haplotype_3__dealloc__(PyObject *__pyx_v_self) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__dealloc__ (wrapper)", 0); __pyx_pf_10chaplotype_9Haplotype_2__dealloc__(((struct __pyx_obj_10chaplotype_Haplotype *)__pyx_v_self)); __Pyx_RefNannyFinishContext(); } /* "chaplotype.pyx":364 * self.localGapOpen = NULL * * def __dealloc__(self): # <<<<<<<<<<<<<< * """ * Clean up cache. */ static void __pyx_pf_10chaplotype_9Haplotype_2__dealloc__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self) { __Pyx_RefNannyDeclarations int __pyx_t_1; __Pyx_RefNannySetupContext("__dealloc__", 0); /* "chaplotype.pyx":368 * Clean up cache. * """ * if self.likelihoodCache != NULL: # <<<<<<<<<<<<<< * my_free(self.likelihoodCache) * */ __pyx_t_1 = (__pyx_v_self->likelihoodCache != NULL); if (__pyx_t_1) { /* "chaplotype.pyx":369 * """ * if self.likelihoodCache != NULL: * my_free(self.likelihoodCache) # <<<<<<<<<<<<<< * * if self.hapSequenceHash != NULL: */ __pyx_f_10chaplotype_my_free(__pyx_v_self->likelihoodCache); goto __pyx_L3; } __pyx_L3:; /* "chaplotype.pyx":371 * my_free(self.likelihoodCache) * * if self.hapSequenceHash != NULL: # <<<<<<<<<<<<<< * my_free(self.hapSequenceHash) * */ __pyx_t_1 = (__pyx_v_self->hapSequenceHash != NULL); if (__pyx_t_1) { /* "chaplotype.pyx":372 * * if self.hapSequenceHash != NULL: * my_free(self.hapSequenceHash) # <<<<<<<<<<<<<< * * if self.hapSequenceNextArray != NULL: */ __pyx_f_10chaplotype_my_free(__pyx_v_self->hapSequenceHash); goto __pyx_L4; } __pyx_L4:; /* "chaplotype.pyx":374 * my_free(self.hapSequenceHash) * * if self.hapSequenceNextArray != NULL: # <<<<<<<<<<<<<< * my_free(self.hapSequenceNextArray) * */ __pyx_t_1 = (__pyx_v_self->hapSequenceNextArray != NULL); if (__pyx_t_1) { /* "chaplotype.pyx":375 * * if self.hapSequenceNextArray != NULL: * my_free(self.hapSequenceNextArray) # <<<<<<<<<<<<<< * * if self.localGapOpen != NULL: */ __pyx_f_10chaplotype_my_free(__pyx_v_self->hapSequenceNextArray); goto __pyx_L5; } __pyx_L5:; /* "chaplotype.pyx":377 * my_free(self.hapSequenceNextArray) * * if self.localGapOpen != NULL: # <<<<<<<<<<<<<< * my_free(self.localGapOpen) * */ __pyx_t_1 = (__pyx_v_self->localGapOpen != NULL); if (__pyx_t_1) { /* "chaplotype.pyx":378 * * if self.localGapOpen != NULL: * my_free(self.localGapOpen) # <<<<<<<<<<<<<< * * def __copy__(self): */ __pyx_f_10chaplotype_my_free(__pyx_v_self->localGapOpen); goto __pyx_L6; } __pyx_L6:; __Pyx_RefNannyFinishContext(); } /* Python wrapper */ static PyObject *__pyx_pw_10chaplotype_9Haplotype_5__copy__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/ static char __pyx_doc_10chaplotype_9Haplotype_4__copy__[] = "\n Make sure this never gets called for haplotypes.\n "; static PyObject *__pyx_pw_10chaplotype_9Haplotype_5__copy__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) { PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__copy__ (wrapper)", 0); __pyx_r = __pyx_pf_10chaplotype_9Haplotype_4__copy__(((struct __pyx_obj_10chaplotype_Haplotype *)__pyx_v_self)); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":380 * my_free(self.localGapOpen) * * def __copy__(self): # <<<<<<<<<<<<<< * """ * Make sure this never gets called for haplotypes. */ static PyObject *__pyx_pf_10chaplotype_9Haplotype_4__copy__(CYTHON_UNUSED struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__copy__", 0); /* "chaplotype.pyx":384 * Make sure this never gets called for haplotypes. * """ * raise StandardError, "Oh no! The bridge is gone!" # <<<<<<<<<<<<<< * * def __richcmp__(Haplotype self, Haplotype other, int opCode): */ __Pyx_Raise(__pyx_builtin_StandardError, ((PyObject *)__pyx_kp_s_2), 0, 0); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 384; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_AddTraceback("chaplotype.Haplotype.__copy__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static PyObject *__pyx_pw_10chaplotype_9Haplotype_7__richcmp__(PyObject *__pyx_v_self, PyObject *__pyx_v_other, int __pyx_v_opCode); /*proto*/ static PyObject *__pyx_pw_10chaplotype_9Haplotype_7__richcmp__(PyObject *__pyx_v_self, PyObject *__pyx_v_other, int __pyx_v_opCode) { PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__richcmp__ (wrapper)", 0); if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_self), __pyx_ptype_10chaplotype_Haplotype, 1, "self", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 386; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_other), __pyx_ptype_10chaplotype_Haplotype, 1, "other", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 386; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = __pyx_pf_10chaplotype_9Haplotype_6__richcmp__(((struct __pyx_obj_10chaplotype_Haplotype *)__pyx_v_self), ((struct __pyx_obj_10chaplotype_Haplotype *)__pyx_v_other), ((int)__pyx_v_opCode)); goto __pyx_L0; __pyx_L1_error:; __pyx_r = NULL; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":386 * raise StandardError, "Oh no! The bridge is gone!" * * def __richcmp__(Haplotype self, Haplotype other, int opCode): # <<<<<<<<<<<<<< * """ * Comparison function: */ static PyObject *__pyx_pf_10chaplotype_9Haplotype_6__richcmp__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self, struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_other, int __pyx_v_opCode) { PyObject *__pyx_v_thisSeq = NULL; PyObject *__pyx_v_otherSeq = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_t_2; int __pyx_t_3; int __pyx_t_4; int __pyx_t_5; PyObject *__pyx_t_6 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__richcmp__", 0); /* "chaplotype.pyx":424 * return False * # >= * elif opCode == 5: # <<<<<<<<<<<<<< * if self.refName < other.refName: * return False */ switch (__pyx_v_opCode) { /* "chaplotype.pyx":394 * """ * # < * if opCode == 0: # <<<<<<<<<<<<<< * if self.refName < other.refName: * return True */ case 0: /* "chaplotype.pyx":395 * # < * if opCode == 0: * if self.refName < other.refName: # <<<<<<<<<<<<<< * return True * elif self.refName == other.refName and self.startPos < other.startPos: */ __pyx_t_1 = PyObject_RichCompare(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_LT); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 395; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 395; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { /* "chaplotype.pyx":396 * if opCode == 0: * if self.refName < other.refName: * return True # <<<<<<<<<<<<<< * elif self.refName == other.refName and self.startPos < other.startPos: * return True */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 396; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L3; } /* "chaplotype.pyx":397 * if self.refName < other.refName: * return True * elif self.refName == other.refName and self.startPos < other.startPos: # <<<<<<<<<<<<<< * return True * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence < other.haplotypeSequence: */ __pyx_t_2 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_EQ)); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 397; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_2) { __pyx_t_3 = (__pyx_v_self->startPos < __pyx_v_other->startPos); __pyx_t_4 = __pyx_t_3; } else { __pyx_t_4 = __pyx_t_2; } if (__pyx_t_4) { /* "chaplotype.pyx":398 * return True * elif self.refName == other.refName and self.startPos < other.startPos: * return True # <<<<<<<<<<<<<< * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence < other.haplotypeSequence: * return True */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 398; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L3; } /* "chaplotype.pyx":399 * elif self.refName == other.refName and self.startPos < other.startPos: * return True * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence < other.haplotypeSequence: # <<<<<<<<<<<<<< * return True * else: */ __pyx_t_4 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_EQ)); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 399; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_4) { __pyx_t_2 = (__pyx_v_self->startPos == __pyx_v_other->startPos); if (__pyx_t_2) { __pyx_t_1 = PyObject_RichCompare(((PyObject *)__pyx_v_self->haplotypeSequence), ((PyObject *)__pyx_v_other->haplotypeSequence), Py_LT); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 399; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 399; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_5 = __pyx_t_3; } else { __pyx_t_5 = __pyx_t_2; } __pyx_t_2 = __pyx_t_5; } else { __pyx_t_2 = __pyx_t_4; } if (__pyx_t_2) { /* "chaplotype.pyx":400 * return True * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence < other.haplotypeSequence: * return True # <<<<<<<<<<<<<< * else: * return False */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 400; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L3; } /*else*/ { /* "chaplotype.pyx":402 * return True * else: * return False # <<<<<<<<<<<<<< * # <= * elif opCode == 1: */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 402; __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_L3:; break; /* "chaplotype.pyx":404 * return False * # <= * elif opCode == 1: # <<<<<<<<<<<<<< * if self.refName > other.refName: * return False */ case 1: /* "chaplotype.pyx":405 * # <= * elif opCode == 1: * if self.refName > other.refName: # <<<<<<<<<<<<<< * return False * elif self.refName == other.refName and self.startPos > other.startPos: */ __pyx_t_1 = PyObject_RichCompare(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_GT); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 405; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 405; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { /* "chaplotype.pyx":406 * elif opCode == 1: * if self.refName > other.refName: * return False # <<<<<<<<<<<<<< * elif self.refName == other.refName and self.startPos > other.startPos: * return False */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 406; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L4; } /* "chaplotype.pyx":407 * if self.refName > other.refName: * return False * elif self.refName == other.refName and self.startPos > other.startPos: # <<<<<<<<<<<<<< * return False * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence > other.haplotypeSequence: */ __pyx_t_2 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_EQ)); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 407; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_2) { __pyx_t_4 = (__pyx_v_self->startPos > __pyx_v_other->startPos); __pyx_t_5 = __pyx_t_4; } else { __pyx_t_5 = __pyx_t_2; } if (__pyx_t_5) { /* "chaplotype.pyx":408 * return False * elif self.refName == other.refName and self.startPos > other.startPos: * return False # <<<<<<<<<<<<<< * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence > other.haplotypeSequence: * return False */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(0); 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_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L4; } /* "chaplotype.pyx":409 * elif self.refName == other.refName and self.startPos > other.startPos: * return False * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence > other.haplotypeSequence: # <<<<<<<<<<<<<< * return False * else: */ __pyx_t_5 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_EQ)); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 409; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_5) { __pyx_t_2 = (__pyx_v_self->startPos == __pyx_v_other->startPos); if (__pyx_t_2) { __pyx_t_1 = PyObject_RichCompare(((PyObject *)__pyx_v_self->haplotypeSequence), ((PyObject *)__pyx_v_other->haplotypeSequence), Py_GT); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 409; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 409; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_3 = __pyx_t_4; } else { __pyx_t_3 = __pyx_t_2; } __pyx_t_2 = __pyx_t_3; } else { __pyx_t_2 = __pyx_t_5; } if (__pyx_t_2) { /* "chaplotype.pyx":410 * return False * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence > other.haplotypeSequence: * return False # <<<<<<<<<<<<<< * else: * return True */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 410; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L4; } /*else*/ { /* "chaplotype.pyx":412 * return False * else: * return True # <<<<<<<<<<<<<< * # > * elif opCode == 4: */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 412; __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_L4:; break; /* "chaplotype.pyx":414 * return True * # > * elif opCode == 4: # <<<<<<<<<<<<<< * if self.refName > other.refName: * return True */ case 4: /* "chaplotype.pyx":415 * # > * elif opCode == 4: * if self.refName > other.refName: # <<<<<<<<<<<<<< * return True * elif self.refName == other.refName and self.startPos > other.startPos: */ __pyx_t_1 = PyObject_RichCompare(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_GT); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 415; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 415; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { /* "chaplotype.pyx":416 * elif opCode == 4: * if self.refName > other.refName: * return True # <<<<<<<<<<<<<< * elif self.refName == other.refName and self.startPos > other.startPos: * return True */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 416; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L5; } /* "chaplotype.pyx":417 * if self.refName > other.refName: * return True * elif self.refName == other.refName and self.startPos > other.startPos: # <<<<<<<<<<<<<< * return True * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence > other.haplotypeSequence: */ __pyx_t_2 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_EQ)); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 417; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_2) { __pyx_t_5 = (__pyx_v_self->startPos > __pyx_v_other->startPos); __pyx_t_3 = __pyx_t_5; } else { __pyx_t_3 = __pyx_t_2; } if (__pyx_t_3) { /* "chaplotype.pyx":418 * return True * elif self.refName == other.refName and self.startPos > other.startPos: * return True # <<<<<<<<<<<<<< * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence > other.haplotypeSequence: * return True */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 418; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L5; } /* "chaplotype.pyx":419 * elif self.refName == other.refName and self.startPos > other.startPos: * return True * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence > other.haplotypeSequence: # <<<<<<<<<<<<<< * return True * else: */ __pyx_t_3 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_EQ)); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 419; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_3) { __pyx_t_2 = (__pyx_v_self->startPos == __pyx_v_other->startPos); if (__pyx_t_2) { __pyx_t_1 = PyObject_RichCompare(((PyObject *)__pyx_v_self->haplotypeSequence), ((PyObject *)__pyx_v_other->haplotypeSequence), Py_GT); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 419; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 419; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_4 = __pyx_t_5; } else { __pyx_t_4 = __pyx_t_2; } __pyx_t_2 = __pyx_t_4; } else { __pyx_t_2 = __pyx_t_3; } if (__pyx_t_2) { /* "chaplotype.pyx":420 * return True * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence > other.haplotypeSequence: * return True # <<<<<<<<<<<<<< * else: * return False */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 420; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L5; } /*else*/ { /* "chaplotype.pyx":422 * return True * else: * return False # <<<<<<<<<<<<<< * # >= * elif opCode == 5: */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 422; __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_L5:; break; /* "chaplotype.pyx":424 * return False * # >= * elif opCode == 5: # <<<<<<<<<<<<<< * if self.refName < other.refName: * return False */ case 5: /* "chaplotype.pyx":425 * # >= * elif opCode == 5: * if self.refName < other.refName: # <<<<<<<<<<<<<< * return False * elif self.refName == other.refName and self.startPos < other.startPos: */ __pyx_t_1 = PyObject_RichCompare(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_LT); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 425; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 425; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { /* "chaplotype.pyx":426 * elif opCode == 5: * if self.refName < other.refName: * return False # <<<<<<<<<<<<<< * elif self.refName == other.refName and self.startPos < other.startPos: * return False */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 426; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L6; } /* "chaplotype.pyx":427 * if self.refName < other.refName: * return False * elif self.refName == other.refName and self.startPos < other.startPos: # <<<<<<<<<<<<<< * return False * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence < other.haplotypeSequence: */ __pyx_t_2 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_EQ)); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 427; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_2) { __pyx_t_3 = (__pyx_v_self->startPos < __pyx_v_other->startPos); __pyx_t_4 = __pyx_t_3; } else { __pyx_t_4 = __pyx_t_2; } if (__pyx_t_4) { /* "chaplotype.pyx":428 * return False * elif self.refName == other.refName and self.startPos < other.startPos: * return False # <<<<<<<<<<<<<< * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence < other.haplotypeSequence: * return False */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(0); 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_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L6; } /* "chaplotype.pyx":429 * elif self.refName == other.refName and self.startPos < other.startPos: * return False * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence < other.haplotypeSequence: # <<<<<<<<<<<<<< * return False * else: */ __pyx_t_4 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_EQ)); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 429; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_4) { __pyx_t_2 = (__pyx_v_self->startPos == __pyx_v_other->startPos); if (__pyx_t_2) { __pyx_t_1 = PyObject_RichCompare(((PyObject *)__pyx_v_self->haplotypeSequence), ((PyObject *)__pyx_v_other->haplotypeSequence), Py_LT); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 429; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 429; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_5 = __pyx_t_3; } else { __pyx_t_5 = __pyx_t_2; } __pyx_t_2 = __pyx_t_5; } else { __pyx_t_2 = __pyx_t_4; } if (__pyx_t_2) { /* "chaplotype.pyx":430 * return False * elif self.refName == other.refName and self.startPos == other.startPos and self.haplotypeSequence < other.haplotypeSequence: * return False # <<<<<<<<<<<<<< * else: * return True */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(0); 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_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L6; } /*else*/ { /* "chaplotype.pyx":432 * return False * else: * return True # <<<<<<<<<<<<<< * # == * if opCode == 2: */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 432; __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_L6:; break; } /* "chaplotype.pyx":445 * * # != * elif opCode == 3: # <<<<<<<<<<<<<< * if self.refName != other.refName: * return True */ switch (__pyx_v_opCode) { /* "chaplotype.pyx":434 * return True * # == * if opCode == 2: # <<<<<<<<<<<<<< * if self.refName != other.refName: * return False */ case 2: /* "chaplotype.pyx":435 * # == * if opCode == 2: * if self.refName != other.refName: # <<<<<<<<<<<<<< * return False * elif self.startPos != other.startPos: */ __pyx_t_2 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_NE)); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 435; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_2) { /* "chaplotype.pyx":436 * if opCode == 2: * if self.refName != other.refName: * return False # <<<<<<<<<<<<<< * elif self.startPos != other.startPos: * return False */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 436; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L7; } /* "chaplotype.pyx":437 * if self.refName != other.refName: * return False * elif self.startPos != other.startPos: # <<<<<<<<<<<<<< * return False * else: */ __pyx_t_2 = (__pyx_v_self->startPos != __pyx_v_other->startPos); if (__pyx_t_2) { /* "chaplotype.pyx":438 * return False * elif self.startPos != other.startPos: * return False # <<<<<<<<<<<<<< * else: * thisSeq = self.haplotypeSequence */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 438; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L7; } /*else*/ { /* "chaplotype.pyx":440 * return False * else: * thisSeq = self.haplotypeSequence # <<<<<<<<<<<<<< * otherSeq = other.haplotypeSequence * return thisSeq == otherSeq */ __pyx_t_1 = ((PyObject *)__pyx_v_self->haplotypeSequence); __Pyx_INCREF(__pyx_t_1); __pyx_v_thisSeq = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":441 * else: * thisSeq = self.haplotypeSequence * otherSeq = other.haplotypeSequence # <<<<<<<<<<<<<< * return thisSeq == otherSeq * */ __pyx_t_1 = ((PyObject *)__pyx_v_other->haplotypeSequence); __Pyx_INCREF(__pyx_t_1); __pyx_v_otherSeq = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":442 * thisSeq = self.haplotypeSequence * otherSeq = other.haplotypeSequence * return thisSeq == otherSeq # <<<<<<<<<<<<<< * * # != */ __Pyx_XDECREF(__pyx_r); __pyx_t_2 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_thisSeq), ((PyObject *)__pyx_v_otherSeq), Py_EQ)); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 442; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 442; __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_L7:; break; /* "chaplotype.pyx":445 * * # != * elif opCode == 3: # <<<<<<<<<<<<<< * if self.refName != other.refName: * return True */ case 3: /* "chaplotype.pyx":446 * # != * elif opCode == 3: * if self.refName != other.refName: # <<<<<<<<<<<<<< * return True * elif self.startPos != other.startPos: */ __pyx_t_2 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_self->refName), ((PyObject *)__pyx_v_other->refName), Py_NE)); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 446; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__pyx_t_2) { /* "chaplotype.pyx":447 * elif opCode == 3: * if self.refName != other.refName: * return True # <<<<<<<<<<<<<< * elif self.startPos != other.startPos: * return True */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 447; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L8; } /* "chaplotype.pyx":448 * if self.refName != other.refName: * return True * elif self.startPos != other.startPos: # <<<<<<<<<<<<<< * return True * else: */ __pyx_t_2 = (__pyx_v_self->startPos != __pyx_v_other->startPos); if (__pyx_t_2) { /* "chaplotype.pyx":449 * return True * elif self.startPos != other.startPos: * return True # <<<<<<<<<<<<<< * else: * thisSeq = self.haplotypeSequence */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 449; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L8; } /*else*/ { /* "chaplotype.pyx":451 * return True * else: * thisSeq = self.haplotypeSequence # <<<<<<<<<<<<<< * otherSeq = other.haplotypeSequence * return thisSeq != otherSeq */ __pyx_t_1 = ((PyObject *)__pyx_v_self->haplotypeSequence); __Pyx_INCREF(__pyx_t_1); __pyx_v_thisSeq = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":452 * else: * thisSeq = self.haplotypeSequence * otherSeq = other.haplotypeSequence # <<<<<<<<<<<<<< * return thisSeq != otherSeq * else: */ __pyx_t_1 = ((PyObject *)__pyx_v_other->haplotypeSequence); __Pyx_INCREF(__pyx_t_1); __pyx_v_otherSeq = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":453 * thisSeq = self.haplotypeSequence * otherSeq = other.haplotypeSequence * return thisSeq != otherSeq # <<<<<<<<<<<<<< * else: * raise StandardError, "Op code %s not implemented in haplotype__richcmp__()" %(opCode) */ __Pyx_XDECREF(__pyx_r); __pyx_t_2 = (__Pyx_PyBytes_Equals(((PyObject *)__pyx_v_thisSeq), ((PyObject *)__pyx_v_otherSeq), Py_NE)); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 453; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_1 = __Pyx_PyBool_FromLong(__pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 453; __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_L8:; break; default: /* "chaplotype.pyx":455 * return thisSeq != otherSeq * else: * raise StandardError, "Op code %s not implemented in haplotype__richcmp__()" %(opCode) # <<<<<<<<<<<<<< * * def __hash__(self): */ __pyx_t_1 = PyInt_FromLong(__pyx_v_opCode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_6 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_3), __pyx_t_1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_6)); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_Raise(__pyx_builtin_StandardError, ((PyObject *)__pyx_t_6), 0, 0); __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0; {__pyx_filename = __pyx_f[0]; __pyx_lineno = 455; __pyx_clineno = __LINE__; goto __pyx_L1_error;} break; } __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_6); __Pyx_AddTraceback("chaplotype.Haplotype.__richcmp__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_thisSeq); __Pyx_XDECREF(__pyx_v_otherSeq); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static Py_hash_t __pyx_pw_10chaplotype_9Haplotype_9__hash__(PyObject *__pyx_v_self); /*proto*/ static char __pyx_doc_10chaplotype_9Haplotype_8__hash__[] = "\n Implementing this function allows haplotypes to be hashed, and so stored in\n a set or dictionary. The supporting reads are not included in the hashing, as\n we want two haplotypes to give the same hash id if they have the same positions\n and sequences.\n "; #if CYTHON_COMPILING_IN_CPYTHON struct wrapperbase __pyx_wrapperbase_10chaplotype_9Haplotype_8__hash__; #endif static Py_hash_t __pyx_pw_10chaplotype_9Haplotype_9__hash__(PyObject *__pyx_v_self) { Py_hash_t __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__hash__ (wrapper)", 0); __pyx_r = __pyx_pf_10chaplotype_9Haplotype_8__hash__(((struct __pyx_obj_10chaplotype_Haplotype *)__pyx_v_self)); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":457 * raise StandardError, "Op code %s not implemented in haplotype__richcmp__()" %(opCode) * * def __hash__(self): # <<<<<<<<<<<<<< * """ * Implementing this function allows haplotypes to be hashed, and so stored in */ static Py_hash_t __pyx_pf_10chaplotype_9Haplotype_8__hash__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self) { Py_hash_t __pyx_r; __Pyx_RefNannyDeclarations int __pyx_t_1; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; Py_hash_t __pyx_t_5; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__hash__", 0); /* "chaplotype.pyx":464 * and sequences. * """ * if self.hash == -1: # <<<<<<<<<<<<<< * self.hash = hash((self.refName, self.startPos, self.endPos, self.haplotypeSequence)) * */ __pyx_t_1 = (__pyx_v_self->hash == -1); if (__pyx_t_1) { /* "chaplotype.pyx":465 * """ * if self.hash == -1: * self.hash = hash((self.refName, self.startPos, self.endPos, self.haplotypeSequence)) # <<<<<<<<<<<<<< * * return self.hash */ __pyx_t_2 = PyInt_FromLong(__pyx_v_self->startPos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 465; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyInt_FromLong(__pyx_v_self->endPos); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 465; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyTuple_New(4); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 465; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_INCREF(((PyObject *)__pyx_v_self->refName)); PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_v_self->refName)); __Pyx_GIVEREF(((PyObject *)__pyx_v_self->refName)); PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_4, 2, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_3); __Pyx_INCREF(((PyObject *)__pyx_v_self->haplotypeSequence)); PyTuple_SET_ITEM(__pyx_t_4, 3, ((PyObject *)__pyx_v_self->haplotypeSequence)); __Pyx_GIVEREF(((PyObject *)__pyx_v_self->haplotypeSequence)); __pyx_t_2 = 0; __pyx_t_3 = 0; __pyx_t_5 = PyObject_Hash(((PyObject *)__pyx_t_4)); if (unlikely(__pyx_t_5 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 465; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; __pyx_v_self->hash = __pyx_t_5; goto __pyx_L3; } __pyx_L3:; /* "chaplotype.pyx":467 * self.hash = hash((self.refName, self.startPos, self.endPos, self.haplotypeSequence)) * * return self.hash # <<<<<<<<<<<<<< * * cdef double* alignReads(self, int individualIndex, cAlignedRead** start, cAlignedRead** end, cAlignedRead** badReadsStart, cAlignedRead** badReadsEnd, cAlignedRead** brokenReadsStart, cAlignedRead** brokenReadsEnd, int useMapQualCap, int printAlignments): */ __pyx_r = __pyx_v_self->hash; goto __pyx_L0; __pyx_r = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_AddTraceback("chaplotype.Haplotype.__hash__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = -1; __pyx_L0:; if (unlikely(__pyx_r == -1) && !PyErr_Occurred()) __pyx_r = -2; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":469 * return self.hash * * cdef double* alignReads(self, int individualIndex, cAlignedRead** start, cAlignedRead** end, cAlignedRead** badReadsStart, cAlignedRead** badReadsEnd, cAlignedRead** brokenReadsStart, cAlignedRead** brokenReadsEnd, int useMapQualCap, int printAlignments): # <<<<<<<<<<<<<< * """ * """ */ static double *__pyx_f_10chaplotype_9Haplotype_alignReads(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self, int __pyx_v_individualIndex, __pyx_t_15samtoolsWrapper_cAlignedRead **__pyx_v_start, __pyx_t_15samtoolsWrapper_cAlignedRead **__pyx_v_end, __pyx_t_15samtoolsWrapper_cAlignedRead **__pyx_v_badReadsStart, __pyx_t_15samtoolsWrapper_cAlignedRead **__pyx_v_badReadsEnd, __pyx_t_15samtoolsWrapper_cAlignedRead **__pyx_v_brokenReadsStart, __pyx_t_15samtoolsWrapper_cAlignedRead **__pyx_v_brokenReadsEnd, int __pyx_v_useMapQualCap, int __pyx_v_printAlignments) { int __pyx_v_readIndex; double __pyx_v_score; int __pyx_v_nReads; int __pyx_v_nBadReads; int __pyx_v_nBrokenReads; int __pyx_v_totalReads; int __pyx_v_readOverlap; CYTHON_UNUSED int __pyx_v_hapLen; CYTHON_UNUSED int __pyx_v_readLen; double *__pyx_v_temp; double *__pyx_r; __Pyx_RefNannyDeclarations int __pyx_t_1; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; int __pyx_t_5; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("alignReads", 0); /* "chaplotype.pyx":472 * """ * """ * cdef int readIndex = 0 # <<<<<<<<<<<<<< * cdef double score = 0.0 * cdef int nReads = end - start */ __pyx_v_readIndex = 0; /* "chaplotype.pyx":473 * """ * cdef int readIndex = 0 * cdef double score = 0.0 # <<<<<<<<<<<<<< * cdef int nReads = end - start * cdef int nBadReads = badReadsEnd - badReadsStart */ __pyx_v_score = 0.0; /* "chaplotype.pyx":474 * cdef int readIndex = 0 * cdef double score = 0.0 * cdef int nReads = end - start # <<<<<<<<<<<<<< * cdef int nBadReads = badReadsEnd - badReadsStart * cdef int nBrokenReads = brokenReadsEnd - brokenReadsStart */ __pyx_v_nReads = (__pyx_v_end - __pyx_v_start); /* "chaplotype.pyx":475 * cdef double score = 0.0 * cdef int nReads = end - start * cdef int nBadReads = badReadsEnd - badReadsStart # <<<<<<<<<<<<<< * cdef int nBrokenReads = brokenReadsEnd - brokenReadsStart * cdef int totalReads = nReads + nBadReads + nBrokenReads */ __pyx_v_nBadReads = (__pyx_v_badReadsEnd - __pyx_v_badReadsStart); /* "chaplotype.pyx":476 * cdef int nReads = end - start * cdef int nBadReads = badReadsEnd - badReadsStart * cdef int nBrokenReads = brokenReadsEnd - brokenReadsStart # <<<<<<<<<<<<<< * cdef int totalReads = nReads + nBadReads + nBrokenReads * cdef int readOverlap = 0 */ __pyx_v_nBrokenReads = (__pyx_v_brokenReadsEnd - __pyx_v_brokenReadsStart); /* "chaplotype.pyx":477 * cdef int nBadReads = badReadsEnd - badReadsStart * cdef int nBrokenReads = brokenReadsEnd - brokenReadsStart * cdef int totalReads = nReads + nBadReads + nBrokenReads # <<<<<<<<<<<<<< * cdef int readOverlap = 0 * cdef int hapLen = self.endPos - self.startPos */ __pyx_v_totalReads = ((__pyx_v_nReads + __pyx_v_nBadReads) + __pyx_v_nBrokenReads); /* "chaplotype.pyx":478 * cdef int nBrokenReads = brokenReadsEnd - brokenReadsStart * cdef int totalReads = nReads + nBadReads + nBrokenReads * cdef int readOverlap = 0 # <<<<<<<<<<<<<< * cdef int hapLen = self.endPos - self.startPos * cdef int readLen = 0 */ __pyx_v_readOverlap = 0; /* "chaplotype.pyx":479 * cdef int totalReads = nReads + nBadReads + nBrokenReads * cdef int readOverlap = 0 * cdef int hapLen = self.endPos - self.startPos # <<<<<<<<<<<<<< * cdef int readLen = 0 * cdef double* temp = NULL */ __pyx_v_hapLen = (__pyx_v_self->endPos - __pyx_v_self->startPos); /* "chaplotype.pyx":480 * cdef int readOverlap = 0 * cdef int hapLen = self.endPos - self.startPos * cdef int readLen = 0 # <<<<<<<<<<<<<< * cdef double* temp = NULL * */ __pyx_v_readLen = 0; /* "chaplotype.pyx":481 * cdef int hapLen = self.endPos - self.startPos * cdef int readLen = 0 * cdef double* temp = NULL # <<<<<<<<<<<<<< * * # Either first time, or new individual */ __pyx_v_temp = NULL; /* "chaplotype.pyx":484 * * # Either first time, or new individual * if individualIndex != self.lastIndividualIndex: # <<<<<<<<<<<<<< * * if self.likelihoodCache == NULL: */ __pyx_t_1 = (__pyx_v_individualIndex != __pyx_v_self->lastIndividualIndex); if (__pyx_t_1) { /* "chaplotype.pyx":486 * if individualIndex != self.lastIndividualIndex: * * if self.likelihoodCache == NULL: # <<<<<<<<<<<<<< * self.likelihoodCache = (my_malloc((totalReads+1)*sizeof(double))) * self.lenCache = totalReads */ __pyx_t_1 = (__pyx_v_self->likelihoodCache == NULL); if (__pyx_t_1) { /* "chaplotype.pyx":487 * * if self.likelihoodCache == NULL: * self.likelihoodCache = (my_malloc((totalReads+1)*sizeof(double))) # <<<<<<<<<<<<<< * self.lenCache = totalReads * */ __pyx_v_self->likelihoodCache = ((double *)__pyx_f_10chaplotype_my_malloc(((__pyx_v_totalReads + 1) * (sizeof(double))))); /* "chaplotype.pyx":488 * if self.likelihoodCache == NULL: * self.likelihoodCache = (my_malloc((totalReads+1)*sizeof(double))) * self.lenCache = totalReads # <<<<<<<<<<<<<< * * if self.likelihoodCache == NULL: */ __pyx_v_self->lenCache = __pyx_v_totalReads; /* "chaplotype.pyx":490 * self.lenCache = totalReads * * if self.likelihoodCache == NULL: # <<<<<<<<<<<<<< * logger.error("Could not allocate haplotype cache") * raise StandardError, "Out of memory in cHaplotype.alignReads" */ __pyx_t_1 = (__pyx_v_self->likelihoodCache == NULL); if (__pyx_t_1) { /* "chaplotype.pyx":491 * * if self.likelihoodCache == NULL: * logger.error("Could not allocate haplotype cache") # <<<<<<<<<<<<<< * raise StandardError, "Out of memory in cHaplotype.alignReads" * else: */ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 491; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__error); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 491; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_5), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 491; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":492 * if self.likelihoodCache == NULL: * logger.error("Could not allocate haplotype cache") * raise StandardError, "Out of memory in cHaplotype.alignReads" # <<<<<<<<<<<<<< * else: * if totalReads > self.lenCache: */ __Pyx_Raise(__pyx_builtin_StandardError, ((PyObject *)__pyx_kp_s_6), 0, 0); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 492; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L5; } __pyx_L5:; goto __pyx_L4; } /*else*/ { /* "chaplotype.pyx":494 * raise StandardError, "Out of memory in cHaplotype.alignReads" * else: * if totalReads > self.lenCache: # <<<<<<<<<<<<<< * temp = realloc(self.likelihoodCache, 2*totalReads*sizeof(double)) * */ __pyx_t_1 = (__pyx_v_totalReads > __pyx_v_self->lenCache); if (__pyx_t_1) { /* "chaplotype.pyx":495 * else: * if totalReads > self.lenCache: * temp = realloc(self.likelihoodCache, 2*totalReads*sizeof(double)) # <<<<<<<<<<<<<< * * if temp == NULL: */ __pyx_v_temp = ((double *)realloc(__pyx_v_self->likelihoodCache, ((2 * __pyx_v_totalReads) * (sizeof(double))))); /* "chaplotype.pyx":497 * temp = realloc(self.likelihoodCache, 2*totalReads*sizeof(double)) * * if temp == NULL: # <<<<<<<<<<<<<< * logger.error("Could not reallocate haplotype cache") * raise StandardError, "Out of memory in cHaplotype.alignReads" */ __pyx_t_1 = (__pyx_v_temp == NULL); if (__pyx_t_1) { /* "chaplotype.pyx":498 * * if temp == NULL: * logger.error("Could not reallocate haplotype cache") # <<<<<<<<<<<<<< * raise StandardError, "Out of memory in cHaplotype.alignReads" * */ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 498; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__error); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 498; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_8), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 498; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":499 * if temp == NULL: * logger.error("Could not reallocate haplotype cache") * raise StandardError, "Out of memory in cHaplotype.alignReads" # <<<<<<<<<<<<<< * * self.likelihoodCache = temp */ __Pyx_Raise(__pyx_builtin_StandardError, ((PyObject *)__pyx_kp_s_6), 0, 0); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 499; __pyx_clineno = __LINE__; goto __pyx_L1_error;} goto __pyx_L7; } __pyx_L7:; /* "chaplotype.pyx":501 * raise StandardError, "Out of memory in cHaplotype.alignReads" * * self.likelihoodCache = temp # <<<<<<<<<<<<<< * self.lenCache = 2*totalReads * */ __pyx_v_self->likelihoodCache = __pyx_v_temp; /* "chaplotype.pyx":502 * * self.likelihoodCache = temp * self.lenCache = 2*totalReads # <<<<<<<<<<<<<< * * self.lastIndividualIndex = individualIndex */ __pyx_v_self->lenCache = (2 * __pyx_v_totalReads); goto __pyx_L6; } __pyx_L6:; } __pyx_L4:; /* "chaplotype.pyx":504 * self.lenCache = 2*totalReads * * self.lastIndividualIndex = individualIndex # <<<<<<<<<<<<<< * * if printAlignments: */ __pyx_v_self->lastIndividualIndex = __pyx_v_individualIndex; /* "chaplotype.pyx":506 * self.lastIndividualIndex = individualIndex * * if printAlignments: # <<<<<<<<<<<<<< * logger.debug("") * logger.debug("#########################################################################") */ if (__pyx_v_printAlignments) { /* "chaplotype.pyx":507 * * if printAlignments: * logger.debug("") # <<<<<<<<<<<<<< * logger.debug("#########################################################################") * logger.debug("Logging alignments for haplotype %s and sample %s" %(self, individualIndex)) */ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 507; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__debug); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 507; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_10), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 507; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":508 * if printAlignments: * logger.debug("") * logger.debug("#########################################################################") # <<<<<<<<<<<<<< * logger.debug("Logging alignments for haplotype %s and sample %s" %(self, individualIndex)) * logger.debug("Haplotype sequence is followed by alignments of all reads (good then bad then broken mates)") */ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__debug); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_12), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":509 * logger.debug("") * logger.debug("#########################################################################") * logger.debug("Logging alignments for haplotype %s and sample %s" %(self, individualIndex)) # <<<<<<<<<<<<<< * logger.debug("Haplotype sequence is followed by alignments of all reads (good then bad then broken mates)") * logger.debug("#########################################################################") */ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__debug); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __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_individualIndex); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_INCREF(((PyObject *)__pyx_v_self)); PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_v_self)); __Pyx_GIVEREF(((PyObject *)__pyx_v_self)); PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_13), ((PyObject *)__pyx_t_4)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_t_2)); __Pyx_GIVEREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __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_4)); __pyx_t_4 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":510 * logger.debug("#########################################################################") * logger.debug("Logging alignments for haplotype %s and sample %s" %(self, individualIndex)) * logger.debug("Haplotype sequence is followed by alignments of all reads (good then bad then broken mates)") # <<<<<<<<<<<<<< * logger.debug("#########################################################################") * logger.debug(self.getMutatedSequence()) */ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 510; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_4 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__debug); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 510; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_4, ((PyObject *)__pyx_k_tuple_15), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 510; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":511 * logger.debug("Logging alignments for haplotype %s and sample %s" %(self, individualIndex)) * logger.debug("Haplotype sequence is followed by alignments of all reads (good then bad then broken mates)") * logger.debug("#########################################################################") # <<<<<<<<<<<<<< * logger.debug(self.getMutatedSequence()) * logger.debug("") */ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 511; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_4 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__debug); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 511; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_4, ((PyObject *)__pyx_k_tuple_16), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 511; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":512 * logger.debug("Haplotype sequence is followed by alignments of all reads (good then bad then broken mates)") * logger.debug("#########################################################################") * logger.debug(self.getMutatedSequence()) # <<<<<<<<<<<<<< * logger.debug("") * */ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 512; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_4 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__debug); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 512; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyBytes_FromString(((struct __pyx_vtabstruct_10chaplotype_Haplotype *)__pyx_v_self->__pyx_vtab)->getMutatedSequence(__pyx_v_self)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 512; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 512; __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_t_4, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 512; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":513 * logger.debug("#########################################################################") * logger.debug(self.getMutatedSequence()) * logger.debug("") # <<<<<<<<<<<<<< * * while start != end: */ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 513; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__debug); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 513; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_k_tuple_17), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 513; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; goto __pyx_L8; } __pyx_L8:; /* "chaplotype.pyx":515 * logger.debug("") * * while start != end: # <<<<<<<<<<<<<< * * readOverlap = computeOverlapOfReadAndHaplotype(self.startPos, self.endPos, start[0]) */ while (1) { __pyx_t_1 = (__pyx_v_start != __pyx_v_end); if (!__pyx_t_1) break; /* "chaplotype.pyx":517 * while start != end: * * readOverlap = computeOverlapOfReadAndHaplotype(self.startPos, self.endPos, start[0]) # <<<<<<<<<<<<<< * * if Read_IsQCFail(start[0]) or readOverlap < hash_nucs: */ __pyx_v_readOverlap = __pyx_f_10chaplotype_computeOverlapOfReadAndHaplotype(__pyx_v_self->startPos, __pyx_v_self->endPos, (__pyx_v_start[0])); /* "chaplotype.pyx":519 * readOverlap = computeOverlapOfReadAndHaplotype(self.startPos, self.endPos, start[0]) * * if Read_IsQCFail(start[0]) or readOverlap < hash_nucs: # <<<<<<<<<<<<<< * self.likelihoodCache[readIndex] = 0 * else: */ if (!__pyx_f_15samtoolsWrapper_Read_IsQCFail((__pyx_v_start[0]))) { __pyx_t_1 = (__pyx_v_readOverlap < __pyx_v_6calign_hash_nucs); __pyx_t_5 = __pyx_t_1; } else { __pyx_t_5 = __pyx_f_15samtoolsWrapper_Read_IsQCFail((__pyx_v_start[0])); } if (__pyx_t_5) { /* "chaplotype.pyx":520 * * if Read_IsQCFail(start[0]) or readOverlap < hash_nucs: * self.likelihoodCache[readIndex] = 0 # <<<<<<<<<<<<<< * else: * score = alignReadToHaplotype(start[0], self, useMapQualCap, printAlignments) */ (__pyx_v_self->likelihoodCache[__pyx_v_readIndex]) = 0.0; goto __pyx_L11; } /*else*/ { /* "chaplotype.pyx":522 * self.likelihoodCache[readIndex] = 0 * else: * score = alignReadToHaplotype(start[0], self, useMapQualCap, printAlignments) # <<<<<<<<<<<<<< * self.likelihoodCache[readIndex] = score * */ __pyx_v_score = __pyx_f_10chaplotype_alignReadToHaplotype((__pyx_v_start[0]), __pyx_v_self, __pyx_v_useMapQualCap, __pyx_v_printAlignments); /* "chaplotype.pyx":523 * else: * score = alignReadToHaplotype(start[0], self, useMapQualCap, printAlignments) * self.likelihoodCache[readIndex] = score # <<<<<<<<<<<<<< * * start += 1 */ (__pyx_v_self->likelihoodCache[__pyx_v_readIndex]) = __pyx_v_score; } __pyx_L11:; /* "chaplotype.pyx":525 * self.likelihoodCache[readIndex] = score * * start += 1 # <<<<<<<<<<<<<< * readIndex += 1 * */ __pyx_v_start = (__pyx_v_start + 1); /* "chaplotype.pyx":526 * * start += 1 * readIndex += 1 # <<<<<<<<<<<<<< * * while badReadsStart != badReadsEnd: */ __pyx_v_readIndex = (__pyx_v_readIndex + 1); } /* "chaplotype.pyx":528 * readIndex += 1 * * while badReadsStart != badReadsEnd: # <<<<<<<<<<<<<< * * readOverlap = computeOverlapOfReadAndHaplotype(self.startPos, self.endPos, badReadsStart[0]) */ while (1) { __pyx_t_5 = (__pyx_v_badReadsStart != __pyx_v_badReadsEnd); if (!__pyx_t_5) break; /* "chaplotype.pyx":530 * while badReadsStart != badReadsEnd: * * readOverlap = computeOverlapOfReadAndHaplotype(self.startPos, self.endPos, badReadsStart[0]) # <<<<<<<<<<<<<< * * if Read_IsQCFail(badReadsStart[0]) or readOverlap < hash_nucs: */ __pyx_v_readOverlap = __pyx_f_10chaplotype_computeOverlapOfReadAndHaplotype(__pyx_v_self->startPos, __pyx_v_self->endPos, (__pyx_v_badReadsStart[0])); /* "chaplotype.pyx":532 * readOverlap = computeOverlapOfReadAndHaplotype(self.startPos, self.endPos, badReadsStart[0]) * * if Read_IsQCFail(badReadsStart[0]) or readOverlap < hash_nucs: # <<<<<<<<<<<<<< * self.likelihoodCache[readIndex] = 0 * else: */ if (!__pyx_f_15samtoolsWrapper_Read_IsQCFail((__pyx_v_badReadsStart[0]))) { __pyx_t_5 = (__pyx_v_readOverlap < __pyx_v_6calign_hash_nucs); __pyx_t_1 = __pyx_t_5; } else { __pyx_t_1 = __pyx_f_15samtoolsWrapper_Read_IsQCFail((__pyx_v_badReadsStart[0])); } if (__pyx_t_1) { /* "chaplotype.pyx":533 * * if Read_IsQCFail(badReadsStart[0]) or readOverlap < hash_nucs: * self.likelihoodCache[readIndex] = 0 # <<<<<<<<<<<<<< * else: * score = alignReadToHaplotype(badReadsStart[0], self, useMapQualCap, printAlignments) */ (__pyx_v_self->likelihoodCache[__pyx_v_readIndex]) = 0.0; goto __pyx_L14; } /*else*/ { /* "chaplotype.pyx":535 * self.likelihoodCache[readIndex] = 0 * else: * score = alignReadToHaplotype(badReadsStart[0], self, useMapQualCap, printAlignments) # <<<<<<<<<<<<<< * self.likelihoodCache[readIndex] = score * */ __pyx_v_score = __pyx_f_10chaplotype_alignReadToHaplotype((__pyx_v_badReadsStart[0]), __pyx_v_self, __pyx_v_useMapQualCap, __pyx_v_printAlignments); /* "chaplotype.pyx":536 * else: * score = alignReadToHaplotype(badReadsStart[0], self, useMapQualCap, printAlignments) * self.likelihoodCache[readIndex] = score # <<<<<<<<<<<<<< * * badReadsStart += 1 */ (__pyx_v_self->likelihoodCache[__pyx_v_readIndex]) = __pyx_v_score; } __pyx_L14:; /* "chaplotype.pyx":538 * self.likelihoodCache[readIndex] = score * * badReadsStart += 1 # <<<<<<<<<<<<<< * readIndex += 1 * */ __pyx_v_badReadsStart = (__pyx_v_badReadsStart + 1); /* "chaplotype.pyx":539 * * badReadsStart += 1 * readIndex += 1 # <<<<<<<<<<<<<< * * # It doesn't make sense to check overlap for the broken mates, as their mapping positions don't make */ __pyx_v_readIndex = (__pyx_v_readIndex + 1); } /* "chaplotype.pyx":543 * # It doesn't make sense to check overlap for the broken mates, as their mapping positions don't make * # sense in this context. * while brokenReadsStart != brokenReadsEnd: # <<<<<<<<<<<<<< * score = alignReadToHaplotype(brokenReadsStart[0], self, useMapQualCap, printAlignments) * self.likelihoodCache[readIndex] = score */ while (1) { __pyx_t_1 = (__pyx_v_brokenReadsStart != __pyx_v_brokenReadsEnd); if (!__pyx_t_1) break; /* "chaplotype.pyx":544 * # sense in this context. * while brokenReadsStart != brokenReadsEnd: * score = alignReadToHaplotype(brokenReadsStart[0], self, useMapQualCap, printAlignments) # <<<<<<<<<<<<<< * self.likelihoodCache[readIndex] = score * brokenReadsStart += 1 */ __pyx_v_score = __pyx_f_10chaplotype_alignReadToHaplotype((__pyx_v_brokenReadsStart[0]), __pyx_v_self, __pyx_v_useMapQualCap, __pyx_v_printAlignments); /* "chaplotype.pyx":545 * while brokenReadsStart != brokenReadsEnd: * score = alignReadToHaplotype(brokenReadsStart[0], self, useMapQualCap, printAlignments) * self.likelihoodCache[readIndex] = score # <<<<<<<<<<<<<< * brokenReadsStart += 1 * readIndex += 1 */ (__pyx_v_self->likelihoodCache[__pyx_v_readIndex]) = __pyx_v_score; /* "chaplotype.pyx":546 * score = alignReadToHaplotype(brokenReadsStart[0], self, useMapQualCap, printAlignments) * self.likelihoodCache[readIndex] = score * brokenReadsStart += 1 # <<<<<<<<<<<<<< * readIndex += 1 * */ __pyx_v_brokenReadsStart = (__pyx_v_brokenReadsStart + 1); /* "chaplotype.pyx":547 * self.likelihoodCache[readIndex] = score * brokenReadsStart += 1 * readIndex += 1 # <<<<<<<<<<<<<< * * self.likelihoodCache[readIndex] = 999 # End marker */ __pyx_v_readIndex = (__pyx_v_readIndex + 1); } /* "chaplotype.pyx":549 * readIndex += 1 * * self.likelihoodCache[readIndex] = 999 # End marker # <<<<<<<<<<<<<< * * return self.likelihoodCache */ (__pyx_v_self->likelihoodCache[__pyx_v_readIndex]) = 999.0; goto __pyx_L3; } __pyx_L3:; /* "chaplotype.pyx":551 * self.likelihoodCache[readIndex] = 999 # End marker * * return self.likelihoodCache # <<<<<<<<<<<<<< * * cdef inline double alignSingleRead(self, cAlignedRead* theRead, int useMapQualCap, int printAlignments): */ __pyx_r = __pyx_v_self->likelihoodCache; goto __pyx_L0; __pyx_r = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_WriteUnraisable("chaplotype.Haplotype.alignReads", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":553 * return self.likelihoodCache * * cdef inline double alignSingleRead(self, cAlignedRead* theRead, int useMapQualCap, int printAlignments): # <<<<<<<<<<<<<< * """ * Returns the alignment score for a single read. If 'useMapQualCap' is True, then read likelihood */ static double __pyx_f_10chaplotype_9Haplotype_alignSingleRead(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self, __pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead, int __pyx_v_useMapQualCap, int __pyx_v_printAlignments) { double __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("alignSingleRead", 0); /* "chaplotype.pyx":558 * is capped using the mapping quality of the read. Otherwise it is capped at 1e-300. * """ * return alignReadToHaplotype(theRead, self, useMapQualCap, printAlignments) # <<<<<<<<<<<<<< * * cdef char* getReferenceSequence(self, prefix = 0): */ __pyx_r = __pyx_f_10chaplotype_alignReadToHaplotype(__pyx_v_theRead, __pyx_v_self, __pyx_v_useMapQualCap, __pyx_v_printAlignments); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":560 * return alignReadToHaplotype(theRead, self, useMapQualCap, printAlignments) * * cdef char* getReferenceSequence(self, prefix = 0): # <<<<<<<<<<<<<< * """ * Return the refernece sequence for the region covered by this haplotype. pretty shows where the variants are. */ static char *__pyx_f_10chaplotype_9Haplotype_getReferenceSequence(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self, struct __pyx_opt_args_10chaplotype_9Haplotype_getReferenceSequence *__pyx_optional_args) { PyObject *__pyx_v_prefix = ((PyObject *)__pyx_int_0); PyObject *__pyx_v_seqMax = NULL; char *__pyx_r; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_t_2; int __pyx_t_3; int __pyx_t_4; char *__pyx_t_5; PyObject *__pyx_t_6 = NULL; PyObject *__pyx_t_7 = NULL; long __pyx_t_8; PyObject *__pyx_t_9 = NULL; PyObject *__pyx_t_10 = NULL; PY_LONG_LONG __pyx_t_11; PY_LONG_LONG __pyx_t_12; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getReferenceSequence", 0); if (__pyx_optional_args) { if (__pyx_optional_args->__pyx_n > 0) { __pyx_v_prefix = __pyx_optional_args->prefix; } } /* "chaplotype.pyx":564 * Return the refernece sequence for the region covered by this haplotype. pretty shows where the variants are. * """ * if prefix == 0 and self.referenceSequence != None: # <<<<<<<<<<<<<< * return self.referenceSequence * */ __pyx_t_1 = PyObject_RichCompare(__pyx_v_prefix, __pyx_int_0, Py_EQ); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 564; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 564; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_2) { __pyx_t_1 = PyObject_RichCompare(((PyObject *)__pyx_v_self->referenceSequence), Py_None, Py_NE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 564; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 564; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_4 = __pyx_t_3; } else { __pyx_t_4 = __pyx_t_2; } if (__pyx_t_4) { /* "chaplotype.pyx":565 * """ * if prefix == 0 and self.referenceSequence != None: * return self.referenceSequence # <<<<<<<<<<<<<< * * seqMax = self.refFile.refs[self.refName].SeqLength - 1 */ __pyx_t_5 = PyBytes_AsString(((PyObject *)__pyx_v_self->referenceSequence)); if (unlikely((!__pyx_t_5) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 565; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = __pyx_t_5; goto __pyx_L0; goto __pyx_L3; } __pyx_L3:; /* "chaplotype.pyx":567 * return self.referenceSequence * * seqMax = self.refFile.refs[self.refName].SeqLength - 1 # <<<<<<<<<<<<<< * self.referenceSequence = self.refFile.getSequence(self.refName, max(0, self.startPos - prefix), min(self.endPos + prefix, seqMax)) * return self.referenceSequence */ if (unlikely(((PyObject *)__pyx_v_self->refFile->refs) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_1 = __Pyx_PyDict_GetItem(((PyObject *)__pyx_v_self->refFile->refs), ((PyObject *)__pyx_v_self->refName)); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_6 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__SeqLength); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyNumber_Subtract(__pyx_t_6, __pyx_int_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_v_seqMax = __pyx_t_1; __pyx_t_1 = 0; /* "chaplotype.pyx":568 * * seqMax = self.refFile.refs[self.refName].SeqLength - 1 * self.referenceSequence = self.refFile.getSequence(self.refName, max(0, self.startPos - prefix), min(self.endPos + prefix, seqMax)) # <<<<<<<<<<<<<< * return self.referenceSequence * */ __pyx_t_1 = ((PyObject *)__pyx_v_self->refName); __Pyx_INCREF(__pyx_t_1); __pyx_t_6 = PyInt_FromLong(__pyx_v_self->startPos); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_7 = PyNumber_Subtract(__pyx_t_6, __pyx_v_prefix); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_8 = 0; __pyx_t_9 = PyInt_FromLong(__pyx_t_8); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_9); __pyx_t_10 = PyObject_RichCompare(__pyx_t_7, __pyx_t_9, Py_GT); __Pyx_XGOTREF(__pyx_t_10); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_10); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; if (__pyx_t_4) { __Pyx_INCREF(__pyx_t_7); __pyx_t_6 = __pyx_t_7; } else { __pyx_t_10 = PyInt_FromLong(__pyx_t_8); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __pyx_t_6 = __pyx_t_10; __pyx_t_10 = 0; } __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_11 = __Pyx_PyInt_AsLongLong(__pyx_t_6); if (unlikely((__pyx_t_11 == (PY_LONG_LONG)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __Pyx_INCREF(__pyx_v_seqMax); __pyx_t_6 = __pyx_v_seqMax; __pyx_t_7 = PyInt_FromLong(__pyx_v_self->endPos); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __pyx_t_10 = PyNumber_Add(__pyx_t_7, __pyx_v_prefix); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_9 = PyObject_RichCompare(__pyx_t_6, __pyx_t_10, Py_LT); __Pyx_XGOTREF(__pyx_t_9); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_9); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; if (__pyx_t_4) { __Pyx_INCREF(__pyx_t_6); __pyx_t_7 = __pyx_t_6; } else { __Pyx_INCREF(__pyx_t_10); __pyx_t_7 = __pyx_t_10; } __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_12 = __Pyx_PyInt_AsLongLong(__pyx_t_7); if (unlikely((__pyx_t_12 == (PY_LONG_LONG)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_7 = ((PyObject *)((struct __pyx_vtabstruct_9fastafile_FastaFile *)__pyx_v_self->refFile->__pyx_vtab)->getSequence(__pyx_v_self->refFile, ((PyObject*)__pyx_t_1), __pyx_t_11, __pyx_t_12)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 568; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_GIVEREF(__pyx_t_7); __Pyx_GOTREF(__pyx_v_self->referenceSequence); __Pyx_DECREF(((PyObject *)__pyx_v_self->referenceSequence)); __pyx_v_self->referenceSequence = ((PyObject*)__pyx_t_7); __pyx_t_7 = 0; /* "chaplotype.pyx":569 * seqMax = self.refFile.refs[self.refName].SeqLength - 1 * self.referenceSequence = self.refFile.getSequence(self.refName, max(0, self.startPos - prefix), min(self.endPos + prefix, seqMax)) * return self.referenceSequence # <<<<<<<<<<<<<< * * cdef char* getMutatedSequence(self): */ __pyx_t_5 = PyBytes_AsString(((PyObject *)__pyx_v_self->referenceSequence)); if (unlikely((!__pyx_t_5) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 569; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = __pyx_t_5; goto __pyx_L0; __pyx_r = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_7); __Pyx_XDECREF(__pyx_t_9); __Pyx_XDECREF(__pyx_t_10); __Pyx_WriteUnraisable("chaplotype.Haplotype.getReferenceSequence", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_seqMax); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":571 * return self.referenceSequence * * cdef char* getMutatedSequence(self): # <<<<<<<<<<<<<< * """ * Return the reference sequence mutated with all the variants being */ static char *__pyx_f_10chaplotype_9Haplotype_getMutatedSequence(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self) { struct __pyx_obj_7variant_Variant *__pyx_v_v = 0; struct __pyx_obj_7variant_Variant *__pyx_v_firstVar = 0; PyObject *__pyx_v_currentPos = NULL; PyObject *__pyx_v_bitsOfMutatedSeq = NULL; char *__pyx_r; __Pyx_RefNannyDeclarations int __pyx_t_1; PyObject *__pyx_t_2 = NULL; PY_LONG_LONG __pyx_t_3; PyObject *__pyx_t_4 = NULL; Py_ssize_t __pyx_t_5; PyObject *__pyx_t_6 = NULL; int __pyx_t_7; char *__pyx_t_8; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getMutatedSequence", 0); /* "chaplotype.pyx":584 * cdef Variant firstVar * * if self.haplotypeSequence is None: # <<<<<<<<<<<<<< * * currentPos = self.startPos */ __pyx_t_1 = (__pyx_v_self->haplotypeSequence == ((PyObject*)Py_None)); if (__pyx_t_1) { /* "chaplotype.pyx":586 * if self.haplotypeSequence is None: * * currentPos = self.startPos # <<<<<<<<<<<<<< * * # Get sequence up to one base before the first variant */ __pyx_t_2 = PyInt_FromLong(__pyx_v_self->startPos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 586; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_v_currentPos = __pyx_t_2; __pyx_t_2 = 0; /* "chaplotype.pyx":589 * * # Get sequence up to one base before the first variant * firstVar = self.variants[0] # <<<<<<<<<<<<<< * bitsOfMutatedSeq = [self.refFile.getSequence(self.refName, currentPos, firstVar.refPos)] * currentPos = firstVar.refPos */ if (unlikely(((PyObject *)__pyx_v_self->variants) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } if (!(likely(((PyTuple_GET_ITEM(__pyx_v_self->variants, 0)) == Py_None) || likely(__Pyx_TypeTest(PyTuple_GET_ITEM(__pyx_v_self->variants, 0), __pyx_ptype_7variant_Variant))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 589; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = PyTuple_GET_ITEM(__pyx_v_self->variants, 0); __Pyx_INCREF(__pyx_t_2); __pyx_v_firstVar = ((struct __pyx_obj_7variant_Variant *)__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":590 * # Get sequence up to one base before the first variant * firstVar = self.variants[0] * bitsOfMutatedSeq = [self.refFile.getSequence(self.refName, currentPos, firstVar.refPos)] # <<<<<<<<<<<<<< * currentPos = firstVar.refPos * */ __pyx_t_2 = ((PyObject *)__pyx_v_self->refName); __Pyx_INCREF(__pyx_t_2); __pyx_t_3 = __Pyx_PyInt_AsLongLong(__pyx_v_currentPos); if (unlikely((__pyx_t_3 == (PY_LONG_LONG)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 590; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_4 = ((PyObject *)((struct __pyx_vtabstruct_9fastafile_FastaFile *)__pyx_v_self->refFile->__pyx_vtab)->getSequence(__pyx_v_self->refFile, ((PyObject*)__pyx_t_2), __pyx_t_3, __pyx_v_firstVar->refPos)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 590; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 590; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); PyList_SET_ITEM(__pyx_t_2, 0, __pyx_t_4); __Pyx_GIVEREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_v_bitsOfMutatedSeq = __pyx_t_2; __pyx_t_2 = 0; /* "chaplotype.pyx":591 * firstVar = self.variants[0] * bitsOfMutatedSeq = [self.refFile.getSequence(self.refName, currentPos, firstVar.refPos)] * currentPos = firstVar.refPos # <<<<<<<<<<<<<< * * for v in self.variants: */ __pyx_t_2 = PyInt_FromLong(__pyx_v_firstVar->refPos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 591; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_v_currentPos); __pyx_v_currentPos = __pyx_t_2; __pyx_t_2 = 0; /* "chaplotype.pyx":593 * currentPos = firstVar.refPos * * for v in self.variants: # <<<<<<<<<<<<<< * * # Move up to one base before the next variant, if we're not already there. */ if (unlikely(((PyObject *)__pyx_v_self->variants) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 593; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_2 = ((PyObject *)__pyx_v_self->variants); __Pyx_INCREF(__pyx_t_2); __pyx_t_5 = 0; for (;;) { if (__pyx_t_5 >= PyTuple_GET_SIZE(__pyx_t_2)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_4 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_5); __Pyx_INCREF(__pyx_t_4); __pyx_t_5++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 593; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_4 = PySequence_ITEM(__pyx_t_2, __pyx_t_5); __pyx_t_5++; if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 593; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_7variant_Variant))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 593; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_XDECREF(((PyObject *)__pyx_v_v)); __pyx_v_v = ((struct __pyx_obj_7variant_Variant *)__pyx_t_4); __pyx_t_4 = 0; /* "chaplotype.pyx":596 * * # Move up to one base before the next variant, if we're not already there. * if v.refPos > currentPos: # <<<<<<<<<<<<<< * bitsOfMutatedSeq.append(self.refFile.getSequence(self.refName, currentPos, v.refPos)) * currentPos = v.refPos */ __pyx_t_4 = PyInt_FromLong(__pyx_v_v->refPos); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 596; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_t_6 = PyObject_RichCompare(__pyx_t_4, __pyx_v_currentPos, Py_GT); __Pyx_XGOTREF(__pyx_t_6); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 596; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 596; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (__pyx_t_1) { /* "chaplotype.pyx":597 * # Move up to one base before the next variant, if we're not already there. * if v.refPos > currentPos: * bitsOfMutatedSeq.append(self.refFile.getSequence(self.refName, currentPos, v.refPos)) # <<<<<<<<<<<<<< * currentPos = v.refPos * */ __pyx_t_6 = ((PyObject *)__pyx_v_self->refName); __Pyx_INCREF(__pyx_t_6); __pyx_t_3 = __Pyx_PyInt_AsLongLong(__pyx_v_currentPos); if (unlikely((__pyx_t_3 == (PY_LONG_LONG)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 597; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_4 = ((PyObject *)((struct __pyx_vtabstruct_9fastafile_FastaFile *)__pyx_v_self->refFile->__pyx_vtab)->getSequence(__pyx_v_self->refFile, ((PyObject*)__pyx_t_6), __pyx_t_3, __pyx_v_v->refPos)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 597; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_7 = PyList_Append(__pyx_v_bitsOfMutatedSeq, __pyx_t_4); if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 597; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; /* "chaplotype.pyx":598 * if v.refPos > currentPos: * bitsOfMutatedSeq.append(self.refFile.getSequence(self.refName, currentPos, v.refPos)) * currentPos = v.refPos # <<<<<<<<<<<<<< * * # SNP/Mult-SNP/Complex */ __pyx_t_4 = PyInt_FromLong(__pyx_v_v->refPos); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 598; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_v_currentPos); __pyx_v_currentPos = __pyx_t_4; __pyx_t_4 = 0; goto __pyx_L6; } __pyx_L6:; /* "chaplotype.pyx":601 * * # SNP/Mult-SNP/Complex * if v.nAdded == v.nRemoved: # <<<<<<<<<<<<<< * bitsOfMutatedSeq.append(v.added) * currentPos += v.nRemoved */ __pyx_t_1 = (__pyx_v_v->nAdded == __pyx_v_v->nRemoved); if (__pyx_t_1) { /* "chaplotype.pyx":602 * # SNP/Mult-SNP/Complex * if v.nAdded == v.nRemoved: * bitsOfMutatedSeq.append(v.added) # <<<<<<<<<<<<<< * currentPos += v.nRemoved * */ __pyx_t_4 = ((PyObject *)__pyx_v_v->added); __Pyx_INCREF(__pyx_t_4); __pyx_t_7 = PyList_Append(__pyx_v_bitsOfMutatedSeq, __pyx_t_4); if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 602; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; /* "chaplotype.pyx":603 * if v.nAdded == v.nRemoved: * bitsOfMutatedSeq.append(v.added) * currentPos += v.nRemoved # <<<<<<<<<<<<<< * * # Arbitrary sequence replacement */ __pyx_t_4 = PyInt_FromLong(__pyx_v_v->nRemoved); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 603; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_t_6 = PyNumber_InPlaceAdd(__pyx_v_currentPos, __pyx_t_4); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 603; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_DECREF(__pyx_v_currentPos); __pyx_v_currentPos = __pyx_t_6; __pyx_t_6 = 0; goto __pyx_L7; } /*else*/ { /* "chaplotype.pyx":607 * # Arbitrary sequence replacement * else: * if v.refPos == currentPos: # <<<<<<<<<<<<<< * bitsOfMutatedSeq.append(self.refFile.getCharacter(self.refName, v.refPos)) * currentPos += 1 */ __pyx_t_6 = PyInt_FromLong(__pyx_v_v->refPos); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 607; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_4 = PyObject_RichCompare(__pyx_t_6, __pyx_v_currentPos, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 607; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 607; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (__pyx_t_1) { /* "chaplotype.pyx":608 * else: * if v.refPos == currentPos: * bitsOfMutatedSeq.append(self.refFile.getCharacter(self.refName, v.refPos)) # <<<<<<<<<<<<<< * currentPos += 1 * */ __pyx_t_4 = ((PyObject *)__pyx_v_self->refName); __Pyx_INCREF(__pyx_t_4); __pyx_t_6 = ((PyObject *)((struct __pyx_vtabstruct_9fastafile_FastaFile *)__pyx_v_self->refFile->__pyx_vtab)->getCharacter(__pyx_v_self->refFile, ((PyObject*)__pyx_t_4), __pyx_v_v->refPos)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 608; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_7 = PyList_Append(__pyx_v_bitsOfMutatedSeq, __pyx_t_6); if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 608; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; /* "chaplotype.pyx":609 * if v.refPos == currentPos: * bitsOfMutatedSeq.append(self.refFile.getCharacter(self.refName, v.refPos)) * currentPos += 1 # <<<<<<<<<<<<<< * * currentPos += v.nRemoved */ __pyx_t_6 = PyNumber_InPlaceAdd(__pyx_v_currentPos, __pyx_int_1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 609; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_v_currentPos); __pyx_v_currentPos = __pyx_t_6; __pyx_t_6 = 0; goto __pyx_L8; } __pyx_L8:; /* "chaplotype.pyx":611 * currentPos += 1 * * currentPos += v.nRemoved # <<<<<<<<<<<<<< * bitsOfMutatedSeq.append(v.added) * */ __pyx_t_6 = PyInt_FromLong(__pyx_v_v->nRemoved); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 611; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_4 = PyNumber_InPlaceAdd(__pyx_v_currentPos, __pyx_t_6); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 611; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __Pyx_DECREF(__pyx_v_currentPos); __pyx_v_currentPos = __pyx_t_4; __pyx_t_4 = 0; /* "chaplotype.pyx":612 * * currentPos += v.nRemoved * bitsOfMutatedSeq.append(v.added) # <<<<<<<<<<<<<< * * # Is this ok when currentPos == endPos? */ __pyx_t_4 = ((PyObject *)__pyx_v_v->added); __Pyx_INCREF(__pyx_t_4); __pyx_t_7 = PyList_Append(__pyx_v_bitsOfMutatedSeq, __pyx_t_4); if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 612; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; } __pyx_L7:; } __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":615 * * # Is this ok when currentPos == endPos? * if currentPos < self.endPos: # <<<<<<<<<<<<<< * bitsOfMutatedSeq.append(self.refFile.getSequence(self.refName, currentPos, self.endPos)) * */ __pyx_t_2 = PyInt_FromLong(__pyx_v_self->endPos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 615; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_4 = PyObject_RichCompare(__pyx_v_currentPos, __pyx_t_2, Py_LT); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 615; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 615; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (__pyx_t_1) { /* "chaplotype.pyx":616 * # Is this ok when currentPos == endPos? * if currentPos < self.endPos: * bitsOfMutatedSeq.append(self.refFile.getSequence(self.refName, currentPos, self.endPos)) # <<<<<<<<<<<<<< * * self.haplotypeSequence = ''.join(bitsOfMutatedSeq) */ __pyx_t_4 = ((PyObject *)__pyx_v_self->refName); __Pyx_INCREF(__pyx_t_4); __pyx_t_3 = __Pyx_PyInt_AsLongLong(__pyx_v_currentPos); if (unlikely((__pyx_t_3 == (PY_LONG_LONG)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 616; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_2 = ((PyObject *)((struct __pyx_vtabstruct_9fastafile_FastaFile *)__pyx_v_self->refFile->__pyx_vtab)->getSequence(__pyx_v_self->refFile, ((PyObject*)__pyx_t_4), __pyx_t_3, __pyx_v_self->endPos)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 616; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_7 = PyList_Append(__pyx_v_bitsOfMutatedSeq, __pyx_t_2); if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 616; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; goto __pyx_L9; } __pyx_L9:; /* "chaplotype.pyx":618 * bitsOfMutatedSeq.append(self.refFile.getSequence(self.refName, currentPos, self.endPos)) * * self.haplotypeSequence = ''.join(bitsOfMutatedSeq) # <<<<<<<<<<<<<< * * return self.haplotypeSequence */ __pyx_t_2 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_9), __pyx_n_s__join); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 618; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 618; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_INCREF(((PyObject *)__pyx_v_bitsOfMutatedSeq)); PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_v_bitsOfMutatedSeq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_bitsOfMutatedSeq)); __pyx_t_6 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 618; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 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 = 618; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GIVEREF(__pyx_t_6); __Pyx_GOTREF(__pyx_v_self->haplotypeSequence); __Pyx_DECREF(((PyObject *)__pyx_v_self->haplotypeSequence)); __pyx_v_self->haplotypeSequence = ((PyObject*)__pyx_t_6); __pyx_t_6 = 0; goto __pyx_L3; } __pyx_L3:; /* "chaplotype.pyx":620 * self.haplotypeSequence = ''.join(bitsOfMutatedSeq) * * return self.haplotypeSequence # <<<<<<<<<<<<<< * * cdef list homopolymerLengths( self ): */ __pyx_t_8 = PyBytes_AsString(((PyObject *)__pyx_v_self->haplotypeSequence)); if (unlikely((!__pyx_t_8) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 620; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_r = __pyx_t_8; goto __pyx_L0; __pyx_r = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_6); __Pyx_WriteUnraisable("chaplotype.Haplotype.getMutatedSequence", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF((PyObject *)__pyx_v_v); __Pyx_XDECREF((PyObject *)__pyx_v_firstVar); __Pyx_XDECREF(__pyx_v_currentPos); __Pyx_XDECREF(__pyx_v_bitsOfMutatedSeq); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":622 * return self.haplotypeSequence * * cdef list homopolymerLengths( self ): # <<<<<<<<<<<<<< * """ * Return a list of homopolymer lengths for the sequence surrounding */ static PyObject *__pyx_f_10chaplotype_9Haplotype_homopolymerLengths(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self) { PyObject *__pyx_v_vsf = 0; PyObject *__pyx_v_v = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; Py_ssize_t __pyx_t_2; int __pyx_t_3; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("homopolymerLengths", 0); /* "chaplotype.pyx":627 * each variant in this haplotype. * """ * cdef tuple vsf = self.variants # <<<<<<<<<<<<<< * if len( vsf ) == 0: * return [] */ __pyx_t_1 = ((PyObject *)__pyx_v_self->variants); __Pyx_INCREF(__pyx_t_1); __pyx_v_vsf = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":628 * """ * cdef tuple vsf = self.variants * if len( vsf ) == 0: # <<<<<<<<<<<<<< * return [] * else: */ if (unlikely(((PyObject *)__pyx_v_vsf) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 628; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_2 = PyTuple_GET_SIZE(((PyObject *)__pyx_v_vsf)); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 628; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_3 = (__pyx_t_2 == 0); if (__pyx_t_3) { /* "chaplotype.pyx":629 * cdef tuple vsf = self.variants * if len( vsf ) == 0: * return [] # <<<<<<<<<<<<<< * else: * return [ self.homopolymerLengthForOneVariant( v ) for v in vsf ] */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 629; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; goto __pyx_L3; } /*else*/ { /* "chaplotype.pyx":631 * return [] * else: * return [ self.homopolymerLengthForOneVariant( v ) for v in vsf ] # <<<<<<<<<<<<<< * * cdef int homopolymerLengthForOneVariant(self, Variant variant): */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); if (unlikely(((PyObject *)__pyx_v_vsf) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_4 = ((PyObject *)__pyx_v_vsf); __Pyx_INCREF(__pyx_t_4); __pyx_t_2 = 0; for (;;) { if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_4)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_5 = PyTuple_GET_ITEM(__pyx_t_4, __pyx_t_2); __Pyx_INCREF(__pyx_t_5); __pyx_t_2++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_5 = PySequence_ITEM(__pyx_t_4, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif __Pyx_XDECREF(__pyx_v_v); __pyx_v_v = __pyx_t_5; __pyx_t_5 = 0; if (!(likely(((__pyx_v_v) == Py_None) || likely(__Pyx_TypeTest(__pyx_v_v, __pyx_ptype_7variant_Variant))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_5 = __pyx_v_v; __Pyx_INCREF(__pyx_t_5); __pyx_t_6 = PyInt_FromLong(((struct __pyx_vtabstruct_10chaplotype_Haplotype *)__pyx_v_self->__pyx_vtab)->homopolymerLengthForOneVariant(__pyx_v_self, ((struct __pyx_obj_7variant_Variant *)__pyx_t_5))); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; if (unlikely(__Pyx_PyList_Append(__pyx_t_1, (PyObject*)__pyx_t_6))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; } __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_INCREF(((PyObject *)__pyx_t_1)); __pyx_r = __pyx_t_1; __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; goto __pyx_L0; } __pyx_L3:; __pyx_r = ((PyObject*)Py_None); __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_AddTraceback("chaplotype.Haplotype.homopolymerLengths", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_vsf); __Pyx_XDECREF(__pyx_v_v); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":633 * return [ self.homopolymerLengthForOneVariant( v ) for v in vsf ] * * cdef int homopolymerLengthForOneVariant(self, Variant variant): # <<<<<<<<<<<<<< * """ * Calculate and return the length of the largest homopolymer */ static int __pyx_f_10chaplotype_9Haplotype_homopolymerLengthForOneVariant(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self, struct __pyx_obj_7variant_Variant *__pyx_v_variant) { PyObject *__pyx_v_varChrom = NULL; PyObject *__pyx_v_varPos = NULL; PyObject *__pyx_v_leftRefSeq = NULL; PyObject *__pyx_v_rightRefSeq = NULL; PyObject *__pyx_v_leftHpSize = NULL; PyObject *__pyx_v_rightHpSize = NULL; PyObject *__pyx_v_firstLeftChar = NULL; PyObject *__pyx_v_firstRightChar = NULL; PyObject *__pyx_v_char = NULL; int __pyx_r; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PY_LONG_LONG __pyx_t_2; PY_LONG_LONG __pyx_t_3; Py_ssize_t __pyx_t_4; int __pyx_t_5; int __pyx_t_6; int __pyx_t_7; PyObject *__pyx_t_8 = NULL; PyObject *(*__pyx_t_9)(PyObject *); PyObject *__pyx_t_10 = NULL; PyObject *__pyx_t_11 = NULL; int __pyx_t_12; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("homopolymerLengthForOneVariant", 0); /* "chaplotype.pyx":639 * left and right, and return the largest. * """ * varChrom = variant.refName # <<<<<<<<<<<<<< * varPos = variant.refPos * */ __pyx_t_1 = ((PyObject *)__pyx_v_variant->refName); __Pyx_INCREF(__pyx_t_1); __pyx_v_varChrom = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":640 * """ * varChrom = variant.refName * varPos = variant.refPos # <<<<<<<<<<<<<< * * leftRefSeq = self.refFile.getSequence(varChrom, varPos-20, varPos) */ __pyx_t_1 = PyInt_FromLong(__pyx_v_variant->refPos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_varPos = __pyx_t_1; __pyx_t_1 = 0; /* "chaplotype.pyx":642 * varPos = variant.refPos * * leftRefSeq = self.refFile.getSequence(varChrom, varPos-20, varPos) # <<<<<<<<<<<<<< * rightRefSeq = self.refFile.getSequence(varChrom, varPos+1, varPos + 21) * */ __pyx_t_1 = PyNumber_Subtract(__pyx_v_varPos, __pyx_int_20); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = __Pyx_PyInt_AsLongLong(__pyx_t_1); if (unlikely((__pyx_t_2 == (PY_LONG_LONG)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_3 = __Pyx_PyInt_AsLongLong(__pyx_v_varPos); if (unlikely((__pyx_t_3 == (PY_LONG_LONG)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_1 = ((PyObject *)((struct __pyx_vtabstruct_9fastafile_FastaFile *)__pyx_v_self->refFile->__pyx_vtab)->getSequence(__pyx_v_self->refFile, __pyx_v_varChrom, __pyx_t_2, __pyx_t_3)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_leftRefSeq = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":643 * * leftRefSeq = self.refFile.getSequence(varChrom, varPos-20, varPos) * rightRefSeq = self.refFile.getSequence(varChrom, varPos+1, varPos + 21) # <<<<<<<<<<<<<< * * if len(leftRefSeq) == 0 or len(rightRefSeq) == 0: */ __pyx_t_1 = PyNumber_Add(__pyx_v_varPos, __pyx_int_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_3 = __Pyx_PyInt_AsLongLong(__pyx_t_1); if (unlikely((__pyx_t_3 == (PY_LONG_LONG)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyNumber_Add(__pyx_v_varPos, __pyx_int_21); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = __Pyx_PyInt_AsLongLong(__pyx_t_1); if (unlikely((__pyx_t_2 == (PY_LONG_LONG)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = ((PyObject *)((struct __pyx_vtabstruct_9fastafile_FastaFile *)__pyx_v_self->refFile->__pyx_vtab)->getSequence(__pyx_v_self->refFile, __pyx_v_varChrom, __pyx_t_3, __pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 643; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_rightRefSeq = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":645 * rightRefSeq = self.refFile.getSequence(varChrom, varPos+1, varPos + 21) * * if len(leftRefSeq) == 0 or len(rightRefSeq) == 0: # <<<<<<<<<<<<<< * return 0 * */ if (unlikely(((PyObject *)__pyx_v_leftRefSeq) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 645; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_4 = PyBytes_GET_SIZE(((PyObject *)__pyx_v_leftRefSeq)); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 645; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_5 = (__pyx_t_4 == 0); if (!__pyx_t_5) { if (unlikely(((PyObject *)__pyx_v_rightRefSeq) == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 645; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_4 = PyBytes_GET_SIZE(((PyObject *)__pyx_v_rightRefSeq)); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 645; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_6 = (__pyx_t_4 == 0); __pyx_t_7 = __pyx_t_6; } else { __pyx_t_7 = __pyx_t_5; } if (__pyx_t_7) { /* "chaplotype.pyx":646 * * if len(leftRefSeq) == 0 or len(rightRefSeq) == 0: * return 0 # <<<<<<<<<<<<<< * * leftHpSize = 0 */ __pyx_r = 0; goto __pyx_L0; goto __pyx_L3; } __pyx_L3:; /* "chaplotype.pyx":648 * return 0 * * leftHpSize = 0 # <<<<<<<<<<<<<< * rightHpSize = 0 * */ __Pyx_INCREF(__pyx_int_0); __pyx_v_leftHpSize = __pyx_int_0; /* "chaplotype.pyx":649 * * leftHpSize = 0 * rightHpSize = 0 # <<<<<<<<<<<<<< * * firstLeftChar = leftRefSeq[-1] */ __Pyx_INCREF(__pyx_int_0); __pyx_v_rightHpSize = __pyx_int_0; /* "chaplotype.pyx":651 * rightHpSize = 0 * * firstLeftChar = leftRefSeq[-1] # <<<<<<<<<<<<<< * firstRightChar = rightRefSeq[0] * */ __pyx_t_1 = __Pyx_GetItemInt(((PyObject *)__pyx_v_leftRefSeq), -1, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 651; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_firstLeftChar = __pyx_t_1; __pyx_t_1 = 0; /* "chaplotype.pyx":652 * * firstLeftChar = leftRefSeq[-1] * firstRightChar = rightRefSeq[0] # <<<<<<<<<<<<<< * * for char in reversed(leftRefSeq): */ __pyx_t_1 = __Pyx_GetItemInt(((PyObject *)__pyx_v_rightRefSeq), 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 652; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_firstRightChar = __pyx_t_1; __pyx_t_1 = 0; /* "chaplotype.pyx":654 * firstRightChar = rightRefSeq[0] * * for char in reversed(leftRefSeq): # <<<<<<<<<<<<<< * if char == firstLeftChar: * leftHpSize += 1 */ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_INCREF(((PyObject *)__pyx_v_leftRefSeq)); PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_v_leftRefSeq)); __Pyx_GIVEREF(((PyObject *)__pyx_v_leftRefSeq)); __pyx_t_8 = PyObject_Call(__pyx_builtin_reversed, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; if (PyList_CheckExact(__pyx_t_8) || PyTuple_CheckExact(__pyx_t_8)) { __pyx_t_1 = __pyx_t_8; __Pyx_INCREF(__pyx_t_1); __pyx_t_4 = 0; __pyx_t_9 = NULL; } else { __pyx_t_4 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_t_8); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_9 = Py_TYPE(__pyx_t_1)->tp_iternext; } __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; for (;;) { if (!__pyx_t_9 && PyList_CheckExact(__pyx_t_1)) { if (__pyx_t_4 >= PyList_GET_SIZE(__pyx_t_1)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_8 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_4); __Pyx_INCREF(__pyx_t_8); __pyx_t_4++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_8 = PySequence_ITEM(__pyx_t_1, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else if (!__pyx_t_9 && PyTuple_CheckExact(__pyx_t_1)) { if (__pyx_t_4 >= PyTuple_GET_SIZE(__pyx_t_1)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_8 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_4); __Pyx_INCREF(__pyx_t_8); __pyx_t_4++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_8 = PySequence_ITEM(__pyx_t_1, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else { __pyx_t_8 = __pyx_t_9(__pyx_t_1); if (unlikely(!__pyx_t_8)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 654; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_8); } __Pyx_XDECREF(__pyx_v_char); __pyx_v_char = __pyx_t_8; __pyx_t_8 = 0; /* "chaplotype.pyx":655 * * for char in reversed(leftRefSeq): * if char == firstLeftChar: # <<<<<<<<<<<<<< * leftHpSize += 1 * else: */ __pyx_t_8 = PyObject_RichCompare(__pyx_v_char, __pyx_v_firstLeftChar, Py_EQ); __Pyx_XGOTREF(__pyx_t_8); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_7 = __Pyx_PyObject_IsTrue(__pyx_t_8); if (unlikely(__pyx_t_7 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 655; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; if (__pyx_t_7) { /* "chaplotype.pyx":656 * for char in reversed(leftRefSeq): * if char == firstLeftChar: * leftHpSize += 1 # <<<<<<<<<<<<<< * else: * break */ __pyx_t_8 = PyNumber_InPlaceAdd(__pyx_v_leftHpSize, __pyx_int_1); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 656; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __Pyx_DECREF(__pyx_v_leftHpSize); __pyx_v_leftHpSize = __pyx_t_8; __pyx_t_8 = 0; goto __pyx_L6; } /*else*/ { /* "chaplotype.pyx":658 * leftHpSize += 1 * else: * break # <<<<<<<<<<<<<< * * for char in rightRefSeq: */ goto __pyx_L5_break; } __pyx_L6:; } __pyx_L5_break:; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":660 * break * * for char in rightRefSeq: # <<<<<<<<<<<<<< * if char == firstRightChar: * rightHpSize += 1 */ __pyx_t_1 = PyObject_GetIter(((PyObject *)__pyx_v_rightRefSeq)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_9 = Py_TYPE(__pyx_t_1)->tp_iternext; for (;;) { { __pyx_t_8 = __pyx_t_9(__pyx_t_1); if (unlikely(!__pyx_t_8)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_8); } __Pyx_XDECREF(__pyx_v_char); __pyx_v_char = __pyx_t_8; __pyx_t_8 = 0; /* "chaplotype.pyx":661 * * for char in rightRefSeq: * if char == firstRightChar: # <<<<<<<<<<<<<< * rightHpSize += 1 * else: */ __pyx_t_8 = PyObject_RichCompare(__pyx_v_char, __pyx_v_firstRightChar, Py_EQ); __Pyx_XGOTREF(__pyx_t_8); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 661; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_7 = __Pyx_PyObject_IsTrue(__pyx_t_8); if (unlikely(__pyx_t_7 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 661; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; if (__pyx_t_7) { /* "chaplotype.pyx":662 * for char in rightRefSeq: * if char == firstRightChar: * rightHpSize += 1 # <<<<<<<<<<<<<< * else: * break */ __pyx_t_8 = PyNumber_InPlaceAdd(__pyx_v_rightHpSize, __pyx_int_1); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 662; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __Pyx_DECREF(__pyx_v_rightHpSize); __pyx_v_rightHpSize = __pyx_t_8; __pyx_t_8 = 0; goto __pyx_L9; } /*else*/ { /* "chaplotype.pyx":664 * rightHpSize += 1 * else: * break # <<<<<<<<<<<<<< * * if firstLeftChar != firstRightChar: */ goto __pyx_L8_break; } __pyx_L9:; } __pyx_L8_break:; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":666 * break * * if firstLeftChar != firstRightChar: # <<<<<<<<<<<<<< * return max(leftHpSize, rightHpSize) * else: */ __pyx_t_1 = PyObject_RichCompare(__pyx_v_firstLeftChar, __pyx_v_firstRightChar, Py_NE); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 666; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_7 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_7 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 666; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_7) { /* "chaplotype.pyx":667 * * if firstLeftChar != firstRightChar: * return max(leftHpSize, rightHpSize) # <<<<<<<<<<<<<< * else: * return leftHpSize + rightHpSize */ __Pyx_INCREF(__pyx_v_rightHpSize); __pyx_t_1 = __pyx_v_rightHpSize; __Pyx_INCREF(__pyx_v_leftHpSize); __pyx_t_8 = __pyx_v_leftHpSize; __pyx_t_11 = PyObject_RichCompare(__pyx_t_1, __pyx_t_8, Py_GT); __Pyx_XGOTREF(__pyx_t_11); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 667; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_7 = __Pyx_PyObject_IsTrue(__pyx_t_11); if (unlikely(__pyx_t_7 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 667; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; if (__pyx_t_7) { __Pyx_INCREF(__pyx_t_1); __pyx_t_10 = __pyx_t_1; } else { __Pyx_INCREF(__pyx_t_8); __pyx_t_10 = __pyx_t_8; } __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_12 = __Pyx_PyInt_AsInt(__pyx_t_10); if (unlikely((__pyx_t_12 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 667; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; __pyx_r = __pyx_t_12; goto __pyx_L0; goto __pyx_L10; } /*else*/ { /* "chaplotype.pyx":669 * return max(leftHpSize, rightHpSize) * else: * return leftHpSize + rightHpSize # <<<<<<<<<<<<<< * * cdef bytes getSequenceContext(self, Variant variant): */ __pyx_t_10 = PyNumber_Add(__pyx_v_leftHpSize, __pyx_v_rightHpSize); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 669; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __pyx_t_12 = __Pyx_PyInt_AsInt(__pyx_t_10); if (unlikely((__pyx_t_12 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 669; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; __pyx_r = __pyx_t_12; goto __pyx_L0; } __pyx_L10:; __pyx_r = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_8); __Pyx_XDECREF(__pyx_t_10); __Pyx_XDECREF(__pyx_t_11); __Pyx_WriteUnraisable("chaplotype.Haplotype.homopolymerLengthForOneVariant", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_varChrom); __Pyx_XDECREF(__pyx_v_varPos); __Pyx_XDECREF(__pyx_v_leftRefSeq); __Pyx_XDECREF(__pyx_v_rightRefSeq); __Pyx_XDECREF(__pyx_v_leftHpSize); __Pyx_XDECREF(__pyx_v_rightHpSize); __Pyx_XDECREF(__pyx_v_firstLeftChar); __Pyx_XDECREF(__pyx_v_firstRightChar); __Pyx_XDECREF(__pyx_v_char); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":671 * return leftHpSize + rightHpSize * * cdef bytes getSequenceContext(self, Variant variant): # <<<<<<<<<<<<<< * """ * Return the sequence surrounding this variant's position. */ static PyObject *__pyx_f_10chaplotype_9Haplotype_getSequenceContext(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self, struct __pyx_obj_7variant_Variant *__pyx_v_variant) { PyObject *__pyx_v_varChrom = NULL; PyObject *__pyx_v_varPos = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PY_LONG_LONG __pyx_t_2; PY_LONG_LONG __pyx_t_3; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("getSequenceContext", 0); /* "chaplotype.pyx":675 * Return the sequence surrounding this variant's position. * """ * varChrom = variant.refName # <<<<<<<<<<<<<< * varPos = variant.refPos * return self.refFile.getSequence(varChrom, varPos-10, varPos + 11) */ __pyx_t_1 = ((PyObject *)__pyx_v_variant->refName); __Pyx_INCREF(__pyx_t_1); __pyx_v_varChrom = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":676 * """ * varChrom = variant.refName * varPos = variant.refPos # <<<<<<<<<<<<<< * return self.refFile.getSequence(varChrom, varPos-10, varPos + 11) * */ __pyx_t_1 = PyInt_FromLong(__pyx_v_variant->refPos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 676; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_varPos = __pyx_t_1; __pyx_t_1 = 0; /* "chaplotype.pyx":677 * varChrom = variant.refName * varPos = variant.refPos * return self.refFile.getSequence(varChrom, varPos-10, varPos + 11) # <<<<<<<<<<<<<< * * cdef dict vcfINFO(self): */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __pyx_t_1 = PyNumber_Subtract(__pyx_v_varPos, __pyx_int_10); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 677; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = __Pyx_PyInt_AsLongLong(__pyx_t_1); if (unlikely((__pyx_t_2 == (PY_LONG_LONG)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 677; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyNumber_Add(__pyx_v_varPos, __pyx_int_11); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 677; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_3 = __Pyx_PyInt_AsLongLong(__pyx_t_1); if (unlikely((__pyx_t_3 == (PY_LONG_LONG)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 677; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = ((PyObject *)((struct __pyx_vtabstruct_9fastafile_FastaFile *)__pyx_v_self->refFile->__pyx_vtab)->getSequence(__pyx_v_self->refFile, __pyx_v_varChrom, __pyx_t_2, __pyx_t_3)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 677; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __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_AddTraceback("chaplotype.Haplotype.getSequenceContext", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_varChrom); __Pyx_XDECREF(__pyx_v_varPos); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":679 * return self.refFile.getSequence(varChrom, varPos-10, varPos + 11) * * cdef dict vcfINFO(self): # <<<<<<<<<<<<<< * """ * Information to go in the vcf file INFO field - a two level dictionary of variant - field - value */ static PyObject *__pyx_f_10chaplotype_9Haplotype_vcfINFO(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self) { struct __pyx_obj_7variant_Variant *__pyx_v_variant = 0; PyObject *__pyx_v_INFO = 0; PyObject *__pyx_v_homopolymerLengths = NULL; PyObject *__pyx_v_vsf = NULL; PyObject *__pyx_v_varIndex = NULL; PyObject *__pyx_v_HP = NULL; PyObject *__pyx_v_SC = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; Py_ssize_t __pyx_t_3; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("vcfINFO", 0); /* "chaplotype.pyx":691 * """ * cdef Variant variant * cdef dict INFO = {} # <<<<<<<<<<<<<< * * homopolymerLengths = self.homopolymerLengths() */ __pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 691; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_1)); __pyx_v_INFO = __pyx_t_1; __pyx_t_1 = 0; /* "chaplotype.pyx":693 * cdef dict INFO = {} * * homopolymerLengths = self.homopolymerLengths() # <<<<<<<<<<<<<< * vsf = self.variants * */ __pyx_t_1 = ((PyObject *)((struct __pyx_vtabstruct_10chaplotype_Haplotype *)__pyx_v_self->__pyx_vtab)->homopolymerLengths(__pyx_v_self)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 693; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_v_homopolymerLengths = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":694 * * homopolymerLengths = self.homopolymerLengths() * vsf = self.variants # <<<<<<<<<<<<<< * * for varIndex, variant in enumerate( self.variants ): */ __pyx_t_1 = ((PyObject *)__pyx_v_self->variants); __Pyx_INCREF(__pyx_t_1); __pyx_v_vsf = ((PyObject*)__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":696 * vsf = self.variants * * for varIndex, variant in enumerate( self.variants ): # <<<<<<<<<<<<<< * HP = homopolymerLengths[varIndex] * SC = self.getSequenceContext(variant) */ __Pyx_INCREF(__pyx_int_0); __pyx_t_1 = __pyx_int_0; __pyx_t_2 = ((PyObject *)__pyx_v_self->variants); __Pyx_INCREF(__pyx_t_2); __pyx_t_3 = 0; for (;;) { if (__pyx_t_3 >= PyTuple_GET_SIZE(__pyx_t_2)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_4 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_3); __Pyx_INCREF(__pyx_t_4); __pyx_t_3++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 696; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_4 = PySequence_ITEM(__pyx_t_2, __pyx_t_3); __pyx_t_3++; if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 696; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif if (!(likely(((__pyx_t_4) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_4, __pyx_ptype_7variant_Variant))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 696; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_XDECREF(((PyObject *)__pyx_v_variant)); __pyx_v_variant = ((struct __pyx_obj_7variant_Variant *)__pyx_t_4); __pyx_t_4 = 0; __Pyx_INCREF(__pyx_t_1); __Pyx_XDECREF(__pyx_v_varIndex); __pyx_v_varIndex = __pyx_t_1; __pyx_t_4 = PyNumber_Add(__pyx_t_1, __pyx_int_1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 696; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = __pyx_t_4; __pyx_t_4 = 0; /* "chaplotype.pyx":697 * * for varIndex, variant in enumerate( self.variants ): * HP = homopolymerLengths[varIndex] # <<<<<<<<<<<<<< * SC = self.getSequenceContext(variant) * */ if (unlikely(((PyObject *)__pyx_v_homopolymerLengths) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 697; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_4 = PyObject_GetItem(((PyObject *)__pyx_v_homopolymerLengths), __pyx_v_varIndex); if (!__pyx_t_4) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 697; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_XDECREF(__pyx_v_HP); __pyx_v_HP = __pyx_t_4; __pyx_t_4 = 0; /* "chaplotype.pyx":698 * for varIndex, variant in enumerate( self.variants ): * HP = homopolymerLengths[varIndex] * SC = self.getSequenceContext(variant) # <<<<<<<<<<<<<< * * INFO[vsf[varIndex]] = {'HP':[HP], 'SC':[SC]} */ __pyx_t_4 = ((PyObject *)((struct __pyx_vtabstruct_10chaplotype_Haplotype *)__pyx_v_self->__pyx_vtab)->getSequenceContext(__pyx_v_self, __pyx_v_variant)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_XDECREF(((PyObject *)__pyx_v_SC)); __pyx_v_SC = ((PyObject*)__pyx_t_4); __pyx_t_4 = 0; /* "chaplotype.pyx":700 * SC = self.getSequenceContext(variant) * * INFO[vsf[varIndex]] = {'HP':[HP], 'SC':[SC]} # <<<<<<<<<<<<<< * * return INFO */ __pyx_t_4 = PyDict_New(); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 700; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_4)); __pyx_t_5 = PyList_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 700; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_INCREF(__pyx_v_HP); PyList_SET_ITEM(__pyx_t_5, 0, __pyx_v_HP); __Pyx_GIVEREF(__pyx_v_HP); if (PyDict_SetItem(__pyx_t_4, ((PyObject *)__pyx_n_s__HP), ((PyObject *)__pyx_t_5)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 700; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __pyx_t_5 = PyList_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 700; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_INCREF(((PyObject *)__pyx_v_SC)); PyList_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_v_SC)); __Pyx_GIVEREF(((PyObject *)__pyx_v_SC)); if (PyDict_SetItem(__pyx_t_4, ((PyObject *)__pyx_n_s__SC), ((PyObject *)__pyx_t_5)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 700; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; if (unlikely(((PyObject *)__pyx_v_vsf) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 700; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_5 = PyObject_GetItem(((PyObject *)__pyx_v_vsf), __pyx_v_varIndex); if (!__pyx_t_5) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 700; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(((PyObject *)__pyx_v_INFO), __pyx_t_5, ((PyObject *)__pyx_t_4)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 700; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; } __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":702 * INFO[vsf[varIndex]] = {'HP':[HP], 'SC':[SC]} * * return INFO # <<<<<<<<<<<<<< * * def __str__(self): */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __Pyx_INCREF(((PyObject *)__pyx_v_INFO)); __pyx_r = __pyx_v_INFO; 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_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_AddTraceback("chaplotype.Haplotype.vcfINFO", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF((PyObject *)__pyx_v_variant); __Pyx_XDECREF(__pyx_v_INFO); __Pyx_XDECREF(__pyx_v_homopolymerLengths); __Pyx_XDECREF(__pyx_v_vsf); __Pyx_XDECREF(__pyx_v_varIndex); __Pyx_XDECREF(__pyx_v_HP); __Pyx_XDECREF(__pyx_v_SC); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static PyObject *__pyx_pw_10chaplotype_9Haplotype_11__str__(PyObject *__pyx_v_self); /*proto*/ static char __pyx_doc_10chaplotype_9Haplotype_10__str__[] = "\n Generate a string representation of the haplotype. This is useful for\n debugging.\n "; #if CYTHON_COMPILING_IN_CPYTHON struct wrapperbase __pyx_wrapperbase_10chaplotype_9Haplotype_10__str__; #endif static PyObject *__pyx_pw_10chaplotype_9Haplotype_11__str__(PyObject *__pyx_v_self) { PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__str__ (wrapper)", 0); __pyx_r = __pyx_pf_10chaplotype_9Haplotype_10__str__(((struct __pyx_obj_10chaplotype_Haplotype *)__pyx_v_self)); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":704 * return INFO * * def __str__(self): # <<<<<<<<<<<<<< * """ * Generate a string representation of the haplotype. This is useful for */ static PyObject *__pyx_pf_10chaplotype_9Haplotype_10__str__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self) { PyObject *__pyx_v_vars = NULL; PyObject *__pyx_v_string = NULL; PyObject *__pyx_v_v = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; Py_ssize_t __pyx_t_2; int __pyx_t_3; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__str__", 0); /* "chaplotype.pyx":709 * debugging. * """ * if len(self.variants) == 0: # <<<<<<<<<<<<<< * return ' Haplotype(*Reference*) %s:%s-%s' %(self.refName, self.startPos, self.endPos) * */ __pyx_t_1 = ((PyObject *)__pyx_v_self->variants); __Pyx_INCREF(__pyx_t_1); if (unlikely(__pyx_t_1 == Py_None)) { PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 709; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_2 = PyTuple_GET_SIZE(__pyx_t_1); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 709; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_3 = (__pyx_t_2 == 0); if (__pyx_t_3) { /* "chaplotype.pyx":710 * """ * if len(self.variants) == 0: * return ' Haplotype(*Reference*) %s:%s-%s' %(self.refName, self.startPos, self.endPos) # <<<<<<<<<<<<<< * * vars = [str(v) for v in self.variants] */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = PyInt_FromLong(__pyx_v_self->startPos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 710; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_4 = PyInt_FromLong(__pyx_v_self->endPos); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 710; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __pyx_t_5 = PyTuple_New(3); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 710; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_INCREF(((PyObject *)__pyx_v_self->refName)); PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_v_self->refName)); __Pyx_GIVEREF(((PyObject *)__pyx_v_self->refName)); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_1); __Pyx_GIVEREF(__pyx_t_1); PyTuple_SET_ITEM(__pyx_t_5, 2, __pyx_t_4); __Pyx_GIVEREF(__pyx_t_4); __pyx_t_1 = 0; __pyx_t_4 = 0; __pyx_t_4 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_18), ((PyObject *)__pyx_t_5)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 710; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_4)); __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __pyx_r = ((PyObject *)__pyx_t_4); __pyx_t_4 = 0; goto __pyx_L0; goto __pyx_L3; } __pyx_L3:; /* "chaplotype.pyx":712 * return ' Haplotype(*Reference*) %s:%s-%s' %(self.refName, self.startPos, self.endPos) * * vars = [str(v) for v in self.variants] # <<<<<<<<<<<<<< * string = " Haplotype(" + ",".join(vars) + ") %s:%s-%s" %(self.refName, self.startPos, self.endPos) * */ __pyx_t_4 = PyList_New(0); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); if (unlikely(((PyObject *)__pyx_v_self->variants) == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } __pyx_t_5 = ((PyObject *)__pyx_v_self->variants); __Pyx_INCREF(__pyx_t_5); __pyx_t_2 = 0; for (;;) { if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_5)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_5, __pyx_t_2); __Pyx_INCREF(__pyx_t_1); __pyx_t_2++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_1 = PySequence_ITEM(__pyx_t_5, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif __Pyx_XDECREF(__pyx_v_v); __pyx_v_v = __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 = 712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_INCREF(__pyx_v_v); PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_v); __Pyx_GIVEREF(__pyx_v_v); __pyx_t_6 = PyObject_Call(((PyObject *)((PyObject*)(&PyString_Type))), ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; if (unlikely(__Pyx_PyList_Append(__pyx_t_4, (PyObject*)__pyx_t_6))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 712; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; } __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = ((PyObject *)__pyx_t_4); __Pyx_INCREF(__pyx_t_5); __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; __pyx_v_vars = ((PyObject*)__pyx_t_5); __pyx_t_5 = 0; /* "chaplotype.pyx":713 * * vars = [str(v) for v in self.variants] * string = " Haplotype(" + ",".join(vars) + ") %s:%s-%s" %(self.refName, self.startPos, self.endPos) # <<<<<<<<<<<<<< * * return string */ __pyx_t_5 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_20), __pyx_n_s__join); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_INCREF(((PyObject *)__pyx_v_vars)); PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_v_vars)); __Pyx_GIVEREF(((PyObject *)__pyx_v_vars)); __pyx_t_6 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0; __pyx_t_4 = PyNumber_Add(((PyObject *)__pyx_kp_s_19), __pyx_t_6); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_6 = PyInt_FromLong(__pyx_v_self->startPos); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_5 = PyInt_FromLong(__pyx_v_self->endPos); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_INCREF(((PyObject *)__pyx_v_self->refName)); PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_v_self->refName)); __Pyx_GIVEREF(((PyObject *)__pyx_v_self->refName)); PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_6); __Pyx_GIVEREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_t_5); __Pyx_GIVEREF(__pyx_t_5); __pyx_t_6 = 0; __pyx_t_5 = 0; __pyx_t_5 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_21), ((PyObject *)__pyx_t_1)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_5)); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; __pyx_t_1 = PyNumber_Add(__pyx_t_4, ((PyObject *)__pyx_t_5)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 713; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0; __pyx_v_string = __pyx_t_1; __pyx_t_1 = 0; /* "chaplotype.pyx":715 * string = " Haplotype(" + ",".join(vars) + ") %s:%s-%s" %(self.refName, self.startPos, self.endPos) * * return string # <<<<<<<<<<<<<< * * def __repr__(self): */ __Pyx_XDECREF(__pyx_r); __Pyx_INCREF(__pyx_v_string); __pyx_r = __pyx_v_string; goto __pyx_L0; __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_AddTraceback("chaplotype.Haplotype.__str__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_vars); __Pyx_XDECREF(__pyx_v_string); __Pyx_XDECREF(__pyx_v_v); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* Python wrapper */ static PyObject *__pyx_pw_10chaplotype_9Haplotype_13__repr__(PyObject *__pyx_v_self); /*proto*/ static char __pyx_doc_10chaplotype_9Haplotype_12__repr__[] = "\n The representation function. Called when printing the screen.\n "; #if CYTHON_COMPILING_IN_CPYTHON struct wrapperbase __pyx_wrapperbase_10chaplotype_9Haplotype_12__repr__; #endif static PyObject *__pyx_pw_10chaplotype_9Haplotype_13__repr__(PyObject *__pyx_v_self) { PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__repr__ (wrapper)", 0); __pyx_r = __pyx_pf_10chaplotype_9Haplotype_12__repr__(((struct __pyx_obj_10chaplotype_Haplotype *)__pyx_v_self)); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":717 * return string * * def __repr__(self): # <<<<<<<<<<<<<< * """ * The representation function. Called when printing the screen. */ static PyObject *__pyx_pf_10chaplotype_9Haplotype_12__repr__(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("__repr__", 0); /* "chaplotype.pyx":721 * The representation function. Called when printing the screen. * """ * return self.__str__() # <<<<<<<<<<<<<< * * cdef void annotateWithGapOpen(self): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_v_self), __pyx_n_s____str__); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 721; __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 = 721; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_r = __pyx_t_2; __pyx_t_2 = 0; goto __pyx_L0; __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("chaplotype.Haplotype.__repr__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":723 * return self.__str__() * * cdef void annotateWithGapOpen(self): # <<<<<<<<<<<<<< * """ * Annotate this haplotype with a context-specific gap open penalty, using either the */ static void __pyx_f_10chaplotype_9Haplotype_annotateWithGapOpen(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_self) { int __pyx_v_index; char *__pyx_v_seq; char *__pyx_v_errorModel; int __pyx_v_homopol; int __pyx_v_homopollen; PyObject *__pyx_v_hapSeqForAnnotating = NULL; PyObject *__pyx_v_c = NULL; __Pyx_RefNannyDeclarations int __pyx_t_1; int __pyx_t_2; char *__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)(PyObject *); PyObject *__pyx_t_9 = NULL; PyObject *__pyx_t_10 = NULL; PyObject *__pyx_t_11 = NULL; PyObject *__pyx_t_12 = NULL; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("annotateWithGapOpen", 0); /* "chaplotype.pyx":730 * """ * # Only do this one per haplotype * if self.localGapOpen != NULL: # <<<<<<<<<<<<<< * return * */ __pyx_t_1 = (__pyx_v_self->localGapOpen != NULL); if (__pyx_t_1) { /* "chaplotype.pyx":731 * # Only do this one per haplotype * if self.localGapOpen != NULL: * return # <<<<<<<<<<<<<< * * cdef int index = self.hapLen */ goto __pyx_L0; goto __pyx_L3; } __pyx_L3:; /* "chaplotype.pyx":733 * return * * cdef int index = self.hapLen # <<<<<<<<<<<<<< * cdef char* seq = self.cHaplotypeSequence * cdef char* errorModel = NULL */ __pyx_t_2 = __pyx_v_self->hapLen; __pyx_v_index = __pyx_t_2; /* "chaplotype.pyx":734 * * cdef int index = self.hapLen * cdef char* seq = self.cHaplotypeSequence # <<<<<<<<<<<<<< * cdef char* errorModel = NULL * cdef int homopol = -1 */ __pyx_t_3 = __pyx_v_self->cHaplotypeSequence; __pyx_v_seq = __pyx_t_3; /* "chaplotype.pyx":735 * cdef int index = self.hapLen * cdef char* seq = self.cHaplotypeSequence * cdef char* errorModel = NULL # <<<<<<<<<<<<<< * cdef int homopol = -1 * cdef int homopollen = 0 */ __pyx_v_errorModel = NULL; /* "chaplotype.pyx":736 * cdef char* seq = self.cHaplotypeSequence * cdef char* errorModel = NULL * cdef int homopol = -1 # <<<<<<<<<<<<<< * cdef int homopollen = 0 * */ __pyx_v_homopol = -1; /* "chaplotype.pyx":737 * cdef char* errorModel = NULL * cdef int homopol = -1 * cdef int homopollen = 0 # <<<<<<<<<<<<<< * * self.localGapOpen = malloc(self.hapLen*sizeof(short)) */ __pyx_v_homopollen = 0; /* "chaplotype.pyx":739 * cdef int homopollen = 0 * * self.localGapOpen = malloc(self.hapLen*sizeof(short)) # <<<<<<<<<<<<<< * * if self.useIndelErrorModel and self.cLocalGapOpenQ == NULL: */ __pyx_v_self->localGapOpen = ((short *)malloc((__pyx_v_self->hapLen * (sizeof(short))))); /* "chaplotype.pyx":741 * self.localGapOpen = malloc(self.hapLen*sizeof(short)) * * if self.useIndelErrorModel and self.cLocalGapOpenQ == NULL: # <<<<<<<<<<<<<< * hapSeqForAnnotating = "".join([c if c != "N" else random.choice(["A", "C", "T", "G"]) for c in self.haplotypeSequence]) * self.localGapOpenQ = cerrormodel.annotate_sequence(hapSeqForAnnotating, self.indelErrorModel, 0) */ if (__pyx_v_self->useIndelErrorModel) { __pyx_t_1 = (__pyx_v_self->cLocalGapOpenQ == NULL); __pyx_t_4 = __pyx_t_1; } else { __pyx_t_4 = __pyx_v_self->useIndelErrorModel; } if (__pyx_t_4) { /* "chaplotype.pyx":742 * * if self.useIndelErrorModel and self.cLocalGapOpenQ == NULL: * hapSeqForAnnotating = "".join([c if c != "N" else random.choice(["A", "C", "T", "G"]) for c in self.haplotypeSequence]) # <<<<<<<<<<<<<< * self.localGapOpenQ = cerrormodel.annotate_sequence(hapSeqForAnnotating, self.indelErrorModel, 0) * self.cLocalGapOpenQ = self.localGapOpenQ */ __pyx_t_5 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_9), __pyx_n_s__join); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = PyList_New(0); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_7 = PyObject_GetIter(((PyObject *)__pyx_v_self->haplotypeSequence)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __pyx_t_8 = Py_TYPE(__pyx_t_7)->tp_iternext; for (;;) { { __pyx_t_9 = __pyx_t_8(__pyx_t_7); if (unlikely(!__pyx_t_9)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_9); } __Pyx_XDECREF(__pyx_v_c); __pyx_v_c = __pyx_t_9; __pyx_t_9 = 0; __pyx_t_10 = PyObject_RichCompare(__pyx_v_c, ((PyObject *)__pyx_n_s__N), Py_NE); __Pyx_XGOTREF(__pyx_t_10); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_10); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; if (__pyx_t_4) { __Pyx_INCREF(__pyx_v_c); __pyx_t_9 = __pyx_v_c; } else { __pyx_t_10 = __Pyx_GetName(__pyx_m, __pyx_n_s__random); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __pyx_t_11 = PyObject_GetAttr(__pyx_t_10, __pyx_n_s__choice); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_11); __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; __pyx_t_10 = PyList_New(4); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __Pyx_INCREF(((PyObject *)__pyx_n_s__A)); PyList_SET_ITEM(__pyx_t_10, 0, ((PyObject *)__pyx_n_s__A)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__A)); __Pyx_INCREF(((PyObject *)__pyx_n_s__C)); PyList_SET_ITEM(__pyx_t_10, 1, ((PyObject *)__pyx_n_s__C)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__C)); __Pyx_INCREF(((PyObject *)__pyx_n_s__T)); PyList_SET_ITEM(__pyx_t_10, 2, ((PyObject *)__pyx_n_s__T)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__T)); __Pyx_INCREF(((PyObject *)__pyx_n_s__G)); PyList_SET_ITEM(__pyx_t_10, 3, ((PyObject *)__pyx_n_s__G)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__G)); __pyx_t_12 = PyTuple_New(1); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_12); PyTuple_SET_ITEM(__pyx_t_12, 0, ((PyObject *)__pyx_t_10)); __Pyx_GIVEREF(((PyObject *)__pyx_t_10)); __pyx_t_10 = 0; __pyx_t_10 = PyObject_Call(__pyx_t_11, ((PyObject *)__pyx_t_12), NULL); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_12)); __pyx_t_12 = 0; __pyx_t_9 = __pyx_t_10; __pyx_t_10 = 0; } if (unlikely(__Pyx_PyList_Append(__pyx_t_6, (PyObject*)__pyx_t_9))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; } __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_7 = PyTuple_New(1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __Pyx_INCREF(((PyObject *)__pyx_t_6)); PyTuple_SET_ITEM(__pyx_t_7, 0, ((PyObject *)__pyx_t_6)); __Pyx_GIVEREF(((PyObject *)__pyx_t_6)); __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0; __pyx_t_6 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_t_7), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 742; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_7)); __pyx_t_7 = 0; __pyx_v_hapSeqForAnnotating = __pyx_t_6; __pyx_t_6 = 0; /* "chaplotype.pyx":743 * if self.useIndelErrorModel and self.cLocalGapOpenQ == NULL: * hapSeqForAnnotating = "".join([c if c != "N" else random.choice(["A", "C", "T", "G"]) for c in self.haplotypeSequence]) * self.localGapOpenQ = cerrormodel.annotate_sequence(hapSeqForAnnotating, self.indelErrorModel, 0) # <<<<<<<<<<<<<< * self.cLocalGapOpenQ = self.localGapOpenQ * */ __pyx_t_6 = ((PyObject *)__pyx_v_self->indelErrorModel); __Pyx_INCREF(__pyx_t_6); __pyx_t_7 = ((PyObject *)__pyx_f_11cerrormodel_annotate_sequence(__pyx_v_hapSeqForAnnotating, ((PyObject*)__pyx_t_6), 0)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 743; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __Pyx_GIVEREF(__pyx_t_7); __Pyx_GOTREF(__pyx_v_self->localGapOpenQ); __Pyx_DECREF(((PyObject *)__pyx_v_self->localGapOpenQ)); __pyx_v_self->localGapOpenQ = ((PyObject*)__pyx_t_7); __pyx_t_7 = 0; /* "chaplotype.pyx":744 * hapSeqForAnnotating = "".join([c if c != "N" else random.choice(["A", "C", "T", "G"]) for c in self.haplotypeSequence]) * self.localGapOpenQ = cerrormodel.annotate_sequence(hapSeqForAnnotating, self.indelErrorModel, 0) * self.cLocalGapOpenQ = self.localGapOpenQ # <<<<<<<<<<<<<< * * if self.useIndelErrorModel: */ __pyx_t_3 = PyBytes_AsString(((PyObject *)__pyx_v_self->localGapOpenQ)); if (unlikely((!__pyx_t_3) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 744; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_self->cLocalGapOpenQ = __pyx_t_3; goto __pyx_L4; } __pyx_L4:; /* "chaplotype.pyx":746 * self.cLocalGapOpenQ = self.localGapOpenQ * * if self.useIndelErrorModel: # <<<<<<<<<<<<<< * errorModel = self.cLocalGapOpenQ * else: */ if (__pyx_v_self->useIndelErrorModel) { /* "chaplotype.pyx":747 * * if self.useIndelErrorModel: * errorModel = self.cLocalGapOpenQ # <<<<<<<<<<<<<< * else: * errorModel = self.cHomopolQ */ __pyx_t_3 = __pyx_v_self->cLocalGapOpenQ; __pyx_v_errorModel = __pyx_t_3; goto __pyx_L7; } /*else*/ { /* "chaplotype.pyx":749 * errorModel = self.cLocalGapOpenQ * else: * errorModel = self.cHomopolQ # <<<<<<<<<<<<<< * * if not self.useIndelErrorModel: */ __pyx_t_3 = __pyx_v_self->cHomopolQ; __pyx_v_errorModel = __pyx_t_3; } __pyx_L7:; /* "chaplotype.pyx":751 * errorModel = self.cHomopolQ * * if not self.useIndelErrorModel: # <<<<<<<<<<<<<< * * homopol = -1 */ __pyx_t_4 = (!__pyx_v_self->useIndelErrorModel); if (__pyx_t_4) { /* "chaplotype.pyx":753 * if not self.useIndelErrorModel: * * homopol = -1 # <<<<<<<<<<<<<< * homopollen = 0 * */ __pyx_v_homopol = -1; /* "chaplotype.pyx":754 * * homopol = -1 * homopollen = 0 # <<<<<<<<<<<<<< * * while index > 0: */ __pyx_v_homopollen = 0; /* "chaplotype.pyx":756 * homopollen = 0 * * while index > 0: # <<<<<<<<<<<<<< * * index -= 1 */ while (1) { __pyx_t_4 = (__pyx_v_index > 0); if (!__pyx_t_4) break; /* "chaplotype.pyx":758 * while index > 0: * * index -= 1 # <<<<<<<<<<<<<< * * if seq[index] == homopol: */ __pyx_v_index = (__pyx_v_index - 1); /* "chaplotype.pyx":760 * index -= 1 * * if seq[index] == homopol: # <<<<<<<<<<<<<< * homopollen += (not(not(errorModel[homopollen+1]))) * else: */ __pyx_t_4 = ((__pyx_v_seq[__pyx_v_index]) == __pyx_v_homopol); if (__pyx_t_4) { /* "chaplotype.pyx":761 * * if seq[index] == homopol: * homopollen += (not(not(errorModel[homopollen+1]))) # <<<<<<<<<<<<<< * else: * homopollen = 0 */ __pyx_v_homopollen = (__pyx_v_homopollen + ((int)(!(!(__pyx_v_errorModel[(__pyx_v_homopollen + 1)]))))); goto __pyx_L11; } /*else*/ { /* "chaplotype.pyx":763 * homopollen += (not(not(errorModel[homopollen+1]))) * else: * homopollen = 0 # <<<<<<<<<<<<<< * * self.localGapOpen[index] = 4*((errorModel[homopollen]) - ('!')) */ __pyx_v_homopollen = 0; } __pyx_L11:; /* "chaplotype.pyx":765 * homopollen = 0 * * self.localGapOpen[index] = 4*((errorModel[homopollen]) - ('!')) # <<<<<<<<<<<<<< * homopol = seq[index]; * */ (__pyx_v_self->localGapOpen[__pyx_v_index]) = (4 * (((int)(__pyx_v_errorModel[__pyx_v_homopollen])) - ((int)'!'))); /* "chaplotype.pyx":766 * * self.localGapOpen[index] = 4*((errorModel[homopollen]) - ('!')) * homopol = seq[index]; # <<<<<<<<<<<<<< * * if homopol == 'N': */ __pyx_v_homopol = (__pyx_v_seq[__pyx_v_index]); /* "chaplotype.pyx":768 * homopol = seq[index]; * * if homopol == 'N': # <<<<<<<<<<<<<< * homopol = 0 * */ __pyx_t_4 = (__pyx_v_homopol == 'N'); if (__pyx_t_4) { /* "chaplotype.pyx":769 * * if homopol == 'N': * homopol = 0 # <<<<<<<<<<<<<< * * else: */ __pyx_v_homopol = 0; goto __pyx_L12; } __pyx_L12:; } goto __pyx_L8; } /*else*/ { /* "chaplotype.pyx":772 * * else: * while index > 0: # <<<<<<<<<<<<<< * index -= 1 * self.localGapOpen[index] = (errorModel[index])*4 */ while (1) { __pyx_t_4 = (__pyx_v_index > 0); if (!__pyx_t_4) break; /* "chaplotype.pyx":773 * else: * while index > 0: * index -= 1 # <<<<<<<<<<<<<< * self.localGapOpen[index] = (errorModel[index])*4 * */ __pyx_v_index = (__pyx_v_index - 1); /* "chaplotype.pyx":774 * while index > 0: * index -= 1 * self.localGapOpen[index] = (errorModel[index])*4 # <<<<<<<<<<<<<< * * ################################################################################################### */ (__pyx_v_self->localGapOpen[__pyx_v_index]) = (((int)(__pyx_v_errorModel[__pyx_v_index])) * 4); } } __pyx_L8:; 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_9); __Pyx_XDECREF(__pyx_t_10); __Pyx_XDECREF(__pyx_t_11); __Pyx_XDECREF(__pyx_t_12); __Pyx_WriteUnraisable("chaplotype.Haplotype.annotateWithGapOpen", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_L0:; __Pyx_XDECREF(__pyx_v_hapSeqForAnnotating); __Pyx_XDECREF(__pyx_v_c); __Pyx_RefNannyFinishContext(); } /* "chaplotype.pyx":778 * ################################################################################################### * * cdef double alignReadToHaplotype(cAlignedRead* read, Haplotype hap, int useMapQualCap, int printAlignments): # <<<<<<<<<<<<<< * """ * This is the basic, banded-alignment routine that forms the heart of Platypus. This function decides where to anchor the */ static double __pyx_f_10chaplotype_alignReadToHaplotype(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_read, struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_hap, int __pyx_v_useMapQualCap, int __pyx_v_printAlignments) { char *__pyx_v_hapSeq; char *__pyx_v_aln1; char *__pyx_v_aln2; char *__pyx_v_errorModel; int __pyx_v_hapStart; int __pyx_v_gapExtend; int __pyx_v_nucprior; int __pyx_v_hapLen; int __pyx_v_useHomopolQ; PyObject *__pyx_v_hapSeqForAnnotating = NULL; char *__pyx_v_readSeq; char *__pyx_v_readQuals; int __pyx_v_readStart; int __pyx_v_readLen; CYTHON_UNUSED int __pyx_v_mapQual; CYTHON_UNUSED int __pyx_v_lenOfHapSeqToTest; CYTHON_UNUSED int __pyx_v_hapPos; int __pyx_v_alignScore; double __pyx_v_probMapWrong; double __pyx_v_probMapRight; double __pyx_v_likelihoodCap; int __pyx_v_mapPos; long __pyx_v_i; PyObject *__pyx_v_c = NULL; double __pyx_r; __Pyx_RefNannyDeclarations char *__pyx_t_1; int __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)(PyObject *); PyObject *__pyx_t_9 = NULL; PyObject *__pyx_t_10 = NULL; PyObject *__pyx_t_11 = NULL; PyObject *__pyx_t_12 = NULL; short __pyx_t_13; char __pyx_t_14; long __pyx_t_15; long __pyx_t_16; double __pyx_t_17; double __pyx_t_18; double __pyx_t_19; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("alignReadToHaplotype", 0); /* "chaplotype.pyx":786 * will be rubbish. * """ * cdef char* hapSeq = hap.cHaplotypeSequence # <<<<<<<<<<<<<< * cdef char* aln1 = NULL * cdef char* aln2 = NULL */ __pyx_t_1 = __pyx_v_hap->cHaplotypeSequence; __pyx_v_hapSeq = __pyx_t_1; /* "chaplotype.pyx":787 * """ * cdef char* hapSeq = hap.cHaplotypeSequence * cdef char* aln1 = NULL # <<<<<<<<<<<<<< * cdef char* aln2 = NULL * cdef char* errorModel = NULL */ __pyx_v_aln1 = NULL; /* "chaplotype.pyx":788 * cdef char* hapSeq = hap.cHaplotypeSequence * cdef char* aln1 = NULL * cdef char* aln2 = NULL # <<<<<<<<<<<<<< * cdef char* errorModel = NULL * cdef int hapStart = hap.startPos - hap.endBufferSize */ __pyx_v_aln2 = NULL; /* "chaplotype.pyx":789 * cdef char* aln1 = NULL * cdef char* aln2 = NULL * cdef char* errorModel = NULL # <<<<<<<<<<<<<< * cdef int hapStart = hap.startPos - hap.endBufferSize * cdef int gapExtend = 3 */ __pyx_v_errorModel = NULL; /* "chaplotype.pyx":790 * cdef char* aln2 = NULL * cdef char* errorModel = NULL * cdef int hapStart = hap.startPos - hap.endBufferSize # <<<<<<<<<<<<<< * cdef int gapExtend = 3 * cdef int nucprior = 2 */ __pyx_v_hapStart = (__pyx_v_hap->startPos - __pyx_v_hap->endBufferSize); /* "chaplotype.pyx":791 * cdef char* errorModel = NULL * cdef int hapStart = hap.startPos - hap.endBufferSize * cdef int gapExtend = 3 # <<<<<<<<<<<<<< * cdef int nucprior = 2 * cdef int hapLen = hap.hapLen */ __pyx_v_gapExtend = 3; /* "chaplotype.pyx":792 * cdef int hapStart = hap.startPos - hap.endBufferSize * cdef int gapExtend = 3 * cdef int nucprior = 2 # <<<<<<<<<<<<<< * cdef int hapLen = hap.hapLen * cdef int useHomopolQ = True */ __pyx_v_nucprior = 2; /* "chaplotype.pyx":793 * cdef int gapExtend = 3 * cdef int nucprior = 2 * cdef int hapLen = hap.hapLen # <<<<<<<<<<<<<< * cdef int useHomopolQ = True * */ __pyx_t_2 = __pyx_v_hap->hapLen; __pyx_v_hapLen = __pyx_t_2; /* "chaplotype.pyx":794 * cdef int nucprior = 2 * cdef int hapLen = hap.hapLen * cdef int useHomopolQ = True # <<<<<<<<<<<<<< * * if hap.useIndelErrorModel and hap.cLocalGapOpenQ == NULL: */ __pyx_v_useHomopolQ = 1; /* "chaplotype.pyx":796 * cdef int useHomopolQ = True * * if hap.useIndelErrorModel and hap.cLocalGapOpenQ == NULL: # <<<<<<<<<<<<<< * hapSeqForAnnotating = "".join([c if c != "N" else random.choice(["A", "C", "T", "G"]) for c in hap.haplotypeSequence]) * hap.localGapOpenQ = cerrormodel.annotate_sequence(hapSeqForAnnotating, hap.indelErrorModel, 0) */ if (__pyx_v_hap->useIndelErrorModel) { __pyx_t_3 = (__pyx_v_hap->cLocalGapOpenQ == NULL); __pyx_t_4 = __pyx_t_3; } else { __pyx_t_4 = __pyx_v_hap->useIndelErrorModel; } if (__pyx_t_4) { /* "chaplotype.pyx":797 * * if hap.useIndelErrorModel and hap.cLocalGapOpenQ == NULL: * hapSeqForAnnotating = "".join([c if c != "N" else random.choice(["A", "C", "T", "G"]) for c in hap.haplotypeSequence]) # <<<<<<<<<<<<<< * hap.localGapOpenQ = cerrormodel.annotate_sequence(hapSeqForAnnotating, hap.indelErrorModel, 0) * hap.cLocalGapOpenQ = hap.localGapOpenQ */ __pyx_t_5 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_9), __pyx_n_s__join); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = PyList_New(0); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_7 = PyObject_GetIter(((PyObject *)__pyx_v_hap->haplotypeSequence)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __pyx_t_8 = Py_TYPE(__pyx_t_7)->tp_iternext; for (;;) { { __pyx_t_9 = __pyx_t_8(__pyx_t_7); if (unlikely(!__pyx_t_9)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_9); } __Pyx_XDECREF(__pyx_v_c); __pyx_v_c = __pyx_t_9; __pyx_t_9 = 0; __pyx_t_10 = PyObject_RichCompare(__pyx_v_c, ((PyObject *)__pyx_n_s__N), Py_NE); __Pyx_XGOTREF(__pyx_t_10); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_10); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; if (__pyx_t_4) { __Pyx_INCREF(__pyx_v_c); __pyx_t_9 = __pyx_v_c; } else { __pyx_t_10 = __Pyx_GetName(__pyx_m, __pyx_n_s__random); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __pyx_t_11 = PyObject_GetAttr(__pyx_t_10, __pyx_n_s__choice); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_11); __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; __pyx_t_10 = PyList_New(4); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __Pyx_INCREF(((PyObject *)__pyx_n_s__A)); PyList_SET_ITEM(__pyx_t_10, 0, ((PyObject *)__pyx_n_s__A)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__A)); __Pyx_INCREF(((PyObject *)__pyx_n_s__C)); PyList_SET_ITEM(__pyx_t_10, 1, ((PyObject *)__pyx_n_s__C)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__C)); __Pyx_INCREF(((PyObject *)__pyx_n_s__T)); PyList_SET_ITEM(__pyx_t_10, 2, ((PyObject *)__pyx_n_s__T)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__T)); __Pyx_INCREF(((PyObject *)__pyx_n_s__G)); PyList_SET_ITEM(__pyx_t_10, 3, ((PyObject *)__pyx_n_s__G)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__G)); __pyx_t_12 = PyTuple_New(1); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_12); PyTuple_SET_ITEM(__pyx_t_12, 0, ((PyObject *)__pyx_t_10)); __Pyx_GIVEREF(((PyObject *)__pyx_t_10)); __pyx_t_10 = 0; __pyx_t_10 = PyObject_Call(__pyx_t_11, ((PyObject *)__pyx_t_12), NULL); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_12)); __pyx_t_12 = 0; __pyx_t_9 = __pyx_t_10; __pyx_t_10 = 0; } if (unlikely(__Pyx_PyList_Append(__pyx_t_6, (PyObject*)__pyx_t_9))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0; } __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_7 = PyTuple_New(1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __Pyx_INCREF(((PyObject *)__pyx_t_6)); PyTuple_SET_ITEM(__pyx_t_7, 0, ((PyObject *)__pyx_t_6)); __Pyx_GIVEREF(((PyObject *)__pyx_t_6)); __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0; __pyx_t_6 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_t_7), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_7)); __pyx_t_7 = 0; __pyx_v_hapSeqForAnnotating = __pyx_t_6; __pyx_t_6 = 0; /* "chaplotype.pyx":798 * if hap.useIndelErrorModel and hap.cLocalGapOpenQ == NULL: * hapSeqForAnnotating = "".join([c if c != "N" else random.choice(["A", "C", "T", "G"]) for c in hap.haplotypeSequence]) * hap.localGapOpenQ = cerrormodel.annotate_sequence(hapSeqForAnnotating, hap.indelErrorModel, 0) # <<<<<<<<<<<<<< * hap.cLocalGapOpenQ = hap.localGapOpenQ * */ __pyx_t_6 = ((PyObject *)__pyx_v_hap->indelErrorModel); __Pyx_INCREF(__pyx_t_6); __pyx_t_7 = ((PyObject *)__pyx_f_11cerrormodel_annotate_sequence(__pyx_v_hapSeqForAnnotating, ((PyObject*)__pyx_t_6), 0)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 798; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __Pyx_GIVEREF(__pyx_t_7); __Pyx_GOTREF(__pyx_v_hap->localGapOpenQ); __Pyx_DECREF(((PyObject *)__pyx_v_hap->localGapOpenQ)); __pyx_v_hap->localGapOpenQ = ((PyObject*)__pyx_t_7); __pyx_t_7 = 0; /* "chaplotype.pyx":799 * hapSeqForAnnotating = "".join([c if c != "N" else random.choice(["A", "C", "T", "G"]) for c in hap.haplotypeSequence]) * hap.localGapOpenQ = cerrormodel.annotate_sequence(hapSeqForAnnotating, hap.indelErrorModel, 0) * hap.cLocalGapOpenQ = hap.localGapOpenQ # <<<<<<<<<<<<<< * * if hap.useIndelErrorModel: */ __pyx_t_1 = PyBytes_AsString(((PyObject *)__pyx_v_hap->localGapOpenQ)); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 799; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_hap->cLocalGapOpenQ = __pyx_t_1; goto __pyx_L3; } __pyx_L3:; /* "chaplotype.pyx":801 * hap.cLocalGapOpenQ = hap.localGapOpenQ * * if hap.useIndelErrorModel: # <<<<<<<<<<<<<< * errorModel = hap.cLocalGapOpenQ * useHomopolQ = False */ if (__pyx_v_hap->useIndelErrorModel) { /* "chaplotype.pyx":802 * * if hap.useIndelErrorModel: * errorModel = hap.cLocalGapOpenQ # <<<<<<<<<<<<<< * useHomopolQ = False * else: */ __pyx_t_1 = __pyx_v_hap->cLocalGapOpenQ; __pyx_v_errorModel = __pyx_t_1; /* "chaplotype.pyx":803 * if hap.useIndelErrorModel: * errorModel = hap.cLocalGapOpenQ * useHomopolQ = False # <<<<<<<<<<<<<< * else: * errorModel = hap.cHomopolQ */ __pyx_v_useHomopolQ = 0; goto __pyx_L6; } /*else*/ { /* "chaplotype.pyx":805 * useHomopolQ = False * else: * errorModel = hap.cHomopolQ # <<<<<<<<<<<<<< * useHomopolQ = True * */ __pyx_t_1 = __pyx_v_hap->cHomopolQ; __pyx_v_errorModel = __pyx_t_1; /* "chaplotype.pyx":806 * else: * errorModel = hap.cHomopolQ * useHomopolQ = True # <<<<<<<<<<<<<< * * cdef char* readSeq = read.seq */ __pyx_v_useHomopolQ = 1; } __pyx_L6:; /* "chaplotype.pyx":808 * useHomopolQ = True * * cdef char* readSeq = read.seq # <<<<<<<<<<<<<< * cdef char* readQuals = read.qual * */ __pyx_t_1 = __pyx_v_read->seq; __pyx_v_readSeq = __pyx_t_1; /* "chaplotype.pyx":809 * * cdef char* readSeq = read.seq * cdef char* readQuals = read.qual # <<<<<<<<<<<<<< * * cdef int readStart = read.pos */ __pyx_t_1 = __pyx_v_read->qual; __pyx_v_readQuals = __pyx_t_1; /* "chaplotype.pyx":811 * cdef char* readQuals = read.qual * * cdef int readStart = read.pos # <<<<<<<<<<<<<< * cdef int readLen = read.rlen * cdef int mapQual = read.mapq */ __pyx_t_2 = __pyx_v_read->pos; __pyx_v_readStart = __pyx_t_2; /* "chaplotype.pyx":812 * * cdef int readStart = read.pos * cdef int readLen = read.rlen # <<<<<<<<<<<<<< * cdef int mapQual = read.mapq * */ __pyx_t_13 = __pyx_v_read->rlen; __pyx_v_readLen = __pyx_t_13; /* "chaplotype.pyx":813 * cdef int readStart = read.pos * cdef int readLen = read.rlen * cdef int mapQual = read.mapq # <<<<<<<<<<<<<< * * cdef int lenOfHapSeqToTest = readLen + 15 */ __pyx_t_14 = __pyx_v_read->mapq; __pyx_v_mapQual = __pyx_t_14; /* "chaplotype.pyx":815 * cdef int mapQual = read.mapq * * cdef int lenOfHapSeqToTest = readLen + 15 # <<<<<<<<<<<<<< * cdef int hapPos = readStart - hapStart * cdef int alignScore = 0 */ __pyx_v_lenOfHapSeqToTest = (__pyx_v_readLen + 15); /* "chaplotype.pyx":816 * * cdef int lenOfHapSeqToTest = readLen + 15 * cdef int hapPos = readStart - hapStart # <<<<<<<<<<<<<< * cdef int alignScore = 0 * */ __pyx_v_hapPos = (__pyx_v_readStart - __pyx_v_hapStart); /* "chaplotype.pyx":817 * cdef int lenOfHapSeqToTest = readLen + 15 * cdef int hapPos = readStart - hapStart * cdef int alignScore = 0 # <<<<<<<<<<<<<< * * cdef double probMapWrong = mLTOT*read.mapq # A log value */ __pyx_v_alignScore = 0; /* "chaplotype.pyx":819 * cdef int alignScore = 0 * * cdef double probMapWrong = mLTOT*read.mapq # A log value # <<<<<<<<<<<<<< * cdef double probMapRight = log(1.0 - exp(mLTOT*read.mapq)) # A log value * */ __pyx_v_probMapWrong = (__pyx_v_10chaplotype_mLTOT * __pyx_v_read->mapq); /* "chaplotype.pyx":820 * * cdef double probMapWrong = mLTOT*read.mapq # A log value * cdef double probMapRight = log(1.0 - exp(mLTOT*read.mapq)) # A log value # <<<<<<<<<<<<<< * * # Arbitrary cap */ __pyx_v_probMapRight = log((1.0 - exp((__pyx_v_10chaplotype_mLTOT * __pyx_v_read->mapq)))); /* "chaplotype.pyx":823 * * # Arbitrary cap * cdef double likelihoodCap = 0.0 # <<<<<<<<<<<<<< * * if useMapQualCap == True: */ __pyx_v_likelihoodCap = 0.0; /* "chaplotype.pyx":825 * cdef double likelihoodCap = 0.0 * * if useMapQualCap == True: # <<<<<<<<<<<<<< * likelihoodCap = probMapWrong * else: */ __pyx_t_4 = (__pyx_v_useMapQualCap == 1); if (__pyx_t_4) { /* "chaplotype.pyx":826 * * if useMapQualCap == True: * likelihoodCap = probMapWrong # <<<<<<<<<<<<<< * else: * likelihoodCap = -300 # Arbitrary cap close to min float value */ __pyx_v_likelihoodCap = __pyx_v_probMapWrong; goto __pyx_L7; } /*else*/ { /* "chaplotype.pyx":828 * likelihoodCap = probMapWrong * else: * likelihoodCap = -300 # Arbitrary cap close to min float value # <<<<<<<<<<<<<< * * # Make sure read hash exists when needed */ __pyx_v_likelihoodCap = -300.0; } __pyx_L7:; /* "chaplotype.pyx":831 * * # Make sure read hash exists when needed * if read.hash == NULL: # <<<<<<<<<<<<<< * hashReadForMapping(read) * */ __pyx_t_4 = (__pyx_v_read->hash == NULL); if (__pyx_t_4) { /* "chaplotype.pyx":832 * # Make sure read hash exists when needed * if read.hash == NULL: * hashReadForMapping(read) # <<<<<<<<<<<<<< * * # Make sure haplotype hash exists when needed */ __pyx_f_6calign_hashReadForMapping(__pyx_v_read); goto __pyx_L8; } __pyx_L8:; /* "chaplotype.pyx":835 * * # Make sure haplotype hash exists when needed * if hap.hapSequenceHash == NULL: # <<<<<<<<<<<<<< * hash_sequence_multihit(hap.cHaplotypeSequence, hap.hapLen, &hap.hapSequenceHash, &hap.hapSequenceNextArray) * */ __pyx_t_4 = (__pyx_v_hap->hapSequenceHash == NULL); if (__pyx_t_4) { /* "chaplotype.pyx":836 * # Make sure haplotype hash exists when needed * if hap.hapSequenceHash == NULL: * hash_sequence_multihit(hap.cHaplotypeSequence, hap.hapLen, &hap.hapSequenceHash, &hap.hapSequenceNextArray) # <<<<<<<<<<<<<< * * cdef int mapPos = -1 */ __pyx_f_6calign_hash_sequence_multihit(__pyx_v_hap->cHaplotypeSequence, __pyx_v_hap->hapLen, (&__pyx_v_hap->hapSequenceHash), (&__pyx_v_hap->hapSequenceNextArray)); goto __pyx_L9; } __pyx_L9:; /* "chaplotype.pyx":838 * hash_sequence_multihit(hap.cHaplotypeSequence, hap.hapLen, &hap.hapSequenceHash, &hap.hapSequenceNextArray) * * cdef int mapPos = -1 # <<<<<<<<<<<<<< * * if printAlignments: */ __pyx_v_mapPos = -1; /* "chaplotype.pyx":840 * cdef int mapPos = -1 * * if printAlignments: # <<<<<<<<<<<<<< * aln1 = (calloc(2*(readLen + hapLen), sizeof(char))) * aln2 = (calloc(2*(readLen + hapLen), sizeof(char))) */ if (__pyx_v_printAlignments) { /* "chaplotype.pyx":841 * * if printAlignments: * aln1 = (calloc(2*(readLen + hapLen), sizeof(char))) # <<<<<<<<<<<<<< * aln2 = (calloc(2*(readLen + hapLen), sizeof(char))) * */ __pyx_v_aln1 = ((char *)calloc((2 * (__pyx_v_readLen + __pyx_v_hapLen)), (sizeof(char)))); /* "chaplotype.pyx":842 * if printAlignments: * aln1 = (calloc(2*(readLen + hapLen), sizeof(char))) * aln2 = (calloc(2*(readLen + hapLen), sizeof(char))) # <<<<<<<<<<<<<< * * for i in range(2*(readLen + hapLen)): */ __pyx_v_aln2 = ((char *)calloc((2 * (__pyx_v_readLen + __pyx_v_hapLen)), (sizeof(char)))); /* "chaplotype.pyx":844 * aln2 = (calloc(2*(readLen + hapLen), sizeof(char))) * * for i in range(2*(readLen + hapLen)): # <<<<<<<<<<<<<< * aln1[i] = 'N' * aln2[i] = 'N' */ __pyx_t_15 = (2 * (__pyx_v_readLen + __pyx_v_hapLen)); for (__pyx_t_16 = 0; __pyx_t_16 < __pyx_t_15; __pyx_t_16+=1) { __pyx_v_i = __pyx_t_16; /* "chaplotype.pyx":845 * * for i in range(2*(readLen + hapLen)): * aln1[i] = 'N' # <<<<<<<<<<<<<< * aln2[i] = 'N' * */ (__pyx_v_aln1[__pyx_v_i]) = 'N'; /* "chaplotype.pyx":846 * for i in range(2*(readLen + hapLen)): * aln1[i] = 'N' * aln2[i] = 'N' # <<<<<<<<<<<<<< * * alignScore = mapAndAlignReadToHaplotype(readSeq, readQuals, readStart, hapStart, readLen, hapLen, hap.hapSequenceHash, hap.hapSequenceNextArray, read.hash, hapSeq, gapExtend, nucprior, errorModel, useHomopolQ, aln1, aln2, &mapPos) */ (__pyx_v_aln2[__pyx_v_i]) = 'N'; } goto __pyx_L10; } __pyx_L10:; /* "chaplotype.pyx":848 * aln2[i] = 'N' * * alignScore = mapAndAlignReadToHaplotype(readSeq, readQuals, readStart, hapStart, readLen, hapLen, hap.hapSequenceHash, hap.hapSequenceNextArray, read.hash, hapSeq, gapExtend, nucprior, errorModel, useHomopolQ, aln1, aln2, &mapPos) # <<<<<<<<<<<<<< * * if printAlignments: */ __pyx_v_alignScore = __pyx_f_6calign_mapAndAlignReadToHaplotype(__pyx_v_readSeq, __pyx_v_readQuals, __pyx_v_readStart, __pyx_v_hapStart, __pyx_v_readLen, __pyx_v_hapLen, __pyx_v_hap->hapSequenceHash, __pyx_v_hap->hapSequenceNextArray, __pyx_v_read->hash, __pyx_v_hapSeq, __pyx_v_gapExtend, __pyx_v_nucprior, __pyx_v_errorModel, __pyx_v_useHomopolQ, __pyx_v_aln1, __pyx_v_aln2, (&__pyx_v_mapPos)); /* "chaplotype.pyx":850 * alignScore = mapAndAlignReadToHaplotype(readSeq, readQuals, readStart, hapStart, readLen, hapLen, hap.hapSequenceHash, hap.hapSequenceNextArray, read.hash, hapSeq, gapExtend, nucprior, errorModel, useHomopolQ, aln1, aln2, &mapPos) * * if printAlignments: # <<<<<<<<<<<<<< * logAlignmentOfReadToHaplotype(hap, readSeq, readQuals, aln1, aln2, mapPos, alignScore, hap.options) * free(aln1) */ if (__pyx_v_printAlignments) { /* "chaplotype.pyx":851 * * if printAlignments: * logAlignmentOfReadToHaplotype(hap, readSeq, readQuals, aln1, aln2, mapPos, alignScore, hap.options) # <<<<<<<<<<<<<< * free(aln1) * free(aln2) */ __pyx_t_7 = __pyx_v_hap->options; __Pyx_INCREF(__pyx_t_7); __pyx_f_10chaplotype_logAlignmentOfReadToHaplotype(__pyx_v_hap, __pyx_v_readSeq, __pyx_v_readQuals, __pyx_v_aln1, __pyx_v_aln2, __pyx_v_mapPos, __pyx_v_alignScore, __pyx_t_7); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; /* "chaplotype.pyx":852 * if printAlignments: * logAlignmentOfReadToHaplotype(hap, readSeq, readQuals, aln1, aln2, mapPos, alignScore, hap.options) * free(aln1) # <<<<<<<<<<<<<< * free(aln2) * */ free(__pyx_v_aln1); /* "chaplotype.pyx":853 * logAlignmentOfReadToHaplotype(hap, readSeq, readQuals, aln1, aln2, mapPos, alignScore, hap.options) * free(aln1) * free(aln2) # <<<<<<<<<<<<<< * * return max(mLTOT*alignScore + probMapRight, likelihoodCap) */ free(__pyx_v_aln2); goto __pyx_L13; } __pyx_L13:; /* "chaplotype.pyx":855 * free(aln2) * * return max(mLTOT*alignScore + probMapRight, likelihoodCap) # <<<<<<<<<<<<<< * * ################################################################################################### */ __pyx_t_17 = __pyx_v_likelihoodCap; __pyx_t_18 = ((__pyx_v_10chaplotype_mLTOT * __pyx_v_alignScore) + __pyx_v_probMapRight); if ((__pyx_t_17 > __pyx_t_18)) { __pyx_t_19 = __pyx_t_17; } else { __pyx_t_19 = __pyx_t_18; } __pyx_r = __pyx_t_19; goto __pyx_L0; __pyx_r = 0; 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_9); __Pyx_XDECREF(__pyx_t_10); __Pyx_XDECREF(__pyx_t_11); __Pyx_XDECREF(__pyx_t_12); __Pyx_WriteUnraisable("chaplotype.alignReadToHaplotype", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XDECREF(__pyx_v_hapSeqForAnnotating); __Pyx_XDECREF(__pyx_v_c); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "chaplotype.pyx":859 * ################################################################################################### * * cdef void logAlignmentOfReadToHaplotype(Haplotype hap, char* readSeq, char* readQuals, char* aln1, char* aln2, int mapPos, int alignScore, options): # <<<<<<<<<<<<<< * """ * Does exactly what it says on the tin: uses the logger to output a string representation of */ static void __pyx_f_10chaplotype_logAlignmentOfReadToHaplotype(struct __pyx_obj_10chaplotype_Haplotype *__pyx_v_hap, CYTHON_UNUSED char *__pyx_v_readSeq, char *__pyx_v_readQuals, char *__pyx_v_aln1, char *__pyx_v_aln2, int __pyx_v_mapPos, int __pyx_v_alignScore, PyObject *__pyx_v_options) { PyObject *__pyx_v_alignmentChars = 0; PyObject *__pyx_v_hapSeq = 0; PyObject *__pyx_v_aln1Str = 0; PyObject *__pyx_v_aln2Str = 0; int __pyx_v_minQual; int __pyx_v_qualIndex; int __pyx_v_hapIndex; int __pyx_v_hadInsertion; PyObject *__pyx_v_theChar1 = NULL; PyObject *__pyx_v_theChar2 = NULL; PyObject *__pyx_v_newChar = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; int __pyx_t_3; Py_ssize_t __pyx_t_4; PyObject *(*__pyx_t_5)(PyObject *); PyObject *__pyx_t_6 = NULL; PyObject *__pyx_t_7 = NULL; PyObject *__pyx_t_8 = NULL; PyObject *(*__pyx_t_9)(PyObject *); Py_ssize_t __pyx_t_10; int __pyx_t_11; int __pyx_t_12; int __pyx_lineno = 0; const char *__pyx_filename = NULL; int __pyx_clineno = 0; __Pyx_RefNannySetupContext("logAlignmentOfReadToHaplotype", 0); /* "chaplotype.pyx":864 * the final alignment of this read to this haplotype. * """ * cdef list alignmentChars = [" "] * mapPos # <<<<<<<<<<<<<< * cdef str hapSeq = str(hap.haplotypeSequence) * cdef str aln1Str = str(aln1) */ __pyx_t_1 = PyList_New(1 * ((__pyx_v_mapPos<0) ? 0:__pyx_v_mapPos)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 864; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); { Py_ssize_t __pyx_temp; for (__pyx_temp=0; __pyx_temp < __pyx_v_mapPos; __pyx_temp++) { __Pyx_INCREF(((PyObject *)__pyx_kp_s_22)); PyList_SET_ITEM(__pyx_t_1, __pyx_temp, ((PyObject *)__pyx_kp_s_22)); __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_22)); } } __pyx_v_alignmentChars = __pyx_t_1; __pyx_t_1 = 0; /* "chaplotype.pyx":865 * """ * cdef list alignmentChars = [" "] * mapPos * cdef str hapSeq = str(hap.haplotypeSequence) # <<<<<<<<<<<<<< * cdef str aln1Str = str(aln1) * cdef str aln2Str = str(aln2) */ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 865; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_INCREF(((PyObject *)__pyx_v_hap->haplotypeSequence)); PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_v_hap->haplotypeSequence)); __Pyx_GIVEREF(((PyObject *)__pyx_v_hap->haplotypeSequence)); __pyx_t_2 = PyObject_Call(((PyObject *)((PyObject*)(&PyString_Type))), ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 865; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; if (!(likely(PyString_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected str, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 865; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_hapSeq = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":866 * cdef list alignmentChars = [" "] * mapPos * cdef str hapSeq = str(hap.haplotypeSequence) * cdef str aln1Str = str(aln1) # <<<<<<<<<<<<<< * cdef str aln2Str = str(aln2) * cdef int minQual = options.minBaseQual */ __pyx_t_2 = PyBytes_FromString(__pyx_v_aln1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 866; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 866; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_t_2)); __Pyx_GIVEREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(((PyObject *)((PyObject*)(&PyString_Type))), ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 866; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; if (!(likely(PyString_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected str, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 866; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_aln1Str = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":867 * cdef str hapSeq = str(hap.haplotypeSequence) * cdef str aln1Str = str(aln1) * cdef str aln2Str = str(aln2) # <<<<<<<<<<<<<< * cdef int minQual = options.minBaseQual * cdef int qualIndex = 0 */ __pyx_t_2 = PyBytes_FromString(__pyx_v_aln2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 867; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 867; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_t_2)); __Pyx_GIVEREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __pyx_t_2 = PyObject_Call(((PyObject *)((PyObject*)(&PyString_Type))), ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 867; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; if (!(likely(PyString_CheckExact(__pyx_t_2))||((__pyx_t_2) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected str, got %.200s", Py_TYPE(__pyx_t_2)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 867; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_v_aln2Str = ((PyObject*)__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":868 * cdef str aln1Str = str(aln1) * cdef str aln2Str = str(aln2) * cdef int minQual = options.minBaseQual # <<<<<<<<<<<<<< * cdef int qualIndex = 0 * cdef int hapIndex = mapPos */ __pyx_t_2 = PyObject_GetAttr(__pyx_v_options, __pyx_n_s__minBaseQual); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 868; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 868; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_v_minQual = __pyx_t_3; /* "chaplotype.pyx":869 * cdef str aln2Str = str(aln2) * cdef int minQual = options.minBaseQual * cdef int qualIndex = 0 # <<<<<<<<<<<<<< * cdef int hapIndex = mapPos * cdef int hadInsertion = False */ __pyx_v_qualIndex = 0; /* "chaplotype.pyx":870 * cdef int minQual = options.minBaseQual * cdef int qualIndex = 0 * cdef int hapIndex = mapPos # <<<<<<<<<<<<<< * cdef int hadInsertion = False * */ __pyx_v_hapIndex = __pyx_v_mapPos; /* "chaplotype.pyx":871 * cdef int qualIndex = 0 * cdef int hapIndex = mapPos * cdef int hadInsertion = False # <<<<<<<<<<<<<< * * for theChar1,theChar2 in zip(aln1Str,aln2Str): */ __pyx_v_hadInsertion = 0; /* "chaplotype.pyx":873 * cdef int hadInsertion = False * * for theChar1,theChar2 in zip(aln1Str,aln2Str): # <<<<<<<<<<<<<< * * if hapIndex >= len(hapSeq): */ __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __Pyx_INCREF(((PyObject *)__pyx_v_aln1Str)); PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_v_aln1Str)); __Pyx_GIVEREF(((PyObject *)__pyx_v_aln1Str)); __Pyx_INCREF(((PyObject *)__pyx_v_aln2Str)); PyTuple_SET_ITEM(__pyx_t_2, 1, ((PyObject *)__pyx_v_aln2Str)); __Pyx_GIVEREF(((PyObject *)__pyx_v_aln2Str)); __pyx_t_1 = PyObject_Call(__pyx_builtin_zip, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; if (PyList_CheckExact(__pyx_t_1) || PyTuple_CheckExact(__pyx_t_1)) { __pyx_t_2 = __pyx_t_1; __Pyx_INCREF(__pyx_t_2); __pyx_t_4 = 0; __pyx_t_5 = NULL; } else { __pyx_t_4 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_5 = Py_TYPE(__pyx_t_2)->tp_iternext; } __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; for (;;) { if (!__pyx_t_5 && PyList_CheckExact(__pyx_t_2)) { if (__pyx_t_4 >= PyList_GET_SIZE(__pyx_t_2)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_1 = PyList_GET_ITEM(__pyx_t_2, __pyx_t_4); __Pyx_INCREF(__pyx_t_1); __pyx_t_4++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_1 = PySequence_ITEM(__pyx_t_2, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else if (!__pyx_t_5 && PyTuple_CheckExact(__pyx_t_2)) { if (__pyx_t_4 >= PyTuple_GET_SIZE(__pyx_t_2)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_4); __Pyx_INCREF(__pyx_t_1); __pyx_t_4++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_1 = PySequence_ITEM(__pyx_t_2, __pyx_t_4); __pyx_t_4++; if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else { __pyx_t_1 = __pyx_t_5(__pyx_t_2); if (unlikely(!__pyx_t_1)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_1); } if ((likely(PyTuple_CheckExact(__pyx_t_1))) || (PyList_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 = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } #if CYTHON_COMPILING_IN_CPYTHON if (likely(PyTuple_CheckExact(sequence))) { __pyx_t_6 = PyTuple_GET_ITEM(sequence, 0); __pyx_t_7 = PyTuple_GET_ITEM(sequence, 1); } else { __pyx_t_6 = PyList_GET_ITEM(sequence, 0); __pyx_t_7 = PyList_GET_ITEM(sequence, 1); } __Pyx_INCREF(__pyx_t_6); __Pyx_INCREF(__pyx_t_7); #else __pyx_t_6 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __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 = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; } else { Py_ssize_t index = -1; __pyx_t_8 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_9 = Py_TYPE(__pyx_t_8)->tp_iternext; index = 0; __pyx_t_6 = __pyx_t_9(__pyx_t_8); if (unlikely(!__pyx_t_6)) goto __pyx_L5_unpacking_failed; __Pyx_GOTREF(__pyx_t_6); index = 1; __pyx_t_7 = __pyx_t_9(__pyx_t_8); if (unlikely(!__pyx_t_7)) goto __pyx_L5_unpacking_failed; __Pyx_GOTREF(__pyx_t_7); if (__Pyx_IternextUnpackEndCheck(__pyx_t_9(__pyx_t_8), 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_9 = NULL; __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; goto __pyx_L6_unpacking_done; __pyx_L5_unpacking_failed:; __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; __pyx_t_9 = NULL; if (__Pyx_IterFinish() == 0) __Pyx_RaiseNeedMoreValuesError(index); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_L6_unpacking_done:; } __Pyx_XDECREF(__pyx_v_theChar1); __pyx_v_theChar1 = __pyx_t_6; __pyx_t_6 = 0; __Pyx_XDECREF(__pyx_v_theChar2); __pyx_v_theChar2 = __pyx_t_7; __pyx_t_7 = 0; /* "chaplotype.pyx":875 * for theChar1,theChar2 in zip(aln1Str,aln2Str): * * if hapIndex >= len(hapSeq): # <<<<<<<<<<<<<< * break * */ __pyx_t_10 = PyObject_Length(((PyObject *)__pyx_v_hapSeq)); if (unlikely(__pyx_t_10 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 875; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_11 = (__pyx_v_hapIndex >= __pyx_t_10); if (__pyx_t_11) { /* "chaplotype.pyx":876 * * if hapIndex >= len(hapSeq): * break # <<<<<<<<<<<<<< * * # Gap in read: deletion of ref bases. */ goto __pyx_L4_break; goto __pyx_L7; } __pyx_L7:; /* "chaplotype.pyx":879 * * # Gap in read: deletion of ref bases. * if theChar2 == "-": # <<<<<<<<<<<<<< * alignmentChars.append("-") * hapIndex += 1 */ __pyx_t_1 = PyObject_RichCompare(__pyx_v_theChar2, ((PyObject *)__pyx_kp_s_23), Py_EQ); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 879; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_11 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_11 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 879; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_11) { /* "chaplotype.pyx":880 * # Gap in read: deletion of ref bases. * if theChar2 == "-": * alignmentChars.append("-") # <<<<<<<<<<<<<< * hapIndex += 1 * */ __pyx_t_1 = ((PyObject *)__pyx_kp_s_23); __Pyx_INCREF(__pyx_t_1); __pyx_t_12 = PyList_Append(__pyx_v_alignmentChars, __pyx_t_1); if (unlikely(__pyx_t_12 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 880; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "chaplotype.pyx":881 * if theChar2 == "-": * alignmentChars.append("-") * hapIndex += 1 # <<<<<<<<<<<<<< * * # Gap in hap: deletion of ref bases. */ __pyx_v_hapIndex = (__pyx_v_hapIndex + 1); goto __pyx_L8; } /* "chaplotype.pyx":884 * * # Gap in hap: deletion of ref bases. * elif theChar1 == "-": # <<<<<<<<<<<<<< * #alignmentChars.append("-") * #hapOffset -= 1 */ __pyx_t_1 = PyObject_RichCompare(__pyx_v_theChar1, ((PyObject *)__pyx_kp_s_23), Py_EQ); __Pyx_XGOTREF(__pyx_t_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 884; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_11 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_11 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 884; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (__pyx_t_11) { /* "chaplotype.pyx":887 * #alignmentChars.append("-") * #hapOffset -= 1 * qualIndex += 1 # <<<<<<<<<<<<<< * hadInsertion = True * */ __pyx_v_qualIndex = (__pyx_v_qualIndex + 1); /* "chaplotype.pyx":888 * #hapOffset -= 1 * qualIndex += 1 * hadInsertion = True # <<<<<<<<<<<<<< * * elif theChar2 == hapSeq[hapIndex]: */ __pyx_v_hadInsertion = 1; goto __pyx_L8; } /* "chaplotype.pyx":890 * hadInsertion = True * * elif theChar2 == hapSeq[hapIndex]: # <<<<<<<<<<<<<< * * if hadInsertion: */ __pyx_t_1 = __Pyx_GetItemInt(((PyObject *)__pyx_v_hapSeq), __pyx_v_hapIndex, sizeof(int), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 890; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_7 = PyObject_RichCompare(__pyx_v_theChar2, __pyx_t_1, Py_EQ); __Pyx_XGOTREF(__pyx_t_7); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 890; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_11 = __Pyx_PyObject_IsTrue(__pyx_t_7); if (unlikely(__pyx_t_11 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 890; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; if (__pyx_t_11) { /* "chaplotype.pyx":892 * elif theChar2 == hapSeq[hapIndex]: * * if hadInsertion: # <<<<<<<<<<<<<< * alignmentChars.append("!") * else: */ if (__pyx_v_hadInsertion) { /* "chaplotype.pyx":893 * * if hadInsertion: * alignmentChars.append("!") # <<<<<<<<<<<<<< * else: * alignmentChars.append(".") */ __pyx_t_7 = ((PyObject *)__pyx_kp_s_24); __Pyx_INCREF(__pyx_t_7); __pyx_t_12 = PyList_Append(__pyx_v_alignmentChars, __pyx_t_7); if (unlikely(__pyx_t_12 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 893; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; goto __pyx_L9; } /*else*/ { /* "chaplotype.pyx":895 * alignmentChars.append("!") * else: * alignmentChars.append(".") # <<<<<<<<<<<<<< * * hadInsertion = False */ __pyx_t_7 = ((PyObject *)__pyx_kp_s_25); __Pyx_INCREF(__pyx_t_7); __pyx_t_12 = PyList_Append(__pyx_v_alignmentChars, __pyx_t_7); if (unlikely(__pyx_t_12 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 895; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; } __pyx_L9:; /* "chaplotype.pyx":897 * alignmentChars.append(".") * * hadInsertion = False # <<<<<<<<<<<<<< * * qualIndex += 1 */ __pyx_v_hadInsertion = 0; /* "chaplotype.pyx":899 * hadInsertion = False * * qualIndex += 1 # <<<<<<<<<<<<<< * hapIndex += 1 * */ __pyx_v_qualIndex = (__pyx_v_qualIndex + 1); /* "chaplotype.pyx":900 * * qualIndex += 1 * hapIndex += 1 # <<<<<<<<<<<<<< * * else: */ __pyx_v_hapIndex = (__pyx_v_hapIndex + 1); goto __pyx_L8; } /*else*/ { /* "chaplotype.pyx":903 * * else: * newChar = None # <<<<<<<<<<<<<< * * if readQuals[qualIndex] > minQual: */ __Pyx_INCREF(Py_None); __Pyx_XDECREF(__pyx_v_newChar); __pyx_v_newChar = Py_None; /* "chaplotype.pyx":905 * newChar = None * * if readQuals[qualIndex] > minQual: # <<<<<<<<<<<<<< * newChar = theChar2.lower() * else: */ __pyx_t_11 = ((__pyx_v_readQuals[__pyx_v_qualIndex]) > __pyx_v_minQual); if (__pyx_t_11) { /* "chaplotype.pyx":906 * * if readQuals[qualIndex] > minQual: * newChar = theChar2.lower() # <<<<<<<<<<<<<< * else: * newChar = "n" */ __pyx_t_7 = PyObject_GetAttr(__pyx_v_theChar2, __pyx_n_s__lower); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 906; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __pyx_t_1 = PyObject_Call(__pyx_t_7, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 906; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __Pyx_DECREF(__pyx_v_newChar); __pyx_v_newChar = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L10; } /*else*/ { /* "chaplotype.pyx":908 * newChar = theChar2.lower() * else: * newChar = "n" # <<<<<<<<<<<<<< * * if hadInsertion: */ __Pyx_INCREF(((PyObject *)__pyx_n_s__n)); __Pyx_DECREF(__pyx_v_newChar); __pyx_v_newChar = ((PyObject *)__pyx_n_s__n); } __pyx_L10:; /* "chaplotype.pyx":910 * newChar = "n" * * if hadInsertion: # <<<<<<<<<<<<<< * newChar = newChar.upper() * */ if (__pyx_v_hadInsertion) { /* "chaplotype.pyx":911 * * if hadInsertion: * newChar = newChar.upper() # <<<<<<<<<<<<<< * * alignmentChars.append( newChar ) */ __pyx_t_1 = PyObject_GetAttr(__pyx_v_newChar, __pyx_n_s__upper); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 911; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_7 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 911; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_v_newChar); __pyx_v_newChar = __pyx_t_7; __pyx_t_7 = 0; goto __pyx_L11; } __pyx_L11:; /* "chaplotype.pyx":913 * newChar = newChar.upper() * * alignmentChars.append( newChar ) # <<<<<<<<<<<<<< * hadInsertion = False * */ __pyx_t_12 = PyList_Append(__pyx_v_alignmentChars, __pyx_v_newChar); if (unlikely(__pyx_t_12 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 913; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /* "chaplotype.pyx":914 * * alignmentChars.append( newChar ) * hadInsertion = False # <<<<<<<<<<<<<< * * qualIndex += 1 */ __pyx_v_hadInsertion = 0; /* "chaplotype.pyx":916 * hadInsertion = False * * qualIndex += 1 # <<<<<<<<<<<<<< * hapIndex += 1 * */ __pyx_v_qualIndex = (__pyx_v_qualIndex + 1); /* "chaplotype.pyx":917 * * qualIndex += 1 * hapIndex += 1 # <<<<<<<<<<<<<< * * logger.debug("".join(alignmentChars) + " Score = %s" %(alignScore)) */ __pyx_v_hapIndex = (__pyx_v_hapIndex + 1); } __pyx_L8:; } __pyx_L4_break:; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "chaplotype.pyx":919 * hapIndex += 1 * * logger.debug("".join(alignmentChars) + " Score = %s" %(alignScore)) # <<<<<<<<<<<<<< * * ################################################################################################### */ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__logger); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 919; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_2); __pyx_t_7 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__debug); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 919; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_9), __pyx_n_s__join); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 919; __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 = 919; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_INCREF(((PyObject *)__pyx_v_alignmentChars)); PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_v_alignmentChars)); __Pyx_GIVEREF(((PyObject *)__pyx_v_alignmentChars)); __pyx_t_6 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 919; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0; __pyx_t_1 = PyInt_FromLong(__pyx_v_alignScore); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 919; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_26), __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 919; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_2)); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyNumber_Add(__pyx_t_6, ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 919; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __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 = 919; __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_t_7, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 919; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; 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_7); __Pyx_XDECREF(__pyx_t_8); __Pyx_WriteUnraisable("chaplotype.logAlignmentOfReadToHaplotype", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_L0:; __Pyx_XDECREF(__pyx_v_alignmentChars); __Pyx_XDECREF(__pyx_v_hapSeq); __Pyx_XDECREF(__pyx_v_aln1Str); __Pyx_XDECREF(__pyx_v_aln2Str); __Pyx_XDECREF(__pyx_v_theChar1); __Pyx_XDECREF(__pyx_v_theChar2); __Pyx_XDECREF(__pyx_v_newChar); __Pyx_RefNannyFinishContext(); } /* "samtoolsWrapper.pxd":346 * * # And here are accessor functions for the bit-fields * cdef inline int Read_IsReverse(cAlignedRead* theRead): # <<<<<<<<<<<<<< * return ( (theRead.bitFlag & BAM_FREVERSE) != 0) * */ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsReverse(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_IsReverse", 0); /* "samtoolsWrapper.pxd":347 * # And here are accessor functions for the bit-fields * cdef inline int Read_IsReverse(cAlignedRead* theRead): * return ( (theRead.bitFlag & BAM_FREVERSE) != 0) # <<<<<<<<<<<<<< * * cdef inline int Read_IsPaired(cAlignedRead* theRead): */ __pyx_r = ((__pyx_v_theRead->bitFlag & 16) != 0); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "samtoolsWrapper.pxd":349 * return ( (theRead.bitFlag & BAM_FREVERSE) != 0) * * cdef inline int Read_IsPaired(cAlignedRead* theRead): # <<<<<<<<<<<<<< * return ( (theRead.bitFlag & BAM_FPAIRED) != 0) * */ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsPaired(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_IsPaired", 0); /* "samtoolsWrapper.pxd":350 * * cdef inline int Read_IsPaired(cAlignedRead* theRead): * return ( (theRead.bitFlag & BAM_FPAIRED) != 0) # <<<<<<<<<<<<<< * * cdef inline int Read_IsProperPair(cAlignedRead* theRead): */ __pyx_r = ((__pyx_v_theRead->bitFlag & 1) != 0); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "samtoolsWrapper.pxd":352 * return ( (theRead.bitFlag & BAM_FPAIRED) != 0) * * cdef inline int Read_IsProperPair(cAlignedRead* theRead): # <<<<<<<<<<<<<< * return ( (theRead.bitFlag & BAM_FPROPER_PAIR) != 0) * */ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsProperPair(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_IsProperPair", 0); /* "samtoolsWrapper.pxd":353 * * cdef inline int Read_IsProperPair(cAlignedRead* theRead): * return ( (theRead.bitFlag & BAM_FPROPER_PAIR) != 0) # <<<<<<<<<<<<<< * * cdef inline int Read_IsDuplicate(cAlignedRead* theRead): */ __pyx_r = ((__pyx_v_theRead->bitFlag & 2) != 0); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "samtoolsWrapper.pxd":355 * return ( (theRead.bitFlag & BAM_FPROPER_PAIR) != 0) * * cdef inline int Read_IsDuplicate(cAlignedRead* theRead): # <<<<<<<<<<<<<< * return ( (theRead.bitFlag & BAM_FDUP) != 0) * */ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsDuplicate(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_IsDuplicate", 0); /* "samtoolsWrapper.pxd":356 * * cdef inline int Read_IsDuplicate(cAlignedRead* theRead): * return ( (theRead.bitFlag & BAM_FDUP) != 0) # <<<<<<<<<<<<<< * * cdef inline int Read_IsUnmapped(cAlignedRead* theRead): */ __pyx_r = ((__pyx_v_theRead->bitFlag & 1024) != 0); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "samtoolsWrapper.pxd":358 * return ( (theRead.bitFlag & BAM_FDUP) != 0) * * cdef inline int Read_IsUnmapped(cAlignedRead* theRead): # <<<<<<<<<<<<<< * return ( (theRead.bitFlag & BAM_FUNMAP) != 0) * */ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsUnmapped(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_IsUnmapped", 0); /* "samtoolsWrapper.pxd":359 * * cdef inline int Read_IsUnmapped(cAlignedRead* theRead): * return ( (theRead.bitFlag & BAM_FUNMAP) != 0) # <<<<<<<<<<<<<< * * cdef inline int Read_MateIsUnmapped(cAlignedRead* theRead): */ __pyx_r = ((__pyx_v_theRead->bitFlag & 4) != 0); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "samtoolsWrapper.pxd":361 * return ( (theRead.bitFlag & BAM_FUNMAP) != 0) * * cdef inline int Read_MateIsUnmapped(cAlignedRead* theRead): # <<<<<<<<<<<<<< * return ( (theRead.bitFlag & BAM_FMUNMAP) != 0) * */ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_MateIsUnmapped(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_MateIsUnmapped", 0); /* "samtoolsWrapper.pxd":362 * * cdef inline int Read_MateIsUnmapped(cAlignedRead* theRead): * return ( (theRead.bitFlag & BAM_FMUNMAP) != 0) # <<<<<<<<<<<<<< * * cdef inline int Read_MateIsReverse(cAlignedRead* theRead): */ __pyx_r = ((__pyx_v_theRead->bitFlag & 8) != 0); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "samtoolsWrapper.pxd":364 * return ( (theRead.bitFlag & BAM_FMUNMAP) != 0) * * cdef inline int Read_MateIsReverse(cAlignedRead* theRead): # <<<<<<<<<<<<<< * return ( (theRead.bitFlag & BAM_FMREVERSE) != 0) * */ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_MateIsReverse(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_MateIsReverse", 0); /* "samtoolsWrapper.pxd":365 * * cdef inline int Read_MateIsReverse(cAlignedRead* theRead): * return ( (theRead.bitFlag & BAM_FMREVERSE) != 0) # <<<<<<<<<<<<<< * * cdef inline int Read_IsQCFail(cAlignedRead* theRead): */ __pyx_r = ((__pyx_v_theRead->bitFlag & 32) != 0); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "samtoolsWrapper.pxd":367 * return ( (theRead.bitFlag & BAM_FMREVERSE) != 0) * * cdef inline int Read_IsQCFail(cAlignedRead* theRead): # <<<<<<<<<<<<<< * return ( (theRead.bitFlag & BAM_FQCFAIL) != 0) * */ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsQCFail(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_IsQCFail", 0); /* "samtoolsWrapper.pxd":368 * * cdef inline int Read_IsQCFail(cAlignedRead* theRead): * return ( (theRead.bitFlag & BAM_FQCFAIL) != 0) # <<<<<<<<<<<<<< * * cdef inline int Read_IsReadOne(cAlignedRead* theRead): */ __pyx_r = ((__pyx_v_theRead->bitFlag & 512) != 0); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "samtoolsWrapper.pxd":370 * return ( (theRead.bitFlag & BAM_FQCFAIL) != 0) * * cdef inline int Read_IsReadOne(cAlignedRead* theRead): # <<<<<<<<<<<<<< * return ( (theRead.bitFlag & BAM_FREAD1) != 0) * */ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsReadOne(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_IsReadOne", 0); /* "samtoolsWrapper.pxd":371 * * cdef inline int Read_IsReadOne(cAlignedRead* theRead): * return ( (theRead.bitFlag & BAM_FREAD1) != 0) # <<<<<<<<<<<<<< * * cdef inline int Read_IsSecondaryAlignment(cAlignedRead* theRead): */ __pyx_r = ((__pyx_v_theRead->bitFlag & 64) != 0); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "samtoolsWrapper.pxd":373 * return ( (theRead.bitFlag & BAM_FREAD1) != 0) * * cdef inline int Read_IsSecondaryAlignment(cAlignedRead* theRead): # <<<<<<<<<<<<<< * return ( (theRead.bitFlag & BAM_FSECONDARY) != 0) * */ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsSecondaryAlignment(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_IsSecondaryAlignment", 0); /* "samtoolsWrapper.pxd":374 * * cdef inline int Read_IsSecondaryAlignment(cAlignedRead* theRead): * return ( (theRead.bitFlag & BAM_FSECONDARY) != 0) # <<<<<<<<<<<<<< * * cdef inline int Read_IsCompressed(cAlignedRead* theRead): */ __pyx_r = ((__pyx_v_theRead->bitFlag & 256) != 0); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "samtoolsWrapper.pxd":376 * return ( (theRead.bitFlag & BAM_FSECONDARY) != 0) * * cdef inline int Read_IsCompressed(cAlignedRead* theRead): # <<<<<<<<<<<<<< * return ( (theRead.bitFlag & BAM_FCOMPRESSED) != 0) * */ static CYTHON_INLINE int __pyx_f_15samtoolsWrapper_Read_IsCompressed(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_IsCompressed", 0); /* "samtoolsWrapper.pxd":377 * * cdef inline int Read_IsCompressed(cAlignedRead* theRead): * return ( (theRead.bitFlag & BAM_FCOMPRESSED) != 0) # <<<<<<<<<<<<<< * * cdef inline void Read_SetQCFail(cAlignedRead* theRead): */ __pyx_r = ((__pyx_v_theRead->bitFlag & 2048) != 0); goto __pyx_L0; __pyx_r = 0; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "samtoolsWrapper.pxd":379 * return ( (theRead.bitFlag & BAM_FCOMPRESSED) != 0) * * cdef inline void Read_SetQCFail(cAlignedRead* theRead): # <<<<<<<<<<<<<< * theRead.bitFlag |= BAM_FQCFAIL * */ static CYTHON_INLINE void __pyx_f_15samtoolsWrapper_Read_SetQCFail(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_SetQCFail", 0); /* "samtoolsWrapper.pxd":380 * * cdef inline void Read_SetQCFail(cAlignedRead* theRead): * theRead.bitFlag |= BAM_FQCFAIL # <<<<<<<<<<<<<< * * cdef inline void Read_SetCompressed(cAlignedRead* theRead): */ __pyx_v_theRead->bitFlag = (__pyx_v_theRead->bitFlag | 512); __Pyx_RefNannyFinishContext(); } /* "samtoolsWrapper.pxd":382 * theRead.bitFlag |= BAM_FQCFAIL * * cdef inline void Read_SetCompressed(cAlignedRead* theRead): # <<<<<<<<<<<<<< * theRead.bitFlag |= BAM_FCOMPRESSED * */ static CYTHON_INLINE void __pyx_f_15samtoolsWrapper_Read_SetCompressed(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_SetCompressed", 0); /* "samtoolsWrapper.pxd":383 * * cdef inline void Read_SetCompressed(cAlignedRead* theRead): * theRead.bitFlag |= BAM_FCOMPRESSED # <<<<<<<<<<<<<< * * cdef inline void Read_SetUnCompressed(cAlignedRead* theRead): */ __pyx_v_theRead->bitFlag = (__pyx_v_theRead->bitFlag | 2048); __Pyx_RefNannyFinishContext(); } /* "samtoolsWrapper.pxd":385 * theRead.bitFlag |= BAM_FCOMPRESSED * * cdef inline void Read_SetUnCompressed(cAlignedRead* theRead): # <<<<<<<<<<<<<< * theRead.bitFlag &= (~BAM_FCOMPRESSED) * */ static CYTHON_INLINE void __pyx_f_15samtoolsWrapper_Read_SetUnCompressed(__pyx_t_15samtoolsWrapper_cAlignedRead *__pyx_v_theRead) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("Read_SetUnCompressed", 0); /* "samtoolsWrapper.pxd":386 * * cdef inline void Read_SetUnCompressed(cAlignedRead* theRead): * theRead.bitFlag &= (~BAM_FCOMPRESSED) # <<<<<<<<<<<<<< * * ################################################################################################### */ __pyx_v_theRead->bitFlag = (__pyx_v_theRead->bitFlag & (~2048)); __Pyx_RefNannyFinishContext(); } static struct __pyx_vtabstruct_10chaplotype_Haplotype __pyx_vtable_10chaplotype_Haplotype; static PyObject *__pyx_tp_new_10chaplotype_Haplotype(PyTypeObject *t, CYTHON_UNUSED PyObject *a, CYTHON_UNUSED PyObject *k) { struct __pyx_obj_10chaplotype_Haplotype *p; PyObject *o = (*t->tp_alloc)(t, 0); if (!o) return 0; p = ((struct __pyx_obj_10chaplotype_Haplotype *)o); p->__pyx_vtab = __pyx_vtabptr_10chaplotype_Haplotype; p->refName = ((PyObject*)Py_None); Py_INCREF(Py_None); p->variants = ((PyObject*)Py_None); Py_INCREF(Py_None); p->haplotypeSequence = ((PyObject*)Py_None); Py_INCREF(Py_None); p->refFile = ((struct __pyx_obj_9fastafile_FastaFile *)Py_None); Py_INCREF(Py_None); p->options = Py_None; Py_INCREF(Py_None); p->referenceSequence = ((PyObject*)Py_None); Py_INCREF(Py_None); p->indelErrorModel = ((PyObject*)Py_None); Py_INCREF(Py_None); p->localGapOpenQ = ((PyObject*)Py_None); Py_INCREF(Py_None); return o; } static void __pyx_tp_dealloc_10chaplotype_Haplotype(PyObject *o) { struct __pyx_obj_10chaplotype_Haplotype *p = (struct __pyx_obj_10chaplotype_Haplotype *)o; { PyObject *etype, *eval, *etb; PyErr_Fetch(&etype, &eval, &etb); ++Py_REFCNT(o); __pyx_pw_10chaplotype_9Haplotype_3__dealloc__(o); if (PyErr_Occurred()) PyErr_WriteUnraisable(o); --Py_REFCNT(o); PyErr_Restore(etype, eval, etb); } Py_CLEAR(p->refName); Py_CLEAR(p->variants); Py_CLEAR(p->haplotypeSequence); Py_CLEAR(p->refFile); Py_CLEAR(p->options); Py_CLEAR(p->referenceSequence); Py_CLEAR(p->indelErrorModel); Py_CLEAR(p->localGapOpenQ); (*Py_TYPE(o)->tp_free)(o); } static int __pyx_tp_traverse_10chaplotype_Haplotype(PyObject *o, visitproc v, void *a) { int e; struct __pyx_obj_10chaplotype_Haplotype *p = (struct __pyx_obj_10chaplotype_Haplotype *)o; if (p->refName) { e = (*v)(p->refName, a); if (e) return e; } if (p->variants) { e = (*v)(p->variants, a); if (e) return e; } if (p->haplotypeSequence) { e = (*v)(p->haplotypeSequence, a); if (e) return e; } if (p->refFile) { e = (*v)(((PyObject*)p->refFile), a); if (e) return e; } if (p->options) { e = (*v)(p->options, a); if (e) return e; } if (p->referenceSequence) { e = (*v)(p->referenceSequence, a); if (e) return e; } if (p->indelErrorModel) { e = (*v)(p->indelErrorModel, a); if (e) return e; } if (p->localGapOpenQ) { e = (*v)(p->localGapOpenQ, a); if (e) return e; } return 0; } static int __pyx_tp_clear_10chaplotype_Haplotype(PyObject *o) { struct __pyx_obj_10chaplotype_Haplotype *p = (struct __pyx_obj_10chaplotype_Haplotype *)o; PyObject* tmp; tmp = ((PyObject*)p->refName); p->refName = ((PyObject*)Py_None); Py_INCREF(Py_None); Py_XDECREF(tmp); tmp = ((PyObject*)p->variants); p->variants = ((PyObject*)Py_None); Py_INCREF(Py_None); Py_XDECREF(tmp); tmp = ((PyObject*)p->haplotypeSequence); p->haplotypeSequence = ((PyObject*)Py_None); Py_INCREF(Py_None); Py_XDECREF(tmp); tmp = ((PyObject*)p->refFile); p->refFile = ((struct __pyx_obj_9fastafile_FastaFile *)Py_None); Py_INCREF(Py_None); Py_XDECREF(tmp); tmp = ((PyObject*)p->options); p->options = Py_None; Py_INCREF(Py_None); Py_XDECREF(tmp); tmp = ((PyObject*)p->referenceSequence); p->referenceSequence = ((PyObject*)Py_None); Py_INCREF(Py_None); Py_XDECREF(tmp); tmp = ((PyObject*)p->indelErrorModel); p->indelErrorModel = ((PyObject*)Py_None); Py_INCREF(Py_None); Py_XDECREF(tmp); tmp = ((PyObject*)p->localGapOpenQ); p->localGapOpenQ = ((PyObject*)Py_None); Py_INCREF(Py_None); Py_XDECREF(tmp); return 0; } static PyMethodDef __pyx_methods_10chaplotype_Haplotype[] = { {__Pyx_NAMESTR("__copy__"), (PyCFunction)__pyx_pw_10chaplotype_9Haplotype_5__copy__, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_10chaplotype_9Haplotype_4__copy__)}, {0, 0, 0, 0} }; static PyNumberMethods __pyx_tp_as_number_Haplotype = { 0, /*nb_add*/ 0, /*nb_subtract*/ 0, /*nb_multiply*/ #if PY_MAJOR_VERSION < 3 0, /*nb_divide*/ #endif 0, /*nb_remainder*/ 0, /*nb_divmod*/ 0, /*nb_power*/ 0, /*nb_negative*/ 0, /*nb_positive*/ 0, /*nb_absolute*/ 0, /*nb_nonzero*/ 0, /*nb_invert*/ 0, /*nb_lshift*/ 0, /*nb_rshift*/ 0, /*nb_and*/ 0, /*nb_xor*/ 0, /*nb_or*/ #if PY_MAJOR_VERSION < 3 0, /*nb_coerce*/ #endif 0, /*nb_int*/ #if PY_MAJOR_VERSION < 3 0, /*nb_long*/ #else 0, /*reserved*/ #endif 0, /*nb_float*/ #if PY_MAJOR_VERSION < 3 0, /*nb_oct*/ #endif #if PY_MAJOR_VERSION < 3 0, /*nb_hex*/ #endif 0, /*nb_inplace_add*/ 0, /*nb_inplace_subtract*/ 0, /*nb_inplace_multiply*/ #if PY_MAJOR_VERSION < 3 0, /*nb_inplace_divide*/ #endif 0, /*nb_inplace_remainder*/ 0, /*nb_inplace_power*/ 0, /*nb_inplace_lshift*/ 0, /*nb_inplace_rshift*/ 0, /*nb_inplace_and*/ 0, /*nb_inplace_xor*/ 0, /*nb_inplace_or*/ 0, /*nb_floor_divide*/ 0, /*nb_true_divide*/ 0, /*nb_inplace_floor_divide*/ 0, /*nb_inplace_true_divide*/ #if PY_VERSION_HEX >= 0x02050000 0, /*nb_index*/ #endif }; static PySequenceMethods __pyx_tp_as_sequence_Haplotype = { 0, /*sq_length*/ 0, /*sq_concat*/ 0, /*sq_repeat*/ 0, /*sq_item*/ 0, /*sq_slice*/ 0, /*sq_ass_item*/ 0, /*sq_ass_slice*/ 0, /*sq_contains*/ 0, /*sq_inplace_concat*/ 0, /*sq_inplace_repeat*/ }; static PyMappingMethods __pyx_tp_as_mapping_Haplotype = { 0, /*mp_length*/ 0, /*mp_subscript*/ 0, /*mp_ass_subscript*/ }; static PyBufferProcs __pyx_tp_as_buffer_Haplotype = { #if PY_MAJOR_VERSION < 3 0, /*bf_getreadbuffer*/ #endif #if PY_MAJOR_VERSION < 3 0, /*bf_getwritebuffer*/ #endif #if PY_MAJOR_VERSION < 3 0, /*bf_getsegcount*/ #endif #if PY_MAJOR_VERSION < 3 0, /*bf_getcharbuffer*/ #endif #if PY_VERSION_HEX >= 0x02060000 0, /*bf_getbuffer*/ #endif #if PY_VERSION_HEX >= 0x02060000 0, /*bf_releasebuffer*/ #endif }; static PyTypeObject __pyx_type_10chaplotype_Haplotype = { PyVarObject_HEAD_INIT(0, 0) __Pyx_NAMESTR("chaplotype.Haplotype"), /*tp_name*/ sizeof(struct __pyx_obj_10chaplotype_Haplotype), /*tp_basicsize*/ 0, /*tp_itemsize*/ __pyx_tp_dealloc_10chaplotype_Haplotype, /*tp_dealloc*/ 0, /*tp_print*/ 0, /*tp_getattr*/ 0, /*tp_setattr*/ #if PY_MAJOR_VERSION < 3 0, /*tp_compare*/ #else 0, /*reserved*/ #endif __pyx_pw_10chaplotype_9Haplotype_13__repr__, /*tp_repr*/ &__pyx_tp_as_number_Haplotype, /*tp_as_number*/ &__pyx_tp_as_sequence_Haplotype, /*tp_as_sequence*/ &__pyx_tp_as_mapping_Haplotype, /*tp_as_mapping*/ __pyx_pw_10chaplotype_9Haplotype_9__hash__, /*tp_hash*/ 0, /*tp_call*/ __pyx_pw_10chaplotype_9Haplotype_11__str__, /*tp_str*/ 0, /*tp_getattro*/ 0, /*tp_setattro*/ &__pyx_tp_as_buffer_Haplotype, /*tp_as_buffer*/ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/ __Pyx_DOCSTR("\n Class to encapsulate a single haplotype. This will store all the\n variants pertaining to this haplotype, as well as the reference\n sequence, all supporting reads, and the start and end positions of\n this haplotype in the reference.\n "), /*tp_doc*/ __pyx_tp_traverse_10chaplotype_Haplotype, /*tp_traverse*/ __pyx_tp_clear_10chaplotype_Haplotype, /*tp_clear*/ __pyx_pw_10chaplotype_9Haplotype_7__richcmp__, /*tp_richcompare*/ 0, /*tp_weaklistoffset*/ 0, /*tp_iter*/ 0, /*tp_iternext*/ __pyx_methods_10chaplotype_Haplotype, /*tp_methods*/ 0, /*tp_members*/ 0, /*tp_getset*/ 0, /*tp_base*/ 0, /*tp_dict*/ 0, /*tp_descr_get*/ 0, /*tp_descr_set*/ 0, /*tp_dictoffset*/ __pyx_pw_10chaplotype_9Haplotype_1__init__, /*tp_init*/ 0, /*tp_alloc*/ __pyx_tp_new_10chaplotype_Haplotype, /*tp_new*/ 0, /*tp_free*/ 0, /*tp_is_gc*/ 0, /*tp_bases*/ 0, /*tp_mro*/ 0, /*tp_cache*/ 0, /*tp_subclasses*/ 0, /*tp_weaklist*/ 0, /*tp_del*/ #if PY_VERSION_HEX >= 0x02060000 0, /*tp_version_tag*/ #endif }; static PyMethodDef __pyx_methods[] = { {0, 0, 0, 0} }; #if PY_MAJOR_VERSION >= 3 static struct PyModuleDef __pyx_moduledef = { PyModuleDef_HEAD_INIT, __Pyx_NAMESTR("chaplotype"), __Pyx_DOCSTR(__pyx_k_27), /* 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_1, __pyx_k_1, sizeof(__pyx_k_1), 0, 0, 1, 0}, {&__pyx_kp_s_100, __pyx_k_100, sizeof(__pyx_k_100), 0, 0, 1, 0}, {&__pyx_kp_s_101, __pyx_k_101, sizeof(__pyx_k_101), 0, 0, 1, 0}, {&__pyx_n_s_102, __pyx_k_102, sizeof(__pyx_k_102), 0, 0, 1, 1}, {&__pyx_kp_s_11, __pyx_k_11, sizeof(__pyx_k_11), 0, 0, 1, 0}, {&__pyx_kp_s_13, __pyx_k_13, sizeof(__pyx_k_13), 0, 0, 1, 0}, {&__pyx_kp_s_14, __pyx_k_14, sizeof(__pyx_k_14), 0, 0, 1, 0}, {&__pyx_kp_s_18, __pyx_k_18, sizeof(__pyx_k_18), 0, 0, 1, 0}, {&__pyx_kp_s_19, __pyx_k_19, sizeof(__pyx_k_19), 0, 0, 1, 0}, {&__pyx_kp_s_2, __pyx_k_2, sizeof(__pyx_k_2), 0, 0, 1, 0}, {&__pyx_kp_s_20, __pyx_k_20, sizeof(__pyx_k_20), 0, 0, 1, 0}, {&__pyx_kp_s_21, __pyx_k_21, sizeof(__pyx_k_21), 0, 0, 1, 0}, {&__pyx_kp_s_22, __pyx_k_22, sizeof(__pyx_k_22), 0, 0, 1, 0}, {&__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_25, __pyx_k_25, sizeof(__pyx_k_25), 0, 0, 1, 0}, {&__pyx_kp_s_26, __pyx_k_26, sizeof(__pyx_k_26), 0, 0, 1, 0}, {&__pyx_kp_s_3, __pyx_k_3, sizeof(__pyx_k_3), 0, 0, 1, 0}, {&__pyx_kp_s_30, __pyx_k_30, sizeof(__pyx_k_30), 0, 0, 1, 0}, {&__pyx_kp_s_31, __pyx_k_31, sizeof(__pyx_k_31), 0, 0, 1, 0}, {&__pyx_kp_s_32, __pyx_k_32, sizeof(__pyx_k_32), 0, 0, 1, 0}, {&__pyx_kp_s_33, __pyx_k_33, sizeof(__pyx_k_33), 0, 0, 1, 0}, {&__pyx_kp_s_34, __pyx_k_34, sizeof(__pyx_k_34), 0, 0, 1, 0}, {&__pyx_kp_s_35, __pyx_k_35, sizeof(__pyx_k_35), 0, 0, 1, 0}, {&__pyx_kp_s_36, __pyx_k_36, sizeof(__pyx_k_36), 0, 0, 1, 0}, {&__pyx_kp_s_37, __pyx_k_37, sizeof(__pyx_k_37), 0, 0, 1, 0}, {&__pyx_kp_s_38, __pyx_k_38, sizeof(__pyx_k_38), 0, 0, 1, 0}, {&__pyx_kp_s_39, __pyx_k_39, sizeof(__pyx_k_39), 0, 0, 1, 0}, {&__pyx_kp_s_4, __pyx_k_4, sizeof(__pyx_k_4), 0, 0, 1, 0}, {&__pyx_kp_s_40, __pyx_k_40, sizeof(__pyx_k_40), 0, 0, 1, 0}, {&__pyx_kp_s_41, __pyx_k_41, sizeof(__pyx_k_41), 0, 0, 1, 0}, {&__pyx_kp_s_42, __pyx_k_42, sizeof(__pyx_k_42), 0, 0, 1, 0}, {&__pyx_kp_s_43, __pyx_k_43, sizeof(__pyx_k_43), 0, 0, 1, 0}, {&__pyx_kp_s_44, __pyx_k_44, sizeof(__pyx_k_44), 0, 0, 1, 0}, {&__pyx_kp_s_45, __pyx_k_45, sizeof(__pyx_k_45), 0, 0, 1, 0}, {&__pyx_kp_s_46, __pyx_k_46, sizeof(__pyx_k_46), 0, 0, 1, 0}, {&__pyx_kp_s_47, __pyx_k_47, sizeof(__pyx_k_47), 0, 0, 1, 0}, {&__pyx_kp_s_48, __pyx_k_48, sizeof(__pyx_k_48), 0, 0, 1, 0}, {&__pyx_kp_s_49, __pyx_k_49, sizeof(__pyx_k_49), 0, 0, 1, 0}, {&__pyx_kp_s_50, __pyx_k_50, sizeof(__pyx_k_50), 0, 0, 1, 0}, {&__pyx_kp_s_51, __pyx_k_51, sizeof(__pyx_k_51), 0, 0, 1, 0}, {&__pyx_kp_s_52, __pyx_k_52, sizeof(__pyx_k_52), 0, 0, 1, 0}, {&__pyx_kp_s_53, __pyx_k_53, sizeof(__pyx_k_53), 0, 0, 1, 0}, {&__pyx_kp_s_54, __pyx_k_54, sizeof(__pyx_k_54), 0, 0, 1, 0}, {&__pyx_kp_s_55, __pyx_k_55, sizeof(__pyx_k_55), 0, 0, 1, 0}, {&__pyx_kp_s_56, __pyx_k_56, sizeof(__pyx_k_56), 0, 0, 1, 0}, {&__pyx_kp_s_57, __pyx_k_57, sizeof(__pyx_k_57), 0, 0, 1, 0}, {&__pyx_kp_s_58, __pyx_k_58, sizeof(__pyx_k_58), 0, 0, 1, 0}, {&__pyx_kp_s_59, __pyx_k_59, sizeof(__pyx_k_59), 0, 0, 1, 0}, {&__pyx_kp_s_6, __pyx_k_6, sizeof(__pyx_k_6), 0, 0, 1, 0}, {&__pyx_kp_s_60, __pyx_k_60, sizeof(__pyx_k_60), 0, 0, 1, 0}, {&__pyx_kp_s_61, __pyx_k_61, sizeof(__pyx_k_61), 0, 0, 1, 0}, {&__pyx_kp_s_62, __pyx_k_62, sizeof(__pyx_k_62), 0, 0, 1, 0}, {&__pyx_kp_s_63, __pyx_k_63, sizeof(__pyx_k_63), 0, 0, 1, 0}, {&__pyx_kp_s_64, __pyx_k_64, sizeof(__pyx_k_64), 0, 0, 1, 0}, {&__pyx_kp_s_65, __pyx_k_65, sizeof(__pyx_k_65), 0, 0, 1, 0}, {&__pyx_kp_s_66, __pyx_k_66, sizeof(__pyx_k_66), 0, 0, 1, 0}, {&__pyx_kp_s_67, __pyx_k_67, sizeof(__pyx_k_67), 0, 0, 1, 0}, {&__pyx_kp_s_68, __pyx_k_68, sizeof(__pyx_k_68), 0, 0, 1, 0}, {&__pyx_kp_s_69, __pyx_k_69, sizeof(__pyx_k_69), 0, 0, 1, 0}, {&__pyx_kp_s_7, __pyx_k_7, sizeof(__pyx_k_7), 0, 0, 1, 0}, {&__pyx_kp_s_70, __pyx_k_70, sizeof(__pyx_k_70), 0, 0, 1, 0}, {&__pyx_kp_s_71, __pyx_k_71, sizeof(__pyx_k_71), 0, 0, 1, 0}, {&__pyx_kp_s_72, __pyx_k_72, sizeof(__pyx_k_72), 0, 0, 1, 0}, {&__pyx_kp_s_73, __pyx_k_73, sizeof(__pyx_k_73), 0, 0, 1, 0}, {&__pyx_kp_s_74, __pyx_k_74, sizeof(__pyx_k_74), 0, 0, 1, 0}, {&__pyx_kp_s_75, __pyx_k_75, sizeof(__pyx_k_75), 0, 0, 1, 0}, {&__pyx_kp_s_76, __pyx_k_76, sizeof(__pyx_k_76), 0, 0, 1, 0}, {&__pyx_kp_s_77, __pyx_k_77, sizeof(__pyx_k_77), 0, 0, 1, 0}, {&__pyx_kp_s_78, __pyx_k_78, sizeof(__pyx_k_78), 0, 0, 1, 0}, {&__pyx_kp_s_79, __pyx_k_79, sizeof(__pyx_k_79), 0, 0, 1, 0}, {&__pyx_kp_s_80, __pyx_k_80, sizeof(__pyx_k_80), 0, 0, 1, 0}, {&__pyx_kp_s_81, __pyx_k_81, sizeof(__pyx_k_81), 0, 0, 1, 0}, {&__pyx_kp_s_82, __pyx_k_82, sizeof(__pyx_k_82), 0, 0, 1, 0}, {&__pyx_kp_s_83, __pyx_k_83, sizeof(__pyx_k_83), 0, 0, 1, 0}, {&__pyx_kp_s_84, __pyx_k_84, sizeof(__pyx_k_84), 0, 0, 1, 0}, {&__pyx_kp_s_85, __pyx_k_85, sizeof(__pyx_k_85), 0, 0, 1, 0}, {&__pyx_kp_s_86, __pyx_k_86, sizeof(__pyx_k_86), 0, 0, 1, 0}, {&__pyx_kp_s_87, __pyx_k_87, sizeof(__pyx_k_87), 0, 0, 1, 0}, {&__pyx_kp_s_88, __pyx_k_88, sizeof(__pyx_k_88), 0, 0, 1, 0}, {&__pyx_kp_s_89, __pyx_k_89, sizeof(__pyx_k_89), 0, 0, 1, 0}, {&__pyx_kp_s_9, __pyx_k_9, sizeof(__pyx_k_9), 0, 0, 1, 0}, {&__pyx_kp_s_90, __pyx_k_90, sizeof(__pyx_k_90), 0, 0, 1, 0}, {&__pyx_kp_s_91, __pyx_k_91, sizeof(__pyx_k_91), 0, 0, 1, 0}, {&__pyx_kp_s_92, __pyx_k_92, sizeof(__pyx_k_92), 0, 0, 1, 0}, {&__pyx_kp_s_93, __pyx_k_93, sizeof(__pyx_k_93), 0, 0, 1, 0}, {&__pyx_kp_s_94, __pyx_k_94, sizeof(__pyx_k_94), 0, 0, 1, 0}, {&__pyx_kp_s_95, __pyx_k_95, sizeof(__pyx_k_95), 0, 0, 1, 0}, {&__pyx_kp_s_96, __pyx_k_96, sizeof(__pyx_k_96), 0, 0, 1, 0}, {&__pyx_kp_s_97, __pyx_k_97, sizeof(__pyx_k_97), 0, 0, 1, 0}, {&__pyx_kp_s_98, __pyx_k_98, sizeof(__pyx_k_98), 0, 0, 1, 0}, {&__pyx_kp_s_99, __pyx_k_99, sizeof(__pyx_k_99), 0, 0, 1, 0}, {&__pyx_n_s__A, __pyx_k__A, sizeof(__pyx_k__A), 0, 0, 1, 1}, {&__pyx_n_s__AAAAAAAATAC, __pyx_k__AAAAAAAATAC, sizeof(__pyx_k__AAAAAAAATAC), 0, 0, 1, 1}, {&__pyx_n_s__AAAAAAAG, __pyx_k__AAAAAAAG, sizeof(__pyx_k__AAAAAAAG), 0, 0, 1, 1}, {&__pyx_n_s__AAAAAAATAC, __pyx_k__AAAAAAATAC, sizeof(__pyx_k__AAAAAAATAC), 0, 0, 1, 1}, {&__pyx_n_s__AAAAAAG, __pyx_k__AAAAAAG, sizeof(__pyx_k__AAAAAAG), 0, 0, 1, 1}, {&__pyx_n_s__AAAAAAT, __pyx_k__AAAAAAT, sizeof(__pyx_k__AAAAAAT), 0, 0, 1, 1}, {&__pyx_n_s__AAAAAATAC, __pyx_k__AAAAAATAC, sizeof(__pyx_k__AAAAAATAC), 0, 0, 1, 1}, {&__pyx_n_s__AAAAAC, __pyx_k__AAAAAC, sizeof(__pyx_k__AAAAAC), 0, 0, 1, 1}, {&__pyx_n_s__AAAAAG, __pyx_k__AAAAAG, sizeof(__pyx_k__AAAAAG), 0, 0, 1, 1}, {&__pyx_n_s__AAAAAGAAAAG, __pyx_k__AAAAAGAAAAG, sizeof(__pyx_k__AAAAAGAAAAG), 0, 0, 1, 1}, {&__pyx_n_s__AAAAAT, __pyx_k__AAAAAT, sizeof(__pyx_k__AAAAAT), 0, 0, 1, 1}, {&__pyx_n_s__AAAAATAC, __pyx_k__AAAAATAC, sizeof(__pyx_k__AAAAATAC), 0, 0, 1, 1}, {&__pyx_n_s__AAAAATAT, __pyx_k__AAAAATAT, sizeof(__pyx_k__AAAAATAT), 0, 0, 1, 1}, {&__pyx_n_s__AAAAC, __pyx_k__AAAAC, sizeof(__pyx_k__AAAAC), 0, 0, 1, 1}, {&__pyx_n_s__AAAAG, __pyx_k__AAAAG, sizeof(__pyx_k__AAAAG), 0, 0, 1, 1}, {&__pyx_n_s__AAAAGAAAG, __pyx_k__AAAAGAAAG, sizeof(__pyx_k__AAAAGAAAG), 0, 0, 1, 1}, {&__pyx_n_s__AAAAT, __pyx_k__AAAAT, sizeof(__pyx_k__AAAAT), 0, 0, 1, 1}, {&__pyx_n_s__AAAATAC, __pyx_k__AAAATAC, sizeof(__pyx_k__AAAATAC), 0, 0, 1, 1}, {&__pyx_n_s__AAAC, __pyx_k__AAAC, sizeof(__pyx_k__AAAC), 0, 0, 1, 1}, {&__pyx_n_s__AAACAGAC, __pyx_k__AAACAGAC, sizeof(__pyx_k__AAACAGAC), 0, 0, 1, 1}, {&__pyx_n_s__AAAG, __pyx_k__AAAG, sizeof(__pyx_k__AAAG), 0, 0, 1, 1}, {&__pyx_n_s__AAAT, __pyx_k__AAAT, sizeof(__pyx_k__AAAT), 0, 0, 1, 1}, {&__pyx_n_s__AACC, __pyx_k__AACC, sizeof(__pyx_k__AACC), 0, 0, 1, 1}, {&__pyx_n_s__AACT, __pyx_k__AACT, sizeof(__pyx_k__AACT), 0, 0, 1, 1}, {&__pyx_n_s__AAG, __pyx_k__AAG, sizeof(__pyx_k__AAG), 0, 0, 1, 1}, {&__pyx_n_s__AAGC, __pyx_k__AAGC, sizeof(__pyx_k__AAGC), 0, 0, 1, 1}, {&__pyx_n_s__AAGG, __pyx_k__AAGG, sizeof(__pyx_k__AAGG), 0, 0, 1, 1}, {&__pyx_n_s__AAGT, __pyx_k__AAGT, sizeof(__pyx_k__AAGT), 0, 0, 1, 1}, {&__pyx_n_s__AAT, __pyx_k__AAT, sizeof(__pyx_k__AAT), 0, 0, 1, 1}, {&__pyx_n_s__AATAT, __pyx_k__AATAT, sizeof(__pyx_k__AATAT), 0, 0, 1, 1}, {&__pyx_n_s__AATG, __pyx_k__AATG, sizeof(__pyx_k__AATG), 0, 0, 1, 1}, {&__pyx_n_s__AATT, __pyx_k__AATT, sizeof(__pyx_k__AATT), 0, 0, 1, 1}, {&__pyx_n_s__AC, __pyx_k__AC, sizeof(__pyx_k__AC), 0, 0, 1, 1}, {&__pyx_n_s__ACACACATAT, __pyx_k__ACACACATAT, sizeof(__pyx_k__ACACACATAT), 0, 0, 1, 1}, {&__pyx_n_s__ACAG, __pyx_k__ACAG, sizeof(__pyx_k__ACAG), 0, 0, 1, 1}, {&__pyx_n_s__ACAT, __pyx_k__ACAT, sizeof(__pyx_k__ACAT), 0, 0, 1, 1}, {&__pyx_n_s__ACATATATAT, __pyx_k__ACATATATAT, sizeof(__pyx_k__ACATATATAT), 0, 0, 1, 1}, {&__pyx_n_s__ACC, __pyx_k__ACC, sizeof(__pyx_k__ACC), 0, 0, 1, 1}, {&__pyx_n_s__ACCC, __pyx_k__ACCC, sizeof(__pyx_k__ACCC), 0, 0, 1, 1}, {&__pyx_n_s__ACCCC, __pyx_k__ACCCC, sizeof(__pyx_k__ACCCC), 0, 0, 1, 1}, {&__pyx_n_s__ACCT, __pyx_k__ACCT, sizeof(__pyx_k__ACCT), 0, 0, 1, 1}, {&__pyx_n_s__ACCTCC, __pyx_k__ACCTCC, sizeof(__pyx_k__ACCTCC), 0, 0, 1, 1}, {&__pyx_n_s__ACG, __pyx_k__ACG, sizeof(__pyx_k__ACG), 0, 0, 1, 1}, {&__pyx_n_s__ACT, __pyx_k__ACT, sizeof(__pyx_k__ACT), 0, 0, 1, 1}, {&__pyx_n_s__ACTG, __pyx_k__ACTG, sizeof(__pyx_k__ACTG), 0, 0, 1, 1}, {&__pyx_n_s__AG, __pyx_k__AG, sizeof(__pyx_k__AG), 0, 0, 1, 1}, {&__pyx_n_s__AGC, __pyx_k__AGC, sizeof(__pyx_k__AGC), 0, 0, 1, 1}, {&__pyx_n_s__AGCC, __pyx_k__AGCC, sizeof(__pyx_k__AGCC), 0, 0, 1, 1}, {&__pyx_n_s__AGCCTC, __pyx_k__AGCCTC, sizeof(__pyx_k__AGCCTC), 0, 0, 1, 1}, {&__pyx_n_s__AGG, __pyx_k__AGG, sizeof(__pyx_k__AGG), 0, 0, 1, 1}, {&__pyx_n_s__AGGC, __pyx_k__AGGC, sizeof(__pyx_k__AGGC), 0, 0, 1, 1}, {&__pyx_n_s__AGGCCG, __pyx_k__AGGCCG, sizeof(__pyx_k__AGGCCG), 0, 0, 1, 1}, {&__pyx_n_s__AGGCGG, __pyx_k__AGGCGG, sizeof(__pyx_k__AGGCGG), 0, 0, 1, 1}, {&__pyx_n_s__AGGG, __pyx_k__AGGG, sizeof(__pyx_k__AGGG), 0, 0, 1, 1}, {&__pyx_n_s__AT, __pyx_k__AT, sizeof(__pyx_k__AT), 0, 0, 1, 1}, {&__pyx_n_s__ATC, __pyx_k__ATC, sizeof(__pyx_k__ATC), 0, 0, 1, 1}, {&__pyx_n_s__ATCC, __pyx_k__ATCC, sizeof(__pyx_k__ATCC), 0, 0, 1, 1}, {&__pyx_n_s__ATCCC, __pyx_k__ATCCC, sizeof(__pyx_k__ATCCC), 0, 0, 1, 1}, {&__pyx_n_s__C, __pyx_k__C, sizeof(__pyx_k__C), 0, 0, 1, 1}, {&__pyx_n_s__CCCG, __pyx_k__CCCG, sizeof(__pyx_k__CCCG), 0, 0, 1, 1}, {&__pyx_n_s__CCG, __pyx_k__CCG, sizeof(__pyx_k__CCG), 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__HP, __pyx_k__HP, sizeof(__pyx_k__HP), 0, 0, 1, 1}, {&__pyx_n_s__Log, __pyx_k__Log, sizeof(__pyx_k__Log), 0, 0, 1, 1}, {&__pyx_n_s__N, __pyx_k__N, sizeof(__pyx_k__N), 0, 0, 1, 1}, {&__pyx_n_s__SC, __pyx_k__SC, sizeof(__pyx_k__SC), 0, 0, 1, 1}, {&__pyx_n_s__SeqLength, __pyx_k__SeqLength, sizeof(__pyx_k__SeqLength), 0, 0, 1, 1}, {&__pyx_n_s__StandardError, __pyx_k__StandardError, sizeof(__pyx_k__StandardError), 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____str__, __pyx_k____str__, sizeof(__pyx_k____str__), 0, 0, 1, 1}, {&__pyx_n_s____test__, __pyx_k____test__, sizeof(__pyx_k____test__), 0, 0, 1, 1}, {&__pyx_n_s__choice, __pyx_k__choice, sizeof(__pyx_k__choice), 0, 0, 1, 1}, {&__pyx_n_s__chr, __pyx_k__chr, sizeof(__pyx_k__chr), 0, 0, 1, 1}, {&__pyx_n_s__debug, __pyx_k__debug, sizeof(__pyx_k__debug), 0, 0, 1, 1}, {&__pyx_n_s__endPos, __pyx_k__endPos, sizeof(__pyx_k__endPos), 0, 0, 1, 1}, {&__pyx_n_s__enumerate, __pyx_k__enumerate, sizeof(__pyx_k__enumerate), 0, 0, 1, 1}, {&__pyx_n_s__error, __pyx_k__error, sizeof(__pyx_k__error), 0, 0, 1, 1}, {&__pyx_n_s__getLogger, __pyx_k__getLogger, sizeof(__pyx_k__getLogger), 0, 0, 1, 1}, {&__pyx_n_s__idx, __pyx_k__idx, sizeof(__pyx_k__idx), 0, 0, 1, 1}, {&__pyx_n_s__join, __pyx_k__join, sizeof(__pyx_k__join), 0, 0, 1, 1}, {&__pyx_n_s__logger, __pyx_k__logger, sizeof(__pyx_k__logger), 0, 0, 1, 1}, {&__pyx_n_s__logging, __pyx_k__logging, sizeof(__pyx_k__logging), 0, 0, 1, 1}, {&__pyx_n_s__lower, __pyx_k__lower, sizeof(__pyx_k__lower), 0, 0, 1, 1}, {&__pyx_n_s__math, __pyx_k__math, sizeof(__pyx_k__math), 0, 0, 1, 1}, {&__pyx_n_s__max, __pyx_k__max, sizeof(__pyx_k__max), 0, 0, 1, 1}, {&__pyx_n_s__maxReadLength, __pyx_k__maxReadLength, sizeof(__pyx_k__maxReadLength), 0, 0, 1, 1}, {&__pyx_n_s__min, __pyx_k__min, sizeof(__pyx_k__min), 0, 0, 1, 1}, {&__pyx_n_s__minBaseQual, __pyx_k__minBaseQual, sizeof(__pyx_k__minBaseQual), 0, 0, 1, 1}, {&__pyx_n_s__n, __pyx_k__n, sizeof(__pyx_k__n), 0, 0, 1, 1}, {&__pyx_n_s__options, __pyx_k__options, sizeof(__pyx_k__options), 0, 0, 1, 1}, {&__pyx_n_s__pi, __pyx_k__pi, sizeof(__pyx_k__pi), 0, 0, 1, 1}, {&__pyx_n_s__q, __pyx_k__q, sizeof(__pyx_k__q), 0, 0, 1, 1}, {&__pyx_n_s__random, __pyx_k__random, sizeof(__pyx_k__random), 0, 0, 1, 1}, {&__pyx_n_s__range, __pyx_k__range, sizeof(__pyx_k__range), 0, 0, 1, 1}, {&__pyx_n_s__refFile, __pyx_k__refFile, sizeof(__pyx_k__refFile), 0, 0, 1, 1}, {&__pyx_n_s__refName, __pyx_k__refName, sizeof(__pyx_k__refName), 0, 0, 1, 1}, {&__pyx_n_s__reversed, __pyx_k__reversed, sizeof(__pyx_k__reversed), 0, 0, 1, 1}, {&__pyx_n_s__startPos, __pyx_k__startPos, sizeof(__pyx_k__startPos), 0, 0, 1, 1}, {&__pyx_n_s__upper, __pyx_k__upper, sizeof(__pyx_k__upper), 0, 0, 1, 1}, {&__pyx_n_s__useIndelErrorModel, __pyx_k__useIndelErrorModel, sizeof(__pyx_k__useIndelErrorModel), 0, 0, 1, 1}, {&__pyx_n_s__variants, __pyx_k__variants, sizeof(__pyx_k__variants), 0, 0, 1, 1}, {&__pyx_n_s__verbosity, __pyx_k__verbosity, sizeof(__pyx_k__verbosity), 0, 0, 1, 1}, {&__pyx_n_s__warning, __pyx_k__warning, sizeof(__pyx_k__warning), 0, 0, 1, 1}, {&__pyx_n_s__zip, __pyx_k__zip, sizeof(__pyx_k__zip), 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 = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_enumerate = __Pyx_GetName(__pyx_b, __pyx_n_s__enumerate); if (!__pyx_builtin_enumerate) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __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 = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_min = __Pyx_GetName(__pyx_b, __pyx_n_s__min); if (!__pyx_builtin_min) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_max = __Pyx_GetName(__pyx_b, __pyx_n_s__max); if (!__pyx_builtin_max) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 318; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_zip = __Pyx_GetName(__pyx_b, __pyx_n_s__zip); if (!__pyx_builtin_zip) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 332; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_builtin_StandardError = __Pyx_GetName(__pyx_b, __pyx_n_s__StandardError); if (!__pyx_builtin_StandardError) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 384; __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 = 654; __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); /* "chaplotype.pyx":491 * * if self.likelihoodCache == NULL: * logger.error("Could not allocate haplotype cache") # <<<<<<<<<<<<<< * raise StandardError, "Out of memory in cHaplotype.alignReads" * else: */ __pyx_k_tuple_5 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 491; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_5); __Pyx_INCREF(((PyObject *)__pyx_kp_s_4)); PyTuple_SET_ITEM(__pyx_k_tuple_5, 0, ((PyObject *)__pyx_kp_s_4)); __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_4)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_5)); /* "chaplotype.pyx":498 * * if temp == NULL: * logger.error("Could not reallocate haplotype cache") # <<<<<<<<<<<<<< * raise StandardError, "Out of memory in cHaplotype.alignReads" * */ __pyx_k_tuple_8 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 498; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_8); __Pyx_INCREF(((PyObject *)__pyx_kp_s_7)); PyTuple_SET_ITEM(__pyx_k_tuple_8, 0, ((PyObject *)__pyx_kp_s_7)); __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_7)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_8)); /* "chaplotype.pyx":507 * * if printAlignments: * logger.debug("") # <<<<<<<<<<<<<< * logger.debug("#########################################################################") * logger.debug("Logging alignments for haplotype %s and sample %s" %(self, individualIndex)) */ __pyx_k_tuple_10 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 507; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_10); __Pyx_INCREF(((PyObject *)__pyx_kp_s_9)); PyTuple_SET_ITEM(__pyx_k_tuple_10, 0, ((PyObject *)__pyx_kp_s_9)); __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_9)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_10)); /* "chaplotype.pyx":508 * if printAlignments: * logger.debug("") * logger.debug("#########################################################################") # <<<<<<<<<<<<<< * logger.debug("Logging alignments for haplotype %s and sample %s" %(self, individualIndex)) * logger.debug("Haplotype sequence is followed by alignments of all reads (good then bad then broken mates)") */ __pyx_k_tuple_12 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 508; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_12); __Pyx_INCREF(((PyObject *)__pyx_kp_s_11)); PyTuple_SET_ITEM(__pyx_k_tuple_12, 0, ((PyObject *)__pyx_kp_s_11)); __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_11)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_12)); /* "chaplotype.pyx":510 * logger.debug("#########################################################################") * logger.debug("Logging alignments for haplotype %s and sample %s" %(self, individualIndex)) * logger.debug("Haplotype sequence is followed by alignments of all reads (good then bad then broken mates)") # <<<<<<<<<<<<<< * logger.debug("#########################################################################") * logger.debug(self.getMutatedSequence()) */ __pyx_k_tuple_15 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 510; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_15); __Pyx_INCREF(((PyObject *)__pyx_kp_s_14)); PyTuple_SET_ITEM(__pyx_k_tuple_15, 0, ((PyObject *)__pyx_kp_s_14)); __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_14)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_15)); /* "chaplotype.pyx":511 * logger.debug("Logging alignments for haplotype %s and sample %s" %(self, individualIndex)) * logger.debug("Haplotype sequence is followed by alignments of all reads (good then bad then broken mates)") * logger.debug("#########################################################################") # <<<<<<<<<<<<<< * logger.debug(self.getMutatedSequence()) * logger.debug("") */ __pyx_k_tuple_16 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 511; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_16); __Pyx_INCREF(((PyObject *)__pyx_kp_s_11)); PyTuple_SET_ITEM(__pyx_k_tuple_16, 0, ((PyObject *)__pyx_kp_s_11)); __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_11)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_16)); /* "chaplotype.pyx":513 * logger.debug("#########################################################################") * logger.debug(self.getMutatedSequence()) * logger.debug("") # <<<<<<<<<<<<<< * * while start != end: */ __pyx_k_tuple_17 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_17)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 513; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_17); __Pyx_INCREF(((PyObject *)__pyx_kp_s_9)); PyTuple_SET_ITEM(__pyx_k_tuple_17, 0, ((PyObject *)__pyx_kp_s_9)); __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_9)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_17)); /* "chaplotype.pyx":41 * ################################################################################################### * * logger = logging.getLogger("Log") # <<<<<<<<<<<<<< * * ################################################################################################### */ __pyx_k_tuple_28 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_28)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_28); __Pyx_INCREF(((PyObject *)__pyx_n_s__Log)); PyTuple_SET_ITEM(__pyx_k_tuple_28, 0, ((PyObject *)__pyx_n_s__Log)); __Pyx_GIVEREF(((PyObject *)__pyx_n_s__Log)); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_28)); /* "chaplotype.pyx":66 * * # Some nasty global variables * cdef list per_base_indel_errors = [2.9e-5, 2.9e-5, 2.9e-5, 2.9e-5, 4.3e-5, 1.1e-4, 2.4e-4, 5.7e-4, 1.0e-3, 1.4e-3] + [ 1.4e-3 + 4.3e-4*(n-10) for n in range(11,50) ] # <<<<<<<<<<<<<< * * # homopolymer indel error model */ __pyx_k_tuple_29 = PyTuple_New(2); if (unlikely(!__pyx_k_tuple_29)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_k_tuple_29); __Pyx_INCREF(__pyx_int_11); PyTuple_SET_ITEM(__pyx_k_tuple_29, 0, __pyx_int_11); __Pyx_GIVEREF(__pyx_int_11); __Pyx_INCREF(__pyx_int_50); PyTuple_SET_ITEM(__pyx_k_tuple_29, 1, __pyx_int_50); __Pyx_GIVEREF(__pyx_int_50); __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_29)); __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_3 = PyInt_FromLong(3); if (unlikely(!__pyx_int_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_4 = PyInt_FromLong(4); if (unlikely(!__pyx_int_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_5 = PyInt_FromLong(5); if (unlikely(!__pyx_int_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_6 = PyInt_FromLong(6); if (unlikely(!__pyx_int_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_7 = PyInt_FromLong(7); if (unlikely(!__pyx_int_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_8 = PyInt_FromLong(8); if (unlikely(!__pyx_int_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_9 = PyInt_FromLong(9); if (unlikely(!__pyx_int_9)) {__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_11 = PyInt_FromLong(11); if (unlikely(!__pyx_int_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_20 = PyInt_FromLong(20); if (unlikely(!__pyx_int_20)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_21 = PyInt_FromLong(21); if (unlikely(!__pyx_int_21)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;}; __pyx_int_50 = PyInt_FromLong(50); if (unlikely(!__pyx_int_50)) {__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 initchaplotype(void); /*proto*/ PyMODINIT_FUNC initchaplotype(void) #else PyMODINIT_FUNC PyInit_chaplotype(void); /*proto*/ PyMODINIT_FUNC PyInit_chaplotype(void) #endif { PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; double __pyx_t_7; PyObject *__pyx_t_8 = NULL; PyObject *__pyx_t_9 = NULL; PyObject *__pyx_t_10 = NULL; PyObject *__pyx_t_11 = NULL; PyObject *__pyx_t_12 = NULL; PyObject *__pyx_t_13 = NULL; PyObject *__pyx_t_14 = NULL; PyObject *__pyx_t_15 = NULL; PyObject *__pyx_t_16 = NULL; Py_ssize_t __pyx_t_17; PyObject *(*__pyx_t_18)(PyObject *); __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_chaplotype(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("chaplotype"), __pyx_methods, __Pyx_DOCSTR(__pyx_k_27), 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, "chaplotype")) { if (unlikely(PyDict_SetItemString(modules, "chaplotype", __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_chaplotype) { 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_10chaplotype_per_base_indel_errors = ((PyObject*)Py_None); Py_INCREF(Py_None); __pyx_v_10chaplotype_homopolq = ((PyObject*)Py_None); Py_INCREF(Py_None); __pyx_v_10chaplotype_indel_error_model = ((PyObject*)Py_None); Py_INCREF(Py_None); /*--- Variable export code ---*/ /*--- Function export code ---*/ if (__Pyx_ExportFunction("computeOverlapOfReadAndHaplotype", (void (*)(void))__pyx_f_10chaplotype_computeOverlapOfReadAndHaplotype, "int (int, int, __pyx_t_15samtoolsWrapper_cAlignedRead *)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /*--- Type init code ---*/ __pyx_vtabptr_10chaplotype_Haplotype = &__pyx_vtable_10chaplotype_Haplotype; __pyx_vtable_10chaplotype_Haplotype.alignReads = (double *(*)(struct __pyx_obj_10chaplotype_Haplotype *, int, __pyx_t_15samtoolsWrapper_cAlignedRead **, __pyx_t_15samtoolsWrapper_cAlignedRead **, __pyx_t_15samtoolsWrapper_cAlignedRead **, __pyx_t_15samtoolsWrapper_cAlignedRead **, __pyx_t_15samtoolsWrapper_cAlignedRead **, __pyx_t_15samtoolsWrapper_cAlignedRead **, int, int))__pyx_f_10chaplotype_9Haplotype_alignReads; __pyx_vtable_10chaplotype_Haplotype.alignSingleRead = (double (*)(struct __pyx_obj_10chaplotype_Haplotype *, __pyx_t_15samtoolsWrapper_cAlignedRead *, int, int))__pyx_f_10chaplotype_9Haplotype_alignSingleRead; __pyx_vtable_10chaplotype_Haplotype.getReferenceSequence = (char *(*)(struct __pyx_obj_10chaplotype_Haplotype *, struct __pyx_opt_args_10chaplotype_9Haplotype_getReferenceSequence *__pyx_optional_args))__pyx_f_10chaplotype_9Haplotype_getReferenceSequence; __pyx_vtable_10chaplotype_Haplotype.getMutatedSequence = (char *(*)(struct __pyx_obj_10chaplotype_Haplotype *))__pyx_f_10chaplotype_9Haplotype_getMutatedSequence; __pyx_vtable_10chaplotype_Haplotype.vcfINFO = (PyObject *(*)(struct __pyx_obj_10chaplotype_Haplotype *))__pyx_f_10chaplotype_9Haplotype_vcfINFO; __pyx_vtable_10chaplotype_Haplotype.getSequenceContext = (PyObject *(*)(struct __pyx_obj_10chaplotype_Haplotype *, struct __pyx_obj_7variant_Variant *))__pyx_f_10chaplotype_9Haplotype_getSequenceContext; __pyx_vtable_10chaplotype_Haplotype.homopolymerLengthForOneVariant = (int (*)(struct __pyx_obj_10chaplotype_Haplotype *, struct __pyx_obj_7variant_Variant *))__pyx_f_10chaplotype_9Haplotype_homopolymerLengthForOneVariant; __pyx_vtable_10chaplotype_Haplotype.homopolymerLengths = (PyObject *(*)(struct __pyx_obj_10chaplotype_Haplotype *))__pyx_f_10chaplotype_9Haplotype_homopolymerLengths; __pyx_vtable_10chaplotype_Haplotype.annotateWithGapOpen = (void (*)(struct __pyx_obj_10chaplotype_Haplotype *))__pyx_f_10chaplotype_9Haplotype_annotateWithGapOpen; if (PyType_Ready(&__pyx_type_10chaplotype_Haplotype) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 283; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #if CYTHON_COMPILING_IN_CPYTHON { PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_10chaplotype_Haplotype, "__init__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 283; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) { __pyx_wrapperbase_10chaplotype_9Haplotype___init__ = *((PyWrapperDescrObject *)wrapper)->d_base; __pyx_wrapperbase_10chaplotype_9Haplotype___init__.doc = __pyx_doc_10chaplotype_9Haplotype___init__; ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_10chaplotype_9Haplotype___init__; } } #endif #if CYTHON_COMPILING_IN_CPYTHON { PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_10chaplotype_Haplotype, "__hash__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 283; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) { __pyx_wrapperbase_10chaplotype_9Haplotype_8__hash__ = *((PyWrapperDescrObject *)wrapper)->d_base; __pyx_wrapperbase_10chaplotype_9Haplotype_8__hash__.doc = __pyx_doc_10chaplotype_9Haplotype_8__hash__; ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_10chaplotype_9Haplotype_8__hash__; } } #endif #if CYTHON_COMPILING_IN_CPYTHON { PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_10chaplotype_Haplotype, "__str__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 283; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) { __pyx_wrapperbase_10chaplotype_9Haplotype_10__str__ = *((PyWrapperDescrObject *)wrapper)->d_base; __pyx_wrapperbase_10chaplotype_9Haplotype_10__str__.doc = __pyx_doc_10chaplotype_9Haplotype_10__str__; ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_10chaplotype_9Haplotype_10__str__; } } #endif #if CYTHON_COMPILING_IN_CPYTHON { PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_10chaplotype_Haplotype, "__repr__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 283; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) { __pyx_wrapperbase_10chaplotype_9Haplotype_12__repr__ = *((PyWrapperDescrObject *)wrapper)->d_base; __pyx_wrapperbase_10chaplotype_9Haplotype_12__repr__.doc = __pyx_doc_10chaplotype_9Haplotype_12__repr__; ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_10chaplotype_9Haplotype_12__repr__; } } #endif if (__Pyx_SetVtable(__pyx_type_10chaplotype_Haplotype.tp_dict, __pyx_vtabptr_10chaplotype_Haplotype) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 283; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_SetAttrString(__pyx_m, "Haplotype", (PyObject *)&__pyx_type_10chaplotype_Haplotype) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 283; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_10chaplotype_Haplotype = &__pyx_type_10chaplotype_Haplotype; /*--- Type import code ---*/ __pyx_ptype_9fastafile_FastaIndex = __Pyx_ImportType("fastafile", "FastaIndex", sizeof(struct __pyx_obj_9fastafile_FastaIndex), 1); if (unlikely(!__pyx_ptype_9fastafile_FastaIndex)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_vtabptr_9fastafile_FastaIndex = (struct __pyx_vtabstruct_9fastafile_FastaIndex*)__Pyx_GetVtable(__pyx_ptype_9fastafile_FastaIndex->tp_dict); if (unlikely(!__pyx_vtabptr_9fastafile_FastaIndex)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_9fastafile_FastaFile = __Pyx_ImportType("fastafile", "FastaFile", sizeof(struct __pyx_obj_9fastafile_FastaFile), 1); if (unlikely(!__pyx_ptype_9fastafile_FastaFile)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 5; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_vtabptr_9fastafile_FastaFile = (struct __pyx_vtabstruct_9fastafile_FastaFile*)__Pyx_GetVtable(__pyx_ptype_9fastafile_FastaFile->tp_dict); if (unlikely(!__pyx_vtabptr_9fastafile_FastaFile)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 5; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_15samtoolsWrapper_Samfile = __Pyx_ImportType("samtoolsWrapper", "Samfile", sizeof(struct __pyx_obj_15samtoolsWrapper_Samfile), 1); if (unlikely(!__pyx_ptype_15samtoolsWrapper_Samfile)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 223; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_vtabptr_15samtoolsWrapper_Samfile = (struct __pyx_vtabstruct_15samtoolsWrapper_Samfile*)__Pyx_GetVtable(__pyx_ptype_15samtoolsWrapper_Samfile->tp_dict); if (unlikely(!__pyx_vtabptr_15samtoolsWrapper_Samfile)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 223; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_15samtoolsWrapper_IteratorRow = __Pyx_ImportType("samtoolsWrapper", "IteratorRow", sizeof(struct __pyx_obj_15samtoolsWrapper_IteratorRow), 1); if (unlikely(!__pyx_ptype_15samtoolsWrapper_IteratorRow)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_vtabptr_15samtoolsWrapper_IteratorRow = (struct __pyx_vtabstruct_15samtoolsWrapper_IteratorRow*)__Pyx_GetVtable(__pyx_ptype_15samtoolsWrapper_IteratorRow->tp_dict); if (unlikely(!__pyx_vtabptr_15samtoolsWrapper_IteratorRow)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 225; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_15samtoolsWrapper_IteratorRowAll = __Pyx_ImportType("samtoolsWrapper", "IteratorRowAll", sizeof(struct __pyx_obj_15samtoolsWrapper_IteratorRowAll), 1); if (unlikely(!__pyx_ptype_15samtoolsWrapper_IteratorRowAll)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 233; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_vtabptr_15samtoolsWrapper_IteratorRowAll = (struct __pyx_vtabstruct_15samtoolsWrapper_IteratorRowAll*)__Pyx_GetVtable(__pyx_ptype_15samtoolsWrapper_IteratorRowAll->tp_dict); if (unlikely(!__pyx_vtabptr_15samtoolsWrapper_IteratorRowAll)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 233; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_15samtoolsWrapper_AlignedRead = __Pyx_ImportType("samtoolsWrapper", "AlignedRead", sizeof(struct __pyx_obj_15samtoolsWrapper_AlignedRead), 1); if (unlikely(!__pyx_ptype_15samtoolsWrapper_AlignedRead)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 266; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_vtabptr_15samtoolsWrapper_AlignedRead = (struct __pyx_vtabstruct_15samtoolsWrapper_AlignedRead*)__Pyx_GetVtable(__pyx_ptype_15samtoolsWrapper_AlignedRead->tp_dict); if (unlikely(!__pyx_vtabptr_15samtoolsWrapper_AlignedRead)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 266; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_12bamfileutils_BamFileIterator = __Pyx_ImportType("bamfileutils", "BamFileIterator", sizeof(struct __pyx_obj_12bamfileutils_BamFileIterator), 1); if (unlikely(!__pyx_ptype_12bamfileutils_BamFileIterator)) {__pyx_filename = __pyx_f[3]; __pyx_lineno = 7; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_vtabptr_12bamfileutils_BamFileIterator = (struct __pyx_vtabstruct_12bamfileutils_BamFileIterator*)__Pyx_GetVtable(__pyx_ptype_12bamfileutils_BamFileIterator->tp_dict); if (unlikely(!__pyx_vtabptr_12bamfileutils_BamFileIterator)) {__pyx_filename = __pyx_f[3]; __pyx_lineno = 7; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_12bamfileutils_MultiBamFileIterator = __Pyx_ImportType("bamfileutils", "MultiBamFileIterator", sizeof(struct __pyx_obj_12bamfileutils_MultiBamFileIterator), 1); if (unlikely(!__pyx_ptype_12bamfileutils_MultiBamFileIterator)) {__pyx_filename = __pyx_f[3]; __pyx_lineno = 14; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_12bamfileutils_MultiBamFileReader = __Pyx_ImportType("bamfileutils", "MultiBamFileReader", sizeof(struct __pyx_obj_12bamfileutils_MultiBamFileReader), 1); if (unlikely(!__pyx_ptype_12bamfileutils_MultiBamFileReader)) {__pyx_filename = __pyx_f[3]; __pyx_lineno = 22; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_vtabptr_12bamfileutils_MultiBamFileReader = (struct __pyx_vtabstruct_12bamfileutils_MultiBamFileReader*)__Pyx_GetVtable(__pyx_ptype_12bamfileutils_MultiBamFileReader->tp_dict); if (unlikely(!__pyx_vtabptr_12bamfileutils_MultiBamFileReader)) {__pyx_filename = __pyx_f[3]; __pyx_lineno = 22; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_7variant_Variant = __Pyx_ImportType("variant", "Variant", sizeof(struct __pyx_obj_7variant_Variant), 1); if (unlikely(!__pyx_ptype_7variant_Variant)) {__pyx_filename = __pyx_f[4]; __pyx_lineno = 16; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_vtabptr_7variant_Variant = (struct __pyx_vtabstruct_7variant_Variant*)__Pyx_GetVtable(__pyx_ptype_7variant_Variant->tp_dict); if (unlikely(!__pyx_vtabptr_7variant_Variant)) {__pyx_filename = __pyx_f[4]; __pyx_lineno = 16; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_ptype_7variant_VariantCandidateGenerator = __Pyx_ImportType("variant", "VariantCandidateGenerator", sizeof(struct __pyx_obj_7variant_VariantCandidateGenerator), 1); if (unlikely(!__pyx_ptype_7variant_VariantCandidateGenerator)) {__pyx_filename = __pyx_f[4]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_vtabptr_7variant_VariantCandidateGenerator = (struct __pyx_vtabstruct_7variant_VariantCandidateGenerator*)__Pyx_GetVtable(__pyx_ptype_7variant_VariantCandidateGenerator->tp_dict); if (unlikely(!__pyx_vtabptr_7variant_VariantCandidateGenerator)) {__pyx_filename = __pyx_f[4]; __pyx_lineno = 42; __pyx_clineno = __LINE__; goto __pyx_L1_error;} /*--- Variable import code ---*/ __pyx_t_1 = __Pyx_ImportModule("variant"); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ImportVoidPtr(__pyx_t_1, "PLATYPUS_VAR", (void **)&__pyx_vp_7variant_PLATYPUS_VAR, "int") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ImportVoidPtr(__pyx_t_1, "FILE_VAR", (void **)&__pyx_vp_7variant_FILE_VAR, "int") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ImportVoidPtr(__pyx_t_1, "ASSEMBLER_VAR", (void **)&__pyx_vp_7variant_ASSEMBLER_VAR, "int") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} Py_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_2 = __Pyx_ImportModule("calign"); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ImportVoidPtr(__pyx_t_2, "hash_nucs", (void **)&__pyx_vp_6calign_hash_nucs, "int") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ImportVoidPtr(__pyx_t_2, "hash_size", (void **)&__pyx_vp_6calign_hash_size, "int") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ImportVoidPtr(__pyx_t_2, "max_sequence_length", (void **)&__pyx_vp_6calign_max_sequence_length, "int") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} Py_DECREF(__pyx_t_2); __pyx_t_2 = 0; /*--- Function import code ---*/ __pyx_t_3 = __Pyx_ImportModule("calign"); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ImportFunction(__pyx_t_3, "hash_sequence", (void (**)(void))&__pyx_f_6calign_hash_sequence, "short *(char *, int)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ImportFunction(__pyx_t_3, "hash_sequence_multihit", (void (**)(void))&__pyx_f_6calign_hash_sequence_multihit, "void (char *, int, short **, short **)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ImportFunction(__pyx_t_3, "mapAndAlignReadToHaplotype", (void (**)(void))&__pyx_f_6calign_mapAndAlignReadToHaplotype, "int (char *, char *, int, int, int, int, short *, short *, short *, char *, int, int, char *, int, char *, char *, int *)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ImportFunction(__pyx_t_3, "hashReadForMapping", (void (**)(void))&__pyx_f_6calign_hashReadForMapping, "void (__pyx_t_15samtoolsWrapper_cAlignedRead *)") < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} Py_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_4 = __Pyx_ImportModule("cerrormodel"); if (!__pyx_t_4) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (__Pyx_ImportFunction(__pyx_t_4, "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;} Py_DECREF(__pyx_t_4); __pyx_t_4 = 0; /*--- Execution code ---*/ /* "chaplotype.pyx":9 * * import cython * import logging # <<<<<<<<<<<<<< * import math * import random */ __pyx_t_5 = __Pyx_Import(((PyObject *)__pyx_n_s__logging), 0, -1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 9; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); if (PyObject_SetAttr(__pyx_m, __pyx_n_s__logging, __pyx_t_5) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 9; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "chaplotype.pyx":10 * import cython * import logging * import math # <<<<<<<<<<<<<< * import random * */ __pyx_t_5 = __Pyx_Import(((PyObject *)__pyx_n_s__math), 0, -1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 10; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); if (PyObject_SetAttr(__pyx_m, __pyx_n_s__math, __pyx_t_5) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 10; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "chaplotype.pyx":11 * import logging * import math * import random # <<<<<<<<<<<<<< * * cimport cython */ __pyx_t_5 = __Pyx_Import(((PyObject *)__pyx_n_s__random), 0, -1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 11; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); if (PyObject_SetAttr(__pyx_m, __pyx_n_s__random, __pyx_t_5) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 11; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "chaplotype.pyx":41 * ################################################################################################### * * logger = logging.getLogger("Log") # <<<<<<<<<<<<<< * * ################################################################################################### */ __pyx_t_5 = __Pyx_GetName(__pyx_m, __pyx_n_s__logging); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = PyObject_GetAttr(__pyx_t_5, __pyx_n_s__getLogger); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = PyObject_Call(__pyx_t_6, ((PyObject *)__pyx_k_tuple_28), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (PyObject_SetAttr(__pyx_m, __pyx_n_s__logger, __pyx_t_5) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 41; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "chaplotype.pyx":45 * ################################################################################################### * * cdef double PI = math.pi # <<<<<<<<<<<<<< * cdef double mLTOT = -0.23025850929940459 # Minus log ten over ten * */ __pyx_t_5 = __Pyx_GetName(__pyx_m, __pyx_n_s__math); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = PyObject_GetAttr(__pyx_t_5, __pyx_n_s__pi); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_7 = __pyx_PyFloat_AsDouble(__pyx_t_6); if (unlikely((__pyx_t_7 == (double)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 45; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_v_10chaplotype_PI = __pyx_t_7; /* "chaplotype.pyx":46 * * cdef double PI = math.pi * cdef double mLTOT = -0.23025850929940459 # Minus log ten over ten # <<<<<<<<<<<<<< * * cdef extern from "math.h": */ __pyx_v_10chaplotype_mLTOT = -0.23025850929940459; /* "chaplotype.pyx":66 * * # Some nasty global variables * cdef list per_base_indel_errors = [2.9e-5, 2.9e-5, 2.9e-5, 2.9e-5, 4.3e-5, 1.1e-4, 2.4e-4, 5.7e-4, 1.0e-3, 1.4e-3] + [ 1.4e-3 + 4.3e-4*(n-10) for n in range(11,50) ] # <<<<<<<<<<<<<< * * # homopolymer indel error model */ __pyx_t_6 = PyFloat_FromDouble(2.9e-5); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_6); __pyx_t_5 = PyFloat_FromDouble(2.9e-5); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_5); __pyx_t_8 = PyFloat_FromDouble(2.9e-5); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_8); __pyx_t_9 = PyFloat_FromDouble(2.9e-5); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_9); __pyx_t_10 = PyFloat_FromDouble(4.3e-5); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __pyx_t_11 = PyFloat_FromDouble(1.1e-4); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_11); __pyx_t_12 = PyFloat_FromDouble(2.4e-4); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_12); __pyx_t_13 = PyFloat_FromDouble(5.7e-4); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_13); __pyx_t_14 = PyFloat_FromDouble(1.0e-3); if (unlikely(!__pyx_t_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_14); __pyx_t_15 = PyFloat_FromDouble(1.4e-3); if (unlikely(!__pyx_t_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_15); __pyx_t_16 = PyList_New(10); if (unlikely(!__pyx_t_16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_16); PyList_SET_ITEM(__pyx_t_16, 0, __pyx_t_6); __Pyx_GIVEREF(__pyx_t_6); PyList_SET_ITEM(__pyx_t_16, 1, __pyx_t_5); __Pyx_GIVEREF(__pyx_t_5); PyList_SET_ITEM(__pyx_t_16, 2, __pyx_t_8); __Pyx_GIVEREF(__pyx_t_8); PyList_SET_ITEM(__pyx_t_16, 3, __pyx_t_9); __Pyx_GIVEREF(__pyx_t_9); PyList_SET_ITEM(__pyx_t_16, 4, __pyx_t_10); __Pyx_GIVEREF(__pyx_t_10); PyList_SET_ITEM(__pyx_t_16, 5, __pyx_t_11); __Pyx_GIVEREF(__pyx_t_11); PyList_SET_ITEM(__pyx_t_16, 6, __pyx_t_12); __Pyx_GIVEREF(__pyx_t_12); PyList_SET_ITEM(__pyx_t_16, 7, __pyx_t_13); __Pyx_GIVEREF(__pyx_t_13); PyList_SET_ITEM(__pyx_t_16, 8, __pyx_t_14); __Pyx_GIVEREF(__pyx_t_14); PyList_SET_ITEM(__pyx_t_16, 9, __pyx_t_15); __Pyx_GIVEREF(__pyx_t_15); __pyx_t_6 = 0; __pyx_t_5 = 0; __pyx_t_8 = 0; __pyx_t_9 = 0; __pyx_t_10 = 0; __pyx_t_11 = 0; __pyx_t_12 = 0; __pyx_t_13 = 0; __pyx_t_14 = 0; __pyx_t_15 = 0; __pyx_t_15 = PyList_New(0); if (unlikely(!__pyx_t_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_15); __pyx_t_14 = PyObject_Call(__pyx_builtin_range, ((PyObject *)__pyx_k_tuple_29), NULL); if (unlikely(!__pyx_t_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_14); if (PyList_CheckExact(__pyx_t_14) || PyTuple_CheckExact(__pyx_t_14)) { __pyx_t_13 = __pyx_t_14; __Pyx_INCREF(__pyx_t_13); __pyx_t_17 = 0; __pyx_t_18 = NULL; } else { __pyx_t_17 = -1; __pyx_t_13 = PyObject_GetIter(__pyx_t_14); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_13); __pyx_t_18 = Py_TYPE(__pyx_t_13)->tp_iternext; } __Pyx_DECREF(__pyx_t_14); __pyx_t_14 = 0; for (;;) { if (!__pyx_t_18 && PyList_CheckExact(__pyx_t_13)) { if (__pyx_t_17 >= PyList_GET_SIZE(__pyx_t_13)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_14 = PyList_GET_ITEM(__pyx_t_13, __pyx_t_17); __Pyx_INCREF(__pyx_t_14); __pyx_t_17++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_14 = PySequence_ITEM(__pyx_t_13, __pyx_t_17); __pyx_t_17++; if (unlikely(!__pyx_t_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else if (!__pyx_t_18 && PyTuple_CheckExact(__pyx_t_13)) { if (__pyx_t_17 >= PyTuple_GET_SIZE(__pyx_t_13)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_14 = PyTuple_GET_ITEM(__pyx_t_13, __pyx_t_17); __Pyx_INCREF(__pyx_t_14); __pyx_t_17++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_14 = PySequence_ITEM(__pyx_t_13, __pyx_t_17); __pyx_t_17++; if (unlikely(!__pyx_t_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif } else { __pyx_t_14 = __pyx_t_18(__pyx_t_13); if (unlikely(!__pyx_t_14)) { if (PyErr_Occurred()) { if (likely(PyErr_ExceptionMatches(PyExc_StopIteration))) PyErr_Clear(); else {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} } break; } __Pyx_GOTREF(__pyx_t_14); } if (PyObject_SetAttr(__pyx_m, __pyx_n_s__n, __pyx_t_14) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_14); __pyx_t_14 = 0; __pyx_t_14 = PyFloat_FromDouble(1.4e-3); if (unlikely(!__pyx_t_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_14); __pyx_t_12 = PyFloat_FromDouble(4.3e-4); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_12); __pyx_t_11 = __Pyx_GetName(__pyx_m, __pyx_n_s__n); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_11); __pyx_t_10 = PyNumber_Subtract(__pyx_t_11, __pyx_int_10); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; __pyx_t_11 = PyNumber_Multiply(__pyx_t_12, __pyx_t_10); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_11); __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; __pyx_t_10 = PyNumber_Add(__pyx_t_14, __pyx_t_11); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_10); __Pyx_DECREF(__pyx_t_14); __pyx_t_14 = 0; __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; if (unlikely(__Pyx_PyList_Append(__pyx_t_15, (PyObject*)__pyx_t_10))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; } __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; __pyx_t_13 = PyNumber_Add(((PyObject *)__pyx_t_16), ((PyObject *)__pyx_t_15)); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 66; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_13)); __Pyx_DECREF(((PyObject *)__pyx_t_16)); __pyx_t_16 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_15)); __pyx_t_15 = 0; __Pyx_XGOTREF(((PyObject *)__pyx_v_10chaplotype_per_base_indel_errors)); __Pyx_DECREF(((PyObject *)__pyx_v_10chaplotype_per_base_indel_errors)); __Pyx_GIVEREF(((PyObject *)__pyx_t_13)); __pyx_v_10chaplotype_per_base_indel_errors = __pyx_t_13; __pyx_t_13 = 0; /* "chaplotype.pyx":69 * * # homopolymer indel error model * cdef bytes homopolq = ''.join([chr(int(33.5 + 10*log( (idx+1)*q )/log(0.1) )) for idx,q in enumerate(per_base_indel_errors)]) # <<<<<<<<<<<<<< * * # same model, represented in a more general way. Commented out for now */ __pyx_t_13 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_9), __pyx_n_s__join); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_13); __pyx_t_15 = PyList_New(0); if (unlikely(!__pyx_t_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_15); __Pyx_INCREF(__pyx_int_0); __pyx_t_16 = __pyx_int_0; __pyx_t_10 = ((PyObject *)__pyx_v_10chaplotype_per_base_indel_errors); __Pyx_INCREF(__pyx_t_10); __pyx_t_17 = 0; for (;;) { if (__pyx_t_17 >= PyList_GET_SIZE(__pyx_t_10)) break; #if CYTHON_COMPILING_IN_CPYTHON __pyx_t_11 = PyList_GET_ITEM(__pyx_t_10, __pyx_t_17); __Pyx_INCREF(__pyx_t_11); __pyx_t_17++; if (unlikely(0 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #else __pyx_t_11 = PySequence_ITEM(__pyx_t_10, __pyx_t_17); __pyx_t_17++; if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} #endif if (PyObject_SetAttr(__pyx_m, __pyx_n_s__q, __pyx_t_11) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; if (PyObject_SetAttr(__pyx_m, __pyx_n_s__idx, __pyx_t_16) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __pyx_t_11 = PyNumber_Add(__pyx_t_16, __pyx_int_1); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_11); __Pyx_DECREF(__pyx_t_16); __pyx_t_16 = __pyx_t_11; __pyx_t_11 = 0; __pyx_t_11 = __Pyx_GetName(__pyx_m, __pyx_n_s__idx); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_11); __pyx_t_14 = PyNumber_Add(__pyx_t_11, __pyx_int_1); if (unlikely(!__pyx_t_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_14); __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; __pyx_t_11 = __Pyx_GetName(__pyx_m, __pyx_n_s__q); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_11); __pyx_t_12 = PyNumber_Multiply(__pyx_t_14, __pyx_t_11); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_12); __Pyx_DECREF(__pyx_t_14); __pyx_t_14 = 0; __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0; __pyx_t_7 = __pyx_PyFloat_AsDouble(__pyx_t_12); if (unlikely((__pyx_t_7 == (double)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; __pyx_t_12 = PyFloat_FromDouble((33.5 + ((10.0 * log(__pyx_t_7)) / log(0.1)))); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_12); __pyx_t_11 = PyTuple_New(1); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_11); PyTuple_SET_ITEM(__pyx_t_11, 0, __pyx_t_12); __Pyx_GIVEREF(__pyx_t_12); __pyx_t_12 = 0; __pyx_t_12 = PyObject_Call(((PyObject *)((PyObject*)(&PyInt_Type))), ((PyObject *)__pyx_t_11), NULL); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_12); __Pyx_DECREF(((PyObject *)__pyx_t_11)); __pyx_t_11 = 0; __pyx_t_11 = PyTuple_New(1); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_11); PyTuple_SET_ITEM(__pyx_t_11, 0, __pyx_t_12); __Pyx_GIVEREF(__pyx_t_12); __pyx_t_12 = 0; __pyx_t_12 = PyObject_Call(__pyx_builtin_chr, ((PyObject *)__pyx_t_11), NULL); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_12); __Pyx_DECREF(((PyObject *)__pyx_t_11)); __pyx_t_11 = 0; if (unlikely(__Pyx_PyList_Append(__pyx_t_15, (PyObject*)__pyx_t_12))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0; } __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0; __Pyx_DECREF(__pyx_t_16); __pyx_t_16 = 0; __pyx_t_16 = PyTuple_New(1); if (unlikely(!__pyx_t_16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_16); __Pyx_INCREF(((PyObject *)__pyx_t_15)); PyTuple_SET_ITEM(__pyx_t_16, 0, ((PyObject *)__pyx_t_15)); __Pyx_GIVEREF(((PyObject *)__pyx_t_15)); __Pyx_DECREF(((PyObject *)__pyx_t_15)); __pyx_t_15 = 0; __pyx_t_15 = PyObject_Call(__pyx_t_13, ((PyObject *)__pyx_t_16), NULL); if (unlikely(!__pyx_t_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_15); __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0; __Pyx_DECREF(((PyObject *)__pyx_t_16)); __pyx_t_16 = 0; if (!(likely(PyBytes_CheckExact(__pyx_t_15))||((__pyx_t_15) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected bytes, got %.200s", Py_TYPE(__pyx_t_15)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 69; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_XGOTREF(((PyObject *)__pyx_v_10chaplotype_homopolq)); __Pyx_DECREF(((PyObject *)__pyx_v_10chaplotype_homopolq)); __Pyx_GIVEREF(__pyx_t_15); __pyx_v_10chaplotype_homopolq = ((PyObject*)__pyx_t_15); __pyx_t_15 = 0; /* "chaplotype.pyx":77 * # model obtained from 10M reads from AW_SC_4654.bam, using an early version of indelerrormodel.py (updated the default extrapolation exponents) * * default_indel_error_model = {'AAGG': 'WWWWWWWKJHFEC<<;98665320/-,*)(&%#"!', 1: 'WWWKIFB<83/+(%"!!!!!!!!!!!!!!', 2: "WWWKKKJJFB=:86531/.,*('%#!!!!!!!!!!!!!!!!!!!!!!", 3: 'WWWWWLLKIGEDB@====;;53220.,+)\'%#"!!!', 4: "WWWWWWWKJHHFFBBBB>>=<<;764310.-+*)'&$#!!!!!!!!!!!!!!!!!!!!!!!!", 5: 'WWWWWWWWWIIIFEA@???><<<;9865320/-,+)(&%#"!', 6: 'WWWWWWWWWWIIIIFDCA@>=;:87754210.-+*(\'%$"!', 7: 'WWWWWWWWWWWIHHEEA?>>=;:875421/.,+*(\'%$"!', 8: 'WWWWWWWWWWWWIFEECB@?;99865320/-,*)\'&%#"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!', 9: 'WWWWWWWWWWWWWHFFFDB=;:875421/.-+*(\'%$"!', 10: "WWWWWWWWWWWWWWHFFCB??><;99764310.-+*)'&$#!!", 11: "WWWWWWWWWWWWWWWGGEEBB?=:9764310.-,*)'&$#!!", 'AGC': 'WWWWWMMKKKGFDB@?=;986420/-+)(&$"!', 'AAG': 'WWWWWMMLJHGECA@><:975320.,+)\'%#"!', 'ACCC': 'WWWWWWWHHHGEDBA?><;:875421/.,+)(\'%$"!', 'AAAAT': 'WWWWWWWWWIHFEDBA?><;9865321/.,+)(&%#"!', 'AAT': 'WWWWWKJIHGEC@><;;9775420.-+)\'%$"!!!!!!!!!!!', 'AAAC': "WWWWWWWJJHGFDCA@>==;:888754310.-+*('%$#!!", 'AAGT': "WWWWWWWLGFDCA@>=;:9764310.-+*('&$#!!", 'AAAG': 'WWWWWWWJJFEEA@?=<:9765320/-,*)\'&$#"!', 'ACT': 'WWWWWMJJIGEDB@><;975420.-+)\'&$"!', 'ACCT': "WWWWWWWJIGFDCA@?=<:9764310.-,*)'&$#!!", 'CCG': 'WWWWWIGECA@><:975320.,+)\'%$"!', 'AAAT': 'WWWWWWWJIHFEECCBA@@>=;;:875421/.,+*(\'%$"!', 'AAGC': 'WWWWWWWKFEDBA?><;9865421/.,+)(&%#"!', 'AAAAAATAC': "WWWWWWWWWWWWWA>>=;:9764310.-+*('&$#!!", 'AAAAATAT': "WWWWWWWWWWWWVTA@>=<:9764310.-+*)'&$#!!", 'AGGC': 'WWWWWWWJIHFEDBA?><;9865321/.,+)(&%#"!', 'AACC': "WWWWWWWKJIGFECB@?=<:9764320/-,*)'&$#!!", 'AGCC': "WWWWWWWJIHDCA@>=;:9764310.-+*('&$#!!", 'AAAAAAATAC': 'WWWWWWWWWWWWWW>>><;9865321/.,+)(&%#"!', 'AAAAAAT': 'WWWWWWWWWWWD@@?=<:9765320/-,*)\'&$#"!', 'AAAAATAC': "WWWWWWWWWWWWBA@?=;:9764310.-+*('&$#!!", 'ACG': 'WWWWWKIGEDB@>=;975420.-+)\'&$"!', 'ACCTCC': 'WWWWWWWWWWVHHFECBA?><;9865320/.,+)(&%#"!', 'AACT': 'WWWWWWWHGEDBA?><;9865421/.,+)(&%#"!', 'ACAG': 'WWWWWWWMKJHGEDCA@>=;:8754210.-+*(\'%$"!', 'AATG': "WWWWWWWMKJIGFDCA@>=;:8764310.-+*('%$#!!", 'AAAAAGAAAAG': 'WWWWWWWWWWWWWWWVT<;9865321/.,+)(&%#"!', 'AC': 'WWWNMLIGGC=987631/-,*(&$#!!!!!!!!!!!!!!!!!!!!!!', 'AAAAAG': 'WWWWWWWWWWFBA?><;9865321/.,+)(&%#"!', 'AG': 'WWWIIIIIDD?=9774420-,*(&%#!!!!!!!!!', 'AGGG': 'WWWWWWWHHEECB@?=<:9765320/-,*)\'&%#"!', 'AAACAGAC': 'WWWWWWWWWWWWVA?><;9865421/.,+)(&%$"!', 'CG': 'WWWMJHGECA@><:975320.,+)\'%#"!', 'AAAAAAG': 'WWWWWWWWWWWBA?><;9865320/.,+)(&%#"!', 'CCCG': "WWWWWWWHGFDCB@?=<:9764310/-,*)'&$#!!", 'AT': "WWWMMMKKE?<:7420/-+('%#!!", 'ACCCC': "WWWWWWWWWECB@?=<:9764320/-,*)'&$#!!", 'ACATATATAT': "WWWWWWWWWWWWWWV>=;:8764310.-+*('%$#!!", 'ACC': "WWWWWKKIHEDCA?=<:86531/.,*('%#!!", 'AATAT': 'WWWWWWWWWVCA@>=;:8754310.-+*(\'%$"!!', 'AGCCTC': "WWWWWWWWWWJIGFECB@?=<:9764320/-,*)'&$#!!", 'AGGCGG': "WWWWWWWWWWIIGFDCA@>=;:8764310.-+*('%$#!!", 'AAAAAT': 'WWWWWWWWWWHFEDBA?><;9865321/.,+)(&%#"!', 'AATT': 'WWWWWWWKIIHFECB@?=<;9865320/-,*)(&%#"!', 'C': "WWWJHD<74-*'$!", 'ACACACATAT': 'WWWWWWWWWWWWWW;:8754210.-+*(\'%$"!', 'AGGCCG': 'WWWWWWWWWWHGFDCA@>=;:8754310.-+*(\'%$"!', 'AAAATAC': "WWWWWWWWWWW@?=<:9764320/-,*)'&$#!!", 'AAAAGAAAG': 'WWWWWWWWWWWWWVT?><;9865320/.,+)(&%#"!', 'AAAAAC': 'WWWWWWWWWWEDBA?>=;:875421/.,+*(\'%$"!', 'ACAT': 'WWWWWWWLKKIHFECB@?=<:9865320/-,*)\'&%#"!', 'ATC': 'WWWWWMMKHFDCA?=<:86431/-,*(&%#!!', 'ATCCC': 'WWWWWWWWWECB@?=<:9765320/-,*)\'&$#"!', 'AGG': 'WWWWWKKJHFDB@?=;986421/-+*(&$#!', 'AAAAAAAATAC': 'WWWWWWWWWWWWWWW9765320/-,*)\'&$#"!', 'AAAAAAAG': 'WWWWWWWWWWWWV=<:9765320/-,*)\'&$#"!', 'AAAAC': 'WWWWWWWWWFECCB@?==<:::9765320/-,*)\'&$#"!', 'ACTG': 'WWWWWWWMKJHGEDBA?>=;:875421/.,+*(\'%$"!', 'AAAAG': 'WWWWWWWWWGFDCB>;:875421/.,+*(\'%$"!', 'ATCC': 'WWWWWWWLKIHFECB@?=<:9865320/-,*)\'&%#"!'} # <<<<<<<<<<<<<< * * # oth.errormodel.20111011.txt, in Research/1000GIndels/2011_09_27-error-rates/ */ __pyx_t_15 = PyDict_New(); if (unlikely(!__pyx_t_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_15)); if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAGG), ((PyObject *)__pyx_kp_s_30)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, __pyx_int_1, ((PyObject *)__pyx_kp_s_31)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, __pyx_int_2, ((PyObject *)__pyx_kp_s_32)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, __pyx_int_3, ((PyObject *)__pyx_kp_s_33)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, __pyx_int_4, ((PyObject *)__pyx_kp_s_34)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, __pyx_int_5, ((PyObject *)__pyx_kp_s_35)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, __pyx_int_6, ((PyObject *)__pyx_kp_s_36)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, __pyx_int_7, ((PyObject *)__pyx_kp_s_37)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, __pyx_int_8, ((PyObject *)__pyx_kp_s_38)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, __pyx_int_9, ((PyObject *)__pyx_kp_s_39)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, __pyx_int_10, ((PyObject *)__pyx_kp_s_40)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, __pyx_int_11, ((PyObject *)__pyx_kp_s_41)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AGC), ((PyObject *)__pyx_kp_s_42)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAG), ((PyObject *)__pyx_kp_s_43)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACCC), ((PyObject *)__pyx_kp_s_44)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAT), ((PyObject *)__pyx_kp_s_45)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAT), ((PyObject *)__pyx_kp_s_46)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAC), ((PyObject *)__pyx_kp_s_47)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAGT), ((PyObject *)__pyx_kp_s_48)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAG), ((PyObject *)__pyx_kp_s_49)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACT), ((PyObject *)__pyx_kp_s_50)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACCT), ((PyObject *)__pyx_kp_s_51)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__CCG), ((PyObject *)__pyx_kp_s_52)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAT), ((PyObject *)__pyx_kp_s_53)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAGC), ((PyObject *)__pyx_kp_s_54)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAAATAC), ((PyObject *)__pyx_kp_s_55)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAATAT), ((PyObject *)__pyx_kp_s_56)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AGGC), ((PyObject *)__pyx_kp_s_57)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AACC), ((PyObject *)__pyx_kp_s_58)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AGCC), ((PyObject *)__pyx_kp_s_59)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAAAATAC), ((PyObject *)__pyx_kp_s_60)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAAAT), ((PyObject *)__pyx_kp_s_61)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAATAC), ((PyObject *)__pyx_kp_s_62)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACG), ((PyObject *)__pyx_kp_s_63)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACCTCC), ((PyObject *)__pyx_kp_s_64)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AACT), ((PyObject *)__pyx_kp_s_65)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACAG), ((PyObject *)__pyx_kp_s_66)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AATG), ((PyObject *)__pyx_kp_s_67)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAAGAAAAG), ((PyObject *)__pyx_kp_s_68)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AC), ((PyObject *)__pyx_kp_s_69)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAAG), ((PyObject *)__pyx_kp_s_70)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AG), ((PyObject *)__pyx_kp_s_71)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AGGG), ((PyObject *)__pyx_kp_s_72)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAACAGAC), ((PyObject *)__pyx_kp_s_73)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__CG), ((PyObject *)__pyx_kp_s_74)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAAAG), ((PyObject *)__pyx_kp_s_75)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__CCCG), ((PyObject *)__pyx_kp_s_76)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AT), ((PyObject *)__pyx_kp_s_77)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACCCC), ((PyObject *)__pyx_kp_s_78)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACATATATAT), ((PyObject *)__pyx_kp_s_79)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACC), ((PyObject *)__pyx_kp_s_80)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AATAT), ((PyObject *)__pyx_kp_s_81)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AGCCTC), ((PyObject *)__pyx_kp_s_82)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AGGCGG), ((PyObject *)__pyx_kp_s_83)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAAT), ((PyObject *)__pyx_kp_s_84)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AATT), ((PyObject *)__pyx_kp_s_85)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__C), ((PyObject *)__pyx_kp_s_86)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACACACATAT), ((PyObject *)__pyx_kp_s_87)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AGGCCG), ((PyObject *)__pyx_kp_s_88)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAATAC), ((PyObject *)__pyx_kp_s_89)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAGAAAG), ((PyObject *)__pyx_kp_s_90)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAAC), ((PyObject *)__pyx_kp_s_91)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACAT), ((PyObject *)__pyx_kp_s_92)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ATC), ((PyObject *)__pyx_kp_s_93)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ATCCC), ((PyObject *)__pyx_kp_s_94)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AGG), ((PyObject *)__pyx_kp_s_95)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAAAAATAC), ((PyObject *)__pyx_kp_s_96)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAAAAG), ((PyObject *)__pyx_kp_s_97)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAC), ((PyObject *)__pyx_kp_s_98)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ACTG), ((PyObject *)__pyx_kp_s_99)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__AAAAG), ((PyObject *)__pyx_kp_s_100)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyDict_SetItem(__pyx_t_15, ((PyObject *)__pyx_n_s__ATCC), ((PyObject *)__pyx_kp_s_101)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} if (PyObject_SetAttr(__pyx_m, __pyx_n_s_102, ((PyObject *)__pyx_t_15)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_15)); __pyx_t_15 = 0; /* "chaplotype.pyx":231 * # } * * cdef dict indel_error_model = default_indel_error_model # <<<<<<<<<<<<<< * * ################################################################################################### */ __pyx_t_15 = __Pyx_GetName(__pyx_m, __pyx_n_s_102); if (unlikely(!__pyx_t_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 231; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(__pyx_t_15); if (!(likely(PyDict_CheckExact(__pyx_t_15))||((__pyx_t_15) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected dict, got %.200s", Py_TYPE(__pyx_t_15)->tp_name), 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 231; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_XGOTREF(((PyObject *)__pyx_v_10chaplotype_indel_error_model)); __Pyx_DECREF(((PyObject *)__pyx_v_10chaplotype_indel_error_model)); __Pyx_GIVEREF(__pyx_t_15); __pyx_v_10chaplotype_indel_error_model = ((PyObject*)__pyx_t_15); __pyx_t_15 = 0; /* "chaplotype.pyx":1 * """ # <<<<<<<<<<<<<< * module containing various classes and functions for use in generating * and processing haplotypes. */ __pyx_t_15 = PyDict_New(); if (unlikely(!__pyx_t_15)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_GOTREF(((PyObject *)__pyx_t_15)); if (PyObject_SetAttr(__pyx_m, __pyx_n_s____test__, ((PyObject *)__pyx_t_15)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1; __pyx_clineno = __LINE__; goto __pyx_L1_error;} __Pyx_DECREF(((PyObject *)__pyx_t_15)); __pyx_t_15 = 0; /* "samtoolsWrapper.pxd":385 * theRead.bitFlag |= BAM_FCOMPRESSED * * cdef inline void Read_SetUnCompressed(cAlignedRead* theRead): # <<<<<<<<<<<<<< * theRead.bitFlag &= (~BAM_FCOMPRESSED) * */ 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_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_8); __Pyx_XDECREF(__pyx_t_9); __Pyx_XDECREF(__pyx_t_10); __Pyx_XDECREF(__pyx_t_11); __Pyx_XDECREF(__pyx_t_12); __Pyx_XDECREF(__pyx_t_13); __Pyx_XDECREF(__pyx_t_14); __Pyx_XDECREF(__pyx_t_15); __Pyx_XDECREF(__pyx_t_16); if (__pyx_m) { __Pyx_AddTraceback("init chaplotype", __pyx_clineno, __pyx_lineno, __pyx_filename); Py_DECREF(__pyx_m); __pyx_m = 0; } else if (!PyErr_Occurred()) { PyErr_SetString(PyExc_ImportError, "init chaplotype"); } __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 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_TypeTest(PyObject *obj, PyTypeObject *type) { if (unlikely(!type)) { PyErr_Format(PyExc_SystemError, "Missing type object"); return 0; } if (likely(PyObject_TypeCheck(obj, type))) return 1; PyErr_Format(PyExc_TypeError, "Cannot convert %.200s to %.200s", Py_TYPE(obj)->tp_name, type->tp_name); return 0; } 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 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 CYTHON_INLINE void __Pyx_ErrRestore(PyObject *type, PyObject *value, PyObject *tb) { #if CYTHON_COMPILING_IN_CPYTHON PyObject *tmp_type, *tmp_value, *tmp_tb; PyThreadState *tstate = PyThreadState_GET(); tmp_type = tstate->curexc_type; tmp_value = tstate->curexc_value; tmp_tb = tstate->curexc_traceback; tstate->curexc_type = type; tstate->curexc_value = value; tstate->curexc_traceback = tb; Py_XDECREF(tmp_type); Py_XDECREF(tmp_value); Py_XDECREF(tmp_tb); #else PyErr_Restore(type, value, tb); #endif } static CYTHON_INLINE void __Pyx_ErrFetch(PyObject **type, PyObject **value, PyObject **tb) { #if CYTHON_COMPILING_IN_CPYTHON PyThreadState *tstate = PyThreadState_GET(); *type = tstate->curexc_type; *value = tstate->curexc_value; *tb = tstate->curexc_traceback; tstate->curexc_type = 0; tstate->curexc_value = 0; tstate->curexc_traceback = 0; #else PyErr_Fetch(type, value, tb); #endif } #if PY_MAJOR_VERSION < 3 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, CYTHON_UNUSED PyObject *cause) { Py_XINCREF(type); if (!value || value == Py_None) value = NULL; else Py_INCREF(value); if (!tb || tb == Py_None) tb = NULL; else { Py_INCREF(tb); if (!PyTraceBack_Check(tb)) { PyErr_SetString(PyExc_TypeError, "raise: arg 3 must be a traceback or None"); goto raise_error; } } #if PY_VERSION_HEX < 0x02050000 if (PyClass_Check(type)) { #else if (PyType_Check(type)) { #endif #if CYTHON_COMPILING_IN_PYPY if (!value) { Py_INCREF(Py_None); value = Py_None; } #endif PyErr_NormalizeException(&type, &value, &tb); } else { if (value) { PyErr_SetString(PyExc_TypeError, "instance exception may not have a separate value"); goto raise_error; } value = type; #if PY_VERSION_HEX < 0x02050000 if (PyInstance_Check(type)) { type = (PyObject*) ((PyInstanceObject*)type)->in_class; Py_INCREF(type); } else { type = 0; PyErr_SetString(PyExc_TypeError, "raise: exception must be an old-style class or instance"); goto raise_error; } #else type = (PyObject*) Py_TYPE(type); Py_INCREF(type); if (!PyType_IsSubtype((PyTypeObject *)type, (PyTypeObject *)PyExc_BaseException)) { PyErr_SetString(PyExc_TypeError, "raise: exception class must be a subclass of BaseException"); goto raise_error; } #endif } __Pyx_ErrRestore(type, value, tb); return; raise_error: Py_XDECREF(value); Py_XDECREF(type); Py_XDECREF(tb); return; } #else /* Python 3+ */ static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { PyObject* owned_instance = NULL; if (tb == Py_None) { tb = 0; } else if (tb && !PyTraceBack_Check(tb)) { PyErr_SetString(PyExc_TypeError, "raise: arg 3 must be a traceback or None"); goto bad; } if (value == Py_None) value = 0; if (PyExceptionInstance_Check(type)) { if (value) { PyErr_SetString(PyExc_TypeError, "instance exception may not have a separate value"); goto bad; } value = type; type = (PyObject*) Py_TYPE(value); } else if (PyExceptionClass_Check(type)) { PyObject *args; if (!value) args = PyTuple_New(0); else if (PyTuple_Check(value)) { Py_INCREF(value); args = value; } else args = PyTuple_Pack(1, value); if (!args) goto bad; owned_instance = PyEval_CallObject(type, args); Py_DECREF(args); if (!owned_instance) goto bad; value = owned_instance; if (!PyExceptionInstance_Check(value)) { PyErr_Format(PyExc_TypeError, "calling %R should have returned an instance of " "BaseException, not %R", type, Py_TYPE(value)); goto bad; } } else { PyErr_SetString(PyExc_TypeError, "raise: exception class must be a subclass of BaseException"); goto bad; } if (cause && cause != Py_None) { PyObject *fixed_cause; if (PyExceptionClass_Check(cause)) { fixed_cause = PyObject_CallObject(cause, NULL); if (fixed_cause == NULL) goto bad; } else if (PyExceptionInstance_Check(cause)) { fixed_cause = cause; Py_INCREF(fixed_cause); } else { PyErr_SetString(PyExc_TypeError, "exception causes must derive from " "BaseException"); goto bad; } PyException_SetCause(value, fixed_cause); } PyErr_SetObject(type, value); if (tb) { PyThreadState *tstate = PyThreadState_GET(); PyObject* tmp_tb = tstate->curexc_traceback; if (tb != tmp_tb) { Py_INCREF(tb); tstate->curexc_traceback = tb; Py_XDECREF(tmp_tb); } } bad: Py_XDECREF(owned_instance); return; } #endif 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; } 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 void __Pyx_WriteUnraisable(const char *name, CYTHON_UNUSED int clineno, CYTHON_UNUSED int lineno, CYTHON_UNUSED const char *filename) { PyObject *old_exc, *old_val, *old_tb; PyObject *ctx; __Pyx_ErrFetch(&old_exc, &old_val, &old_tb); #if PY_MAJOR_VERSION < 3 ctx = PyString_FromString(name); #else ctx = PyUnicode_FromString(name); #endif __Pyx_ErrRestore(old_exc, old_val, old_tb); if (!ctx) { PyErr_WriteUnraisable(Py_None); } else { PyErr_WriteUnraisable(ctx); Py_DECREF(ctx); } } 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_SetVtable(PyObject *dict, void *vtable) { #if PY_VERSION_HEX >= 0x02070000 && !(PY_MAJOR_VERSION==3&&PY_MINOR_VERSION==0) PyObject *ob = PyCapsule_New(vtable, 0, 0); #else PyObject *ob = PyCObject_FromVoidPtr(vtable, 0); #endif if (!ob) goto bad; if (PyDict_SetItemString(dict, "__pyx_vtable__", ob) < 0) goto bad; Py_DECREF(ob); return 0; bad: Py_XDECREF(ob); return -1; } #ifndef __PYX_HAVE_RT_ImportModule #define __PYX_HAVE_RT_ImportModule static PyObject *__Pyx_ImportModule(const char *name) { PyObject *py_name = 0; PyObject *py_module = 0; py_name = __Pyx_PyIdentifier_FromString(name); if (!py_name) goto bad; py_module = PyImport_Import(py_name); Py_DECREF(py_name); return py_module; bad: Py_XDECREF(py_name); return 0; } #endif #ifndef __PYX_HAVE_RT_ImportType #define __PYX_HAVE_RT_ImportType static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name, size_t size, int strict) { PyObject *py_module = 0; PyObject *result = 0; PyObject *py_name = 0; char warning[200]; py_module = __Pyx_ImportModule(module_name); if (!py_module) goto bad; py_name = __Pyx_PyIdentifier_FromString(class_name); if (!py_name) goto bad; result = PyObject_GetAttr(py_module, py_name); Py_DECREF(py_name); py_name = 0; Py_DECREF(py_module); py_module = 0; if (!result) goto bad; if (!PyType_Check(result)) { PyErr_Format(PyExc_TypeError, "%s.%s is not a type object", module_name, class_name); goto bad; } if (!strict && (size_t)((PyTypeObject *)result)->tp_basicsize > size) { PyOS_snprintf(warning, sizeof(warning), "%s.%s size changed, may indicate binary incompatibility", module_name, class_name); #if PY_VERSION_HEX < 0x02050000 if (PyErr_Warn(NULL, warning) < 0) goto bad; #else if (PyErr_WarnEx(NULL, warning, 0) < 0) goto bad; #endif } else if ((size_t)((PyTypeObject *)result)->tp_basicsize != size) { PyErr_Format(PyExc_ValueError, "%s.%s has the wrong size, try recompiling", module_name, class_name); goto bad; } return (PyTypeObject *)result; bad: Py_XDECREF(py_module); Py_XDECREF(result); return NULL; } #endif static void* __Pyx_GetVtable(PyObject *dict) { void* ptr; PyObject *ob = PyMapping_GetItemString(dict, (char *)"__pyx_vtable__"); if (!ob) goto bad; #if PY_VERSION_HEX >= 0x02070000 && !(PY_MAJOR_VERSION==3&&PY_MINOR_VERSION==0) ptr = PyCapsule_GetPointer(ob, 0); #else ptr = PyCObject_AsVoidPtr(ob); #endif if (!ptr && !PyErr_Occurred()) PyErr_SetString(PyExc_RuntimeError, "invalid vtable found for imported type"); Py_DECREF(ob); return ptr; bad: Py_XDECREF(ob); return NULL; } #ifndef __PYX_HAVE_RT_ImportVoidPtr #define __PYX_HAVE_RT_ImportVoidPtr static int __Pyx_ImportVoidPtr(PyObject *module, const char *name, void **p, const char *sig) { PyObject *d = 0; PyObject *cobj = 0; d = PyObject_GetAttrString(module, (char *)"__pyx_capi__"); if (!d) goto bad; cobj = PyDict_GetItemString(d, name); if (!cobj) { PyErr_Format(PyExc_ImportError, "%s does not export expected C variable %s", PyModule_GetName(module), name); goto bad; } #if PY_VERSION_HEX >= 0x02070000 && !(PY_MAJOR_VERSION==3 && PY_MINOR_VERSION==0) if (!PyCapsule_IsValid(cobj, sig)) { PyErr_Format(PyExc_TypeError, "C variable %s.%s has wrong signature (expected %s, got %s)", PyModule_GetName(module), name, sig, PyCapsule_GetName(cobj)); goto bad; } *p = PyCapsule_GetPointer(cobj, sig); #else {const char *desc, *s1, *s2; desc = (const char *)PyCObject_GetDesc(cobj); if (!desc) goto bad; s1 = desc; s2 = sig; while (*s1 != '\0' && *s1 == *s2) { s1++; s2++; } if (*s1 != *s2) { PyErr_Format(PyExc_TypeError, "C variable %s.%s has wrong signature (expected %s, got %s)", PyModule_GetName(module), name, sig, desc); goto bad; } *p = PyCObject_AsVoidPtr(cobj);} #endif if (!(*p)) goto bad; Py_DECREF(d); return 0; bad: Py_XDECREF(d); return -1; } #endif #ifndef __PYX_HAVE_RT_ImportFunction #define __PYX_HAVE_RT_ImportFunction static int __Pyx_ImportFunction(PyObject *module, const char *funcname, void (**f)(void), const char *sig) { PyObject *d = 0; PyObject *cobj = 0; union { void (*fp)(void); void *p; } tmp; d = PyObject_GetAttrString(module, (char *)"__pyx_capi__"); if (!d) goto bad; cobj = PyDict_GetItemString(d, funcname); if (!cobj) { PyErr_Format(PyExc_ImportError, "%s does not export expected C function %s", PyModule_GetName(module), funcname); goto bad; } #if PY_VERSION_HEX >= 0x02070000 && !(PY_MAJOR_VERSION==3 && PY_MINOR_VERSION==0) if (!PyCapsule_IsValid(cobj, sig)) { PyErr_Format(PyExc_TypeError, "C function %s.%s has wrong signature (expected %s, got %s)", PyModule_GetName(module), funcname, sig, PyCapsule_GetName(cobj)); goto bad; } tmp.p = PyCapsule_GetPointer(cobj, sig); #else {const char *desc, *s1, *s2; desc = (const char *)PyCObject_GetDesc(cobj); if (!desc) goto bad; s1 = desc; s2 = sig; while (*s1 != '\0' && *s1 == *s2) { s1++; s2++; } if (*s1 != *s2) { PyErr_Format(PyExc_TypeError, "C function %s.%s has wrong signature (expected %s, got %s)", PyModule_GetName(module), funcname, sig, desc); goto bad; } tmp.p = PyCObject_AsVoidPtr(cobj);} #endif *f = tmp.fp; if (!(*f)) goto bad; Py_DECREF(d); return 0; bad: Py_XDECREF(d); return -1; } #endif 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 */