--- /dev/null
+/* Generated by Cython 0.14 on Thu Feb 10 23:20:05 2011 */
+
+#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.
+#else
+
+#include <stddef.h> /* 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
+
+#if PY_VERSION_HEX < 0x02040000
+ #define METH_COEXIST 0
+ #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
+ #define PyDict_Contains(d,o) PySequence_Contains(d,o)
+#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 PyInt_FromSsize_t(z) PyInt_FromLong(z)
+ #define PyInt_AsSsize_t(o) PyInt_AsLong(o)
+ #define PyNumber_Index(o) PyNumber_Int(o)
+ #define PyIndex_Check(o) PyNumber_Check(o)
+ #define PyErr_WarnEx(category, message, stacklevel) PyErr_Warn(category, message)
+#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)
+
+#endif
+
+#if PY_MAJOR_VERSION < 3
+ #define __Pyx_BUILTIN_MODULE_NAME "__builtin__"
+#else
+ #define __Pyx_BUILTIN_MODULE_NAME "builtins"
+#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_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
+ #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
+
+#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_MAJOR_VERSION >= 3
+ #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y)
+ #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y)
+#else
+ #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y)
+ #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y)
+#endif
+
+#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
+
+#ifdef __cplusplus
+#define __PYX_EXTERN_C extern "C"
+#else
+#define __PYX_EXTERN_C extern
+#endif
+
+#if defined(WIN32) || defined(MS_WINDOWS)
+#define _USE_MATH_DEFINES
+#endif
+#include <math.h>
+#define __PYX_HAVE_API__csamtools
+#include "string.h"
+#include "stdlib.h"
+#include "math.h"
+#include "stdio.h"
+#include "ctype.h"
+#include "unistd.h"
+#include "fileobject.h"
+#include "razf.h"
+#include "stdint.h"
+#include "bam.h"
+#include "sam.h"
+#include "glf.h"
+#include "bam_maqcns.h"
+#include "faidx.h"
+#include "pysam_util.h"
+#include "pythread.h"
+
+#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)
+# 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_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*);
+
+#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : 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[] = {
+ "csamtools.pyx",
+ "csamtools.pxd",
+ "bool.pxd",
+ "complex.pxd",
+};
+
+/* Type declarations */
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":366
+ * counter[0] += 1;
+ *
+ * ctypedef struct MateData: # <<<<<<<<<<<<<<
+ * char * name
+ * bam1_t * mate
+ */
+
+typedef struct {
+ char *name;
+ bam1_t *mate;
+ uint32_t flag;
+} __pyx_t_9csamtools_MateData;
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1332
+ * ##-------------------------------------------------------------------
+ * ##-------------------------------------------------------------------
+ * ctypedef struct __iterdata: # <<<<<<<<<<<<<<
+ * samfile_t * samfile
+ * bam_iter_t iter
+ */
+
+typedef struct {
+ samfile_t *samfile;
+ bam_iter_t iter;
+ faidx_t *fastafile;
+ int tid;
+ char *seq;
+ int seq_len;
+} __pyx_t_9csamtools___iterdata;
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1510
+ * bam_plp_set_mask( self.pileup_iter, self.mask )
+ *
+ * cdef setupIteratorData( self, # <<<<<<<<<<<<<<
+ * int tid,
+ * int start,
+ */
+
+struct __pyx_opt_args_9csamtools_14IteratorColumn_setupIteratorData {
+ int __pyx_n;
+ int reopen;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":80
+ * return dest
+ *
+ * cdef class PileupRead # <<<<<<<<<<<<<<
+ * cdef makePileupRead( bam_pileup1_t * src ):
+ * '''fill a PileupRead object from a bam_pileup1_t * object.'''
+ */
+
+struct __pyx_obj_9csamtools_PileupRead {
+ PyObject_HEAD
+ struct __pyx_obj_9csamtools_AlignedRead *_alignment;
+ int32_t _qpos;
+ int _indel;
+ int _level;
+ uint32_t _is_del;
+ uint32_t _is_head;
+ uint32_t _is_tail;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1125
+ * ##-------------------------------------------------------------------
+ * ##-------------------------------------------------------------------
+ * cdef class IteratorRow: # <<<<<<<<<<<<<<
+ * '''abstract base class for iterators over mapped reads.
+ *
+ */
+
+struct __pyx_obj_9csamtools_IteratorRow {
+ PyObject_HEAD
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1283
+ *
+ *
+ * cdef class IteratorRowAllRefs(IteratorRow): # <<<<<<<<<<<<<<
+ * """iterates over all mapped reads by chaining iterators over each reference
+ * """
+ */
+
+struct __pyx_obj_9csamtools_IteratorRowAllRefs {
+ struct __pyx_obj_9csamtools_IteratorRow __pyx_base;
+ struct __pyx_obj_9csamtools_Samfile *samfile;
+ int tid;
+ struct __pyx_obj_9csamtools_IteratorRowRegion *rowiter;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":71
+ * return dest
+ *
+ * cdef class PileupProxy # <<<<<<<<<<<<<<
+ * cdef makePileupProxy( bam_pileup1_t * plp, int tid, int pos, int n ):
+ * cdef PileupProxy dest = PileupProxy.__new__(PileupProxy)
+ */
+
+struct __pyx_obj_9csamtools_PileupProxy {
+ PyObject_HEAD
+ bam_pileup1_t *plp;
+ int tid;
+ int pos;
+ int n_pu;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1144
+ * pass
+ *
+ * cdef class IteratorRowRegion(IteratorRow): # <<<<<<<<<<<<<<
+ * """*(Samfile samfile, int tid, int beg, int end, int reopen = True )*
+ *
+ */
+
+struct __pyx_obj_9csamtools_IteratorRowRegion {
+ struct __pyx_obj_9csamtools_IteratorRow __pyx_base;
+ struct __pyx_vtabstruct_9csamtools_IteratorRowRegion *__pyx_vtab;
+ bam_iter_t iter;
+ bam1_t *b;
+ int retval;
+ struct __pyx_obj_9csamtools_Samfile *samfile;
+ samfile_t *fp;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":222
+ * ## Public methods
+ * ######################################################################
+ * cdef class Fastafile: # <<<<<<<<<<<<<<
+ * '''*(filename)*
+ *
+ */
+
+struct __pyx_obj_9csamtools_Fastafile {
+ PyObject_HEAD
+ struct __pyx_vtabstruct_9csamtools_Fastafile *__pyx_vtab;
+ char *_filename;
+ faidx_t *fastafile;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2892
+ * return call
+ *
+ * cdef class IndelCall: # <<<<<<<<<<<<<<
+ * '''the results of an indel call.'''
+ * cdef int _tid
+ */
+
+struct __pyx_obj_9csamtools_IndelCall {
+ PyObject_HEAD
+ int _tid;
+ int _pos;
+ int _coverage;
+ int _rms_mapping_quality;
+ bam_maqindel_ret_t *_r;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2981
+ * bam_maqindel_ret_destroy(self._r)
+ *
+ * cdef class IndelCallerBase: # <<<<<<<<<<<<<<
+ * '''Base class for SNP callers.
+ *
+ */
+
+struct __pyx_obj_9csamtools_IndelCallerBase {
+ PyObject_HEAD
+ bam_maqindel_opt_t *options;
+ struct __pyx_obj_9csamtools_IteratorColumn *iter;
+ int cap_mapQ;
+ int max_depth;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3119
+ * return self._call()
+ *
+ * cdef class IteratorIndelCalls( IndelCallerBase ): # <<<<<<<<<<<<<<
+ * """*(IteratorColumn iterator)*
+ *
+ */
+
+struct __pyx_obj_9csamtools_IteratorIndelCalls {
+ struct __pyx_obj_9csamtools_IndelCallerBase __pyx_base;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2662
+ *
+ *
+ * cdef class SNPCallerBase: # <<<<<<<<<<<<<<
+ * '''Base class for SNP callers.
+ *
+ */
+
+struct __pyx_obj_9csamtools_SNPCallerBase {
+ PyObject_HEAD
+ struct __pyx_vtabstruct_9csamtools_SNPCallerBase *__pyx_vtab;
+ bam_maqcns_t *c;
+ struct __pyx_obj_9csamtools_IteratorColumn *iter;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2735
+ * sys.stdout.flush()
+ *
+ * cdef class IteratorSNPCalls( SNPCallerBase ): # <<<<<<<<<<<<<<
+ * """*(IteratorColumn iterator)*
+ *
+ */
+
+struct __pyx_obj_9csamtools_IteratorSNPCalls {
+ struct __pyx_obj_9csamtools_SNPCallerBase __pyx_base;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1397
+ * return ret
+ *
+ * cdef class IteratorColumn: # <<<<<<<<<<<<<<
+ * '''abstract base class for iterators over columns.
+ *
+ */
+
+struct __pyx_obj_9csamtools_IteratorColumn {
+ PyObject_HEAD
+ struct __pyx_vtabstruct_9csamtools_IteratorColumn *__pyx_vtab;
+ struct __pyx_obj_9csamtools_IteratorRowRegion *iter;
+ int tid;
+ int pos;
+ int n_plp;
+ int mask;
+ const bam_pileup1_t * plp;
+ bam_plp_t pileup_iter;
+ __pyx_t_9csamtools___iterdata iterdata;
+ struct __pyx_obj_9csamtools_Samfile *samfile;
+ struct __pyx_obj_9csamtools_Fastafile *fastafile;
+ PyObject *stepper;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1567
+ * self.iterdata.seq = NULL
+ *
+ * cdef class IteratorColumnRegion(IteratorColumn): # <<<<<<<<<<<<<<
+ * '''iterates over a region only.
+ * '''
+ */
+
+struct __pyx_obj_9csamtools_IteratorColumnRegion {
+ struct __pyx_obj_9csamtools_IteratorColumn __pyx_base;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2810
+ * return call
+ *
+ * cdef class SNPCaller( SNPCallerBase ): # <<<<<<<<<<<<<<
+ * '''*(IteratorColumn iterator_column )*
+ *
+ */
+
+struct __pyx_obj_9csamtools_SNPCaller {
+ struct __pyx_obj_9csamtools_SNPCallerBase __pyx_base;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1596
+ * self.n_plp )
+ *
+ * cdef class IteratorColumnAllRefs(IteratorColumn): # <<<<<<<<<<<<<<
+ * """iterates over all columns by chaining iterators over each reference
+ * """
+ */
+
+struct __pyx_obj_9csamtools_IteratorColumnAllRefs {
+ struct __pyx_obj_9csamtools_IteratorColumn __pyx_base;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3076
+ * return call
+ *
+ * cdef class IndelCaller( IndelCallerBase ): # <<<<<<<<<<<<<<
+ * '''*(IteratorColumn iterator_column )*
+ *
+ */
+
+struct __pyx_obj_9csamtools_IndelCaller {
+ struct __pyx_obj_9csamtools_IndelCallerBase __pyx_base;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":393
+ *
+ *
+ * cdef class Samfile: # <<<<<<<<<<<<<<
+ * '''*(filename, mode='r', template = None, referencenames = None, referencelengths = None, text = NULL, header = None)*
+ *
+ */
+
+struct __pyx_obj_9csamtools_Samfile {
+ PyObject_HEAD
+ struct __pyx_vtabstruct_9csamtools_Samfile *__pyx_vtab;
+ char *_filename;
+ samfile_t *samfile;
+ bam_index_t *index;
+ int isbam;
+ int isremote;
+ bam1_t *b;
+ char *mode;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2605
+ * return retval, out_stderr, out_stdout
+ *
+ * cdef class SNPCall: # <<<<<<<<<<<<<<
+ * '''the results of a SNP call.'''
+ * cdef int _tid
+ */
+
+struct __pyx_obj_9csamtools_SNPCall {
+ PyObject_HEAD
+ int _tid;
+ int _pos;
+ char _reference_base;
+ char _genotype;
+ int _consensus_quality;
+ int _snp_quality;
+ int _rms_mapping_quality;
+ int _coverage;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1224
+ * samclose( self.fp )
+ *
+ * cdef class IteratorRowAll(IteratorRow): # <<<<<<<<<<<<<<
+ * """*(Samfile samfile, int reopen = True)*
+ *
+ */
+
+struct __pyx_obj_9csamtools_IteratorRowAll {
+ struct __pyx_obj_9csamtools_IteratorRow __pyx_base;
+ struct __pyx_vtabstruct_9csamtools_IteratorRowAll *__pyx_vtab;
+ bam1_t *b;
+ samfile_t *fp;
+};
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":64
+ * ## private factory methods
+ * #####################################################################
+ * cdef class AlignedRead # <<<<<<<<<<<<<<
+ * cdef makeAlignedRead(bam1_t * src):
+ * '''enter src into AlignedRead.'''
+ */
+
+struct __pyx_obj_9csamtools_AlignedRead {
+ PyObject_HEAD
+ bam1_t *_delegate;
+};
+
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1397
+ * return ret
+ *
+ * cdef class IteratorColumn: # <<<<<<<<<<<<<<
+ * '''abstract base class for iterators over columns.
+ *
+ */
+
+struct __pyx_vtabstruct_9csamtools_IteratorColumn {
+ int (*cnext)(struct __pyx_obj_9csamtools_IteratorColumn *);
+ char *(*getSequence)(struct __pyx_obj_9csamtools_IteratorColumn *);
+ PyObject *(*setMask)(struct __pyx_obj_9csamtools_IteratorColumn *, PyObject *);
+ PyObject *(*setupIteratorData)(struct __pyx_obj_9csamtools_IteratorColumn *, int, int, int, struct __pyx_opt_args_9csamtools_14IteratorColumn_setupIteratorData *__pyx_optional_args);
+ PyObject *(*reset)(struct __pyx_obj_9csamtools_IteratorColumn *, PyObject *, PyObject *, PyObject *);
+};
+static struct __pyx_vtabstruct_9csamtools_IteratorColumn *__pyx_vtabptr_9csamtools_IteratorColumn;
+
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1567
+ * self.iterdata.seq = NULL
+ *
+ * cdef class IteratorColumnRegion(IteratorColumn): # <<<<<<<<<<<<<<
+ * '''iterates over a region only.
+ * '''
+ */
+
+struct __pyx_vtabstruct_9csamtools_IteratorColumnRegion {
+ struct __pyx_vtabstruct_9csamtools_IteratorColumn __pyx_base;
+};
+static struct __pyx_vtabstruct_9csamtools_IteratorColumnRegion *__pyx_vtabptr_9csamtools_IteratorColumnRegion;
+
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2662
+ *
+ *
+ * cdef class SNPCallerBase: # <<<<<<<<<<<<<<
+ * '''Base class for SNP callers.
+ *
+ */
+
+struct __pyx_vtabstruct_9csamtools_SNPCallerBase {
+ PyObject *(*__dump)(struct __pyx_obj_9csamtools_SNPCallerBase *, glf1_t *, uint32_t, int);
+};
+static struct __pyx_vtabstruct_9csamtools_SNPCallerBase *__pyx_vtabptr_9csamtools_SNPCallerBase;
+
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2810
+ * return call
+ *
+ * cdef class SNPCaller( SNPCallerBase ): # <<<<<<<<<<<<<<
+ * '''*(IteratorColumn iterator_column )*
+ *
+ */
+
+struct __pyx_vtabstruct_9csamtools_SNPCaller {
+ struct __pyx_vtabstruct_9csamtools_SNPCallerBase __pyx_base;
+};
+static struct __pyx_vtabstruct_9csamtools_SNPCaller *__pyx_vtabptr_9csamtools_SNPCaller;
+
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1144
+ * pass
+ *
+ * cdef class IteratorRowRegion(IteratorRow): # <<<<<<<<<<<<<<
+ * """*(Samfile samfile, int tid, int beg, int end, int reopen = True )*
+ *
+ */
+
+struct __pyx_vtabstruct_9csamtools_IteratorRowRegion {
+ bam1_t *(*getCurrent)(struct __pyx_obj_9csamtools_IteratorRowRegion *);
+ int (*cnext)(struct __pyx_obj_9csamtools_IteratorRowRegion *);
+};
+static struct __pyx_vtabstruct_9csamtools_IteratorRowRegion *__pyx_vtabptr_9csamtools_IteratorRowRegion;
+
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1596
+ * self.n_plp )
+ *
+ * cdef class IteratorColumnAllRefs(IteratorColumn): # <<<<<<<<<<<<<<
+ * """iterates over all columns by chaining iterators over each reference
+ * """
+ */
+
+struct __pyx_vtabstruct_9csamtools_IteratorColumnAllRefs {
+ struct __pyx_vtabstruct_9csamtools_IteratorColumn __pyx_base;
+};
+static struct __pyx_vtabstruct_9csamtools_IteratorColumnAllRefs *__pyx_vtabptr_9csamtools_IteratorColumnAllRefs;
+
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":393
+ *
+ *
+ * cdef class Samfile: # <<<<<<<<<<<<<<
+ * '''*(filename, mode='r', template = None, referencenames = None, referencelengths = None, text = NULL, header = None)*
+ *
+ */
+
+struct __pyx_vtabstruct_9csamtools_Samfile {
+ bam_header_t *(*_buildHeader)(struct __pyx_obj_9csamtools_Samfile *, PyObject *);
+ bam1_t *(*getCurrent)(struct __pyx_obj_9csamtools_Samfile *);
+ int (*cnext)(struct __pyx_obj_9csamtools_Samfile *);
+};
+static struct __pyx_vtabstruct_9csamtools_Samfile *__pyx_vtabptr_9csamtools_Samfile;
+
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":222
+ * ## Public methods
+ * ######################################################################
+ * cdef class Fastafile: # <<<<<<<<<<<<<<
+ * '''*(filename)*
+ *
+ */
+
+struct __pyx_vtabstruct_9csamtools_Fastafile {
+ char *(*_fetch)(struct __pyx_obj_9csamtools_Fastafile *, char *, int, int, int *);
+};
+static struct __pyx_vtabstruct_9csamtools_Fastafile *__pyx_vtabptr_9csamtools_Fastafile;
+
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1224
+ * samclose( self.fp )
+ *
+ * cdef class IteratorRowAll(IteratorRow): # <<<<<<<<<<<<<<
+ * """*(Samfile samfile, int reopen = True)*
+ *
+ */
+
+struct __pyx_vtabstruct_9csamtools_IteratorRowAll {
+ bam1_t *(*getCurrent)(struct __pyx_obj_9csamtools_IteratorRowAll *);
+ int (*cnext)(struct __pyx_obj_9csamtools_IteratorRowAll *);
+};
+static struct __pyx_vtabstruct_9csamtools_IteratorRowAll *__pyx_vtabptr_9csamtools_IteratorRowAll;
+
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2735
+ * sys.stdout.flush()
+ *
+ * cdef class IteratorSNPCalls( SNPCallerBase ): # <<<<<<<<<<<<<<
+ * """*(IteratorColumn iterator)*
+ *
+ */
+
+struct __pyx_vtabstruct_9csamtools_IteratorSNPCalls {
+ struct __pyx_vtabstruct_9csamtools_SNPCallerBase __pyx_base;
+};
+static struct __pyx_vtabstruct_9csamtools_IteratorSNPCalls *__pyx_vtabptr_9csamtools_IteratorSNPCalls;
+
+#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) {
+ 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;
+ }
+ #define __Pyx_RefNannySetupContext(name) void *__pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__)
+ #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_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r);} } while(0)
+#else
+ #define __Pyx_RefNannySetupContext(name)
+ #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_XDECREF(r) Py_XDECREF(r)
+#endif /* CYTHON_REFNANNY */
+#define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);} } while(0)
+#define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r);} } while(0)
+
+static PyObject *__Pyx_GetName(PyObject *dict, PyObject *name); /*proto*/
+
+#ifndef CYTHON_PROFILE
+ #define CYTHON_PROFILE 1
+#endif
+
+#ifndef CYTHON_PROFILE_REUSE_FRAME
+ #define CYTHON_PROFILE_REUSE_FRAME 0
+#endif
+
+#if CYTHON_PROFILE
+
+ #include "compile.h"
+ #include "frameobject.h"
+ #include "traceback.h"
+
+ #if CYTHON_PROFILE_REUSE_FRAME
+ #define CYTHON_FRAME_MODIFIER static
+ #define CYTHON_FRAME_DEL
+ #else
+ #define CYTHON_FRAME_MODIFIER
+ #define CYTHON_FRAME_DEL Py_DECREF(__pyx_frame)
+ #endif
+
+ #define __Pyx_TraceDeclarations \
+ static PyCodeObject *__pyx_frame_code = NULL; \
+ CYTHON_FRAME_MODIFIER PyFrameObject *__pyx_frame = NULL; \
+ int __Pyx_use_tracing = 0;
+
+ #define __Pyx_TraceCall(funcname, srcfile, firstlineno) \
+ if (unlikely(PyThreadState_GET()->use_tracing && PyThreadState_GET()->c_profilefunc)) { \
+ __Pyx_use_tracing = __Pyx_TraceSetupAndCall(&__pyx_frame_code, &__pyx_frame, funcname, srcfile, firstlineno); \
+ }
+
+ #define __Pyx_TraceException() \
+ if (unlikely(__Pyx_use_tracing( && PyThreadState_GET()->use_tracing && PyThreadState_GET()->c_profilefunc) { \
+ PyObject *exc_info = __Pyx_GetExceptionTuple(); \
+ if (exc_info) { \
+ PyThreadState_GET()->c_profilefunc( \
+ PyThreadState_GET()->c_profileobj, __pyx_frame, PyTrace_EXCEPTION, exc_info); \
+ Py_DECREF(exc_info); \
+ } \
+ }
+
+ #define __Pyx_TraceReturn(result) \
+ if (unlikely(__Pyx_use_tracing) && PyThreadState_GET()->use_tracing && PyThreadState_GET()->c_profilefunc) { \
+ PyThreadState_GET()->c_profilefunc( \
+ PyThreadState_GET()->c_profileobj, __pyx_frame, PyTrace_RETURN, (PyObject*)result); \
+ CYTHON_FRAME_DEL; \
+ }
+
+ static PyCodeObject *__Pyx_createFrameCodeObject(const char *funcname, const char *srcfile, int firstlineno); /*proto*/
+ static int __Pyx_TraceSetupAndCall(PyCodeObject** code, PyFrameObject** frame, const char *funcname, const char *srcfile, int firstlineno); /*proto*/
+
+#else
+
+ #define __Pyx_TraceDeclarations
+ #define __Pyx_TraceCall(funcname, srcfile, firstlineno)
+ #define __Pyx_TraceException()
+ #define __Pyx_TraceReturn(result)
+
+#endif /* CYTHON_PROFILE */
+
+static CYTHON_INLINE PyObject* __Pyx_tp_new(PyObject* type_obj) {
+ return (PyObject*) (((PyTypeObject*)(type_obj))->tp_new(
+ (PyTypeObject*)(type_obj), __pyx_empty_tuple, NULL));
+}
+
+static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type); /*proto*/
+
+static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index);
+
+static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected);
+
+static PyObject *__Pyx_UnpackItem(PyObject *, Py_ssize_t index); /*proto*/
+static int __Pyx_EndUnpack(PyObject *, Py_ssize_t expected); /*proto*/
+
+static CYTHON_INLINE int __Pyx_CheckKeywordStrings(PyObject *kwdict,
+ const char* function_name, int kw_allowed); /*proto*/
+
+static void __Pyx_RaiseDoubleKeywordsError(
+ const char* func_name, PyObject* kw_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 int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[], PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args, const char* function_name); /*proto*/
+
+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 int __Pyx_ArgTypeTest(PyObject *obj, PyTypeObject *type, int none_allowed,
+ const char *name, int exact); /*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 (likely(o != Py_None)) {
+ 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));
+}
+
+#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 (likely(o != Py_None)) {
+ 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));
+}
+
+
+#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) {
+ PyObject *r;
+ if (PyList_CheckExact(o) && ((0 <= i) & (i < PyList_GET_SIZE(o)))) {
+ r = PyList_GET_ITEM(o, i);
+ Py_INCREF(r);
+ }
+ else if (PyTuple_CheckExact(o) && ((0 <= i) & (i < PyTuple_GET_SIZE(o)))) {
+ r = PyTuple_GET_ITEM(o, i);
+ Py_INCREF(r);
+ }
+ else if (Py_TYPE(o)->tp_as_sequence && Py_TYPE(o)->tp_as_sequence->sq_item && (likely(i >= 0))) {
+ r = PySequence_GetItem(o, i);
+ }
+ else {
+ r = __Pyx_GetItemInt_Generic(o, PyInt_FromSsize_t(i));
+ }
+ return r;
+}
+
+static CYTHON_INLINE long __Pyx_NegateNonNeg(long b) { return unlikely(b < 0) ? b : !b; }
+static CYTHON_INLINE PyObject* __Pyx_PyBoolOrNull_FromLong(long b) {
+ return unlikely(b < 0) ? NULL : __Pyx_PyBool_FromLong(b);
+}
+
+static CYTHON_INLINE PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) {
+ if (likely(PyList_CheckExact(L))) {
+ if (PyList_Append(L, x) < 0) return NULL;
+ Py_INCREF(Py_None);
+ return Py_None; /* this is just to have an accurate signature */
+ }
+ else {
+ PyObject *r, *m;
+ m = __Pyx_GetAttrString(L, "append");
+ if (!m) return NULL;
+ r = PyObject_CallFunctionObjArgs(m, x, NULL);
+ Py_DECREF(m);
+ return r;
+ }
+}
+
+static CYTHON_INLINE void __Pyx_RaiseNoneIndexingError(void);
+
+#if PY_MAJOR_VERSION >= 3
+static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) {
+ PyObject *value;
+ if (unlikely(d == Py_None)) {
+ __Pyx_RaiseNoneIndexingError();
+ return NULL;
+ }
+ 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 int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb); /*proto*/
+
+static PyObject* __Pyx_PyDict_GetItemDefault(PyObject* d, PyObject* key, PyObject* default_value) {
+ PyObject* value;
+#if PY_MAJOR_VERSION >= 3
+ value = PyDict_GetItemWithError(d, key);
+ if (unlikely(!value)) {
+ if (unlikely(PyErr_Occurred()))
+ return NULL;
+ value = default_value;
+ }
+ Py_INCREF(value);
+#else
+ if (PyString_CheckExact(key) || PyUnicode_CheckExact(key) || PyInt_CheckExact(key)) {
+ /* these presumably have safe hash functions */
+ value = PyDict_GetItem(d, key);
+ if (unlikely(!value)) {
+ value = default_value;
+ }
+ Py_INCREF(value);
+ } else {
+ PyObject *m;
+ m = __Pyx_GetAttrString(d, "get");
+ if (!m) return NULL;
+ value = PyObject_CallFunctionObjArgs(m, key,
+ (default_value == Py_None) ? NULL : default_value, NULL);
+ Py_DECREF(m);
+ }
+#endif
+ return value;
+}
+
+static CYTHON_INLINE long __Pyx_div_long(long, long); /* proto */
+
+static CYTHON_INLINE long __Pyx_mod_long(long, long); /* proto */
+
+#define __Pyx_DelItemInt(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \
+ __Pyx_DelItemInt_Fast(o, i) : \
+ __Pyx_DelItem_Generic(o, to_py_func(i)))
+
+static CYTHON_INLINE int __Pyx_DelItem_Generic(PyObject *o, PyObject *j) {
+ int r;
+ if (!j) return -1;
+ r = PyObject_DelItem(o, j);
+ Py_DECREF(j);
+ return r;
+}
+
+static CYTHON_INLINE int __Pyx_DelItemInt_Fast(PyObject *o, Py_ssize_t i) {
+ if (Py_TYPE(o)->tp_as_sequence && Py_TYPE(o)->tp_as_sequence->sq_ass_item && likely(i >= 0))
+ return PySequence_DelItem(o, i);
+ else {
+ PyObject *j = PyInt_FromSsize_t(i);
+ return __Pyx_DelItem_Generic(o, j);
+ }
+}
+
+static CYTHON_INLINE void __Pyx_ExceptionSave(PyObject **type, PyObject **value, PyObject **tb); /*proto*/
+static void __Pyx_ExceptionReset(PyObject *type, PyObject *value, PyObject *tb); /*proto*/
+
+static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list); /*proto*/
+
+static PyObject *__Pyx_FindPy2Metaclass(PyObject *bases); /*proto*/
+
+static PyObject *__Pyx_CreateClass(PyObject *bases, PyObject *dict, PyObject *name,
+ PyObject *modname); /*proto*/
+
+#define __pyx_binding_PyCFunctionType_USED 1
+
+typedef struct {
+ PyCFunctionObject func;
+} __pyx_binding_PyCFunctionType_object;
+
+PyTypeObject __pyx_binding_PyCFunctionType_type;
+PyTypeObject *__pyx_binding_PyCFunctionType = NULL;
+
+PyObject *__pyx_binding_PyCFunctionType_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module); /* proto */
+#define __pyx_binding_PyCFunctionType_New(ml, self) __pyx_binding_PyCFunctionType_NewEx(ml, self, NULL)
+
+int __pyx_binding_PyCFunctionType_init(void); /* proto */
+
+static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_uint32_t(uint32_t);
+
+static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb); /*proto*/
+
+static CYTHON_INLINE uint32_t __Pyx_PyInt_from_py_uint32_t(PyObject *);
+
+static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_int32_t(int32_t);
+
+static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_int64_t(int64_t);
+
+static CYTHON_INLINE int32_t __Pyx_PyInt_from_py_int32_t(PyObject *);
+
+static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_uint8_t(uint8_t);
+
+static int __Pyx_Print(PyObject*, PyObject *, int); /*proto*/
+#if PY_MAJOR_VERSION >= 3
+static PyObject* __pyx_print = 0;
+static PyObject* __pyx_print_kwargs = 0;
+#endif
+
+static int __Pyx_PrintOne(PyObject* stream, PyObject *o); /*proto*/
+
+static CYTHON_INLINE unsigned char __Pyx_PyInt_AsUnsignedChar(PyObject *);
+
+static CYTHON_INLINE unsigned short __Pyx_PyInt_AsUnsignedShort(PyObject *);
+
+static CYTHON_INLINE unsigned int __Pyx_PyInt_AsUnsignedInt(PyObject *);
+
+static CYTHON_INLINE char __Pyx_PyInt_AsChar(PyObject *);
+
+static CYTHON_INLINE short __Pyx_PyInt_AsShort(PyObject *);
+
+static CYTHON_INLINE int __Pyx_PyInt_AsInt(PyObject *);
+
+static CYTHON_INLINE signed char __Pyx_PyInt_AsSignedChar(PyObject *);
+
+static CYTHON_INLINE signed short __Pyx_PyInt_AsSignedShort(PyObject *);
+
+static CYTHON_INLINE signed int __Pyx_PyInt_AsSignedInt(PyObject *);
+
+static CYTHON_INLINE int __Pyx_PyInt_AsLongDouble(PyObject *);
+
+static CYTHON_INLINE unsigned long __Pyx_PyInt_AsUnsignedLong(PyObject *);
+
+static CYTHON_INLINE unsigned PY_LONG_LONG __Pyx_PyInt_AsUnsignedLongLong(PyObject *);
+
+static CYTHON_INLINE long __Pyx_PyInt_AsLong(PyObject *);
+
+static CYTHON_INLINE PY_LONG_LONG __Pyx_PyInt_AsLongLong(PyObject *);
+
+static CYTHON_INLINE signed long __Pyx_PyInt_AsSignedLong(PyObject *);
+
+static CYTHON_INLINE signed PY_LONG_LONG __Pyx_PyInt_AsSignedLongLong(PyObject *);
+
+static void __Pyx_WriteUnraisable(const char *name); /*proto*/
+
+static CYTHON_INLINE uint64_t __Pyx_PyInt_from_py_uint64_t(PyObject *);
+
+static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name, long size, int strict); /*proto*/
+
+static PyObject *__Pyx_ImportModule(const char *name); /*proto*/
+
+static int __Pyx_SetVtable(PyObject *dict, void *vtable); /*proto*/
+
+static void __Pyx_AddTraceback(const char *funcname); /*proto*/
+
+static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); /*proto*/
+/* Module declarations from __builtin__ */
+
+/* Module declarations from cpython.version */
+
+/* Module declarations from cpython.ref */
+
+/* Module declarations from cpython.exc */
+
+/* Module declarations from cpython.module */
+
+/* Module declarations from cpython.mem */
+
+/* Module declarations from cpython.tuple */
+
+/* Module declarations from cpython.list */
+
+/* Module declarations from libc.stdio */
+
+/* Module declarations from cpython.object */
+
+/* Module declarations from cpython.sequence */
+
+/* Module declarations from cpython.mapping */
+
+/* Module declarations from cpython.iterator */
+
+/* Module declarations from cpython.type */
+
+/* Module declarations from cpython.number */
+
+/* Module declarations from cpython.int */
+
+/* Module declarations from __builtin__ */
+
+/* Module declarations from cpython.bool */
+
+static PyTypeObject *__pyx_ptype_7cpython_4bool_bool = 0;
+/* Module declarations from cpython.long */
+
+/* Module declarations from cpython.float */
+
+/* Module declarations from __builtin__ */
+
+/* Module declarations from cpython.complex */
+
+static PyTypeObject *__pyx_ptype_7cpython_7complex_complex = 0;
+/* Module declarations from cpython.string */
+
+/* Module declarations from cpython.unicode */
+
+/* Module declarations from cpython.dict */
+
+/* Module declarations from cpython.instance */
+
+/* Module declarations from cpython.function */
+
+/* Module declarations from cpython.method */
+
+/* Module declarations from cpython.weakref */
+
+/* Module declarations from cpython.getargs */
+
+/* Module declarations from cpython.pythread */
+
+/* Module declarations from cpython.cobject */
+
+/* Module declarations from cpython.oldbuffer */
+
+/* Module declarations from cpython.set */
+
+/* Module declarations from cpython.buffer */
+
+/* Module declarations from cpython.bytes */
+
+/* Module declarations from cpython.pycapsule */
+
+/* Module declarations from cpython */
+
+/* Module declarations from csamtools */
+
+static PyTypeObject *__pyx_ptype_9csamtools_file = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_AlignedRead = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_PileupProxy = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_PileupRead = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_Fastafile = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_Samfile = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IteratorRow = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IteratorRowRegion = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IteratorRowAll = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IteratorRowAllRefs = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IteratorColumn = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IteratorColumnRegion = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IteratorColumnAllRefs = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_SNPCall = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_SNPCallerBase = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IteratorSNPCalls = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_SNPCaller = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IndelCall = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IndelCallerBase = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IndelCaller = 0;
+static PyTypeObject *__pyx_ptype_9csamtools_IteratorIndelCalls = 0;
+static char *__pyx_v_9csamtools_bam_nt16_rev_table;
+static int __pyx_v_9csamtools_max_pos;
+static PyObject *__pyx_f_9csamtools_makeAlignedRead(bam1_t *); /*proto*/
+static PyObject *__pyx_f_9csamtools_makePileupProxy(bam_pileup1_t *, int, int, int); /*proto*/
+static PyObject *__pyx_f_9csamtools_makePileupRead(bam_pileup1_t *); /*proto*/
+static int __pyx_f_9csamtools_fetch_callback(bam1_t *, void *); /*proto*/
+static int __pyx_f_9csamtools_pileup_callback(uint32_t, uint32_t, int, bam_pileup1_t *, void *); /*proto*/
+static int __pyx_f_9csamtools_pileup_fetch_callback(bam1_t *, void *); /*proto*/
+static int __pyx_f_9csamtools_count_callback(bam1_t *, void *); /*proto*/
+static int __pyx_f_9csamtools_mate_callback(bam1_t *, void *); /*proto*/
+static int __pyx_f_9csamtools___advance_all(void *, bam1_t *); /*proto*/
+static int __pyx_f_9csamtools___advance_snpcalls(void *, bam1_t *); /*proto*/
+static CYTHON_INLINE int32_t __pyx_f_9csamtools_query_start(bam1_t *); /*proto*/
+static CYTHON_INLINE int32_t __pyx_f_9csamtools_query_end(bam1_t *); /*proto*/
+static CYTHON_INLINE PyObject *__pyx_f_9csamtools_get_seq_range(bam1_t *, uint32_t, uint32_t); /*proto*/
+static CYTHON_INLINE PyObject *__pyx_f_9csamtools_get_qual_range(bam1_t *, uint32_t, uint32_t); /*proto*/
+#define __Pyx_MODULE_NAME "csamtools"
+int __pyx_module_is_main_csamtools = 0;
+
+/* Implementation of csamtools */
+static PyObject *__pyx_builtin_open;
+static PyObject *__pyx_builtin_object;
+static PyObject *__pyx_builtin_map;
+static PyObject *__pyx_builtin_ValueError;
+static PyObject *__pyx_builtin_IOError;
+static PyObject *__pyx_builtin_NotImplementedError;
+static PyObject *__pyx_builtin_KeyError;
+static PyObject *__pyx_builtin_StopIteration;
+static PyObject *__pyx_builtin_cmp;
+static PyObject *__pyx_builtin_chr;
+static PyObject *__pyx_builtin_TypeError;
+static PyObject *__pyx_builtin_range;
+static char __pyx_k_1[] = "\t";
+static char __pyx_k_2[] = "\n";
+static char __pyx_k_3[] = "calling len() on closed file";
+static char __pyx_k_5[] = "could not open file `%s`";
+static char __pyx_k_6[] = "I/O operation on closed file";
+static char __pyx_k_9[] = "no sequence/region supplied.";
+static char __pyx_k_11[] = "invalid region: start (%i) > end (%i)";
+static char __pyx_k_12[] = "";
+static char __pyx_k_13[] = "start out of range (%i)";
+static char __pyx_k_14[] = "end out of range (%i)";
+static char __pyx_k_15[] = "%s:%i-%i";
+static char __pyx_k_16[] = "invalid file opening mode `%s`";
+static char __pyx_k_17[] = "http:";
+static char __pyx_k_18[] = "ftp:";
+static char __pyx_k_19[] = "either supply options `template`, `header` or both `referencenames` and `referencelengths` for writing";
+static char __pyx_k_20[] = "unequal names and lengths of reference sequences";
+static char __pyx_k_21[] = "-";
+static char __pyx_k_22[] = "file `%s` not found";
+static char __pyx_k_23[] = "could not open file - is it SAM/BAM format?";
+static char __pyx_k_27[] = ".bai";
+static char __pyx_k_28[] = "error while opening index `%s` ";
+static char __pyx_k_30[] = "tid out of range 0<=tid<%i";
+static char __pyx_k_32[] = "[:-]";
+static char __pyx_k_34[] = "invalid reference `%s`";
+static char __pyx_k_35[] = "invalid coordinates: start (%i) > end (%i)";
+static char __pyx_k_37[] = "seek only available in bam files";
+static char __pyx_k_43[] = "fetch called on bamfile without index";
+static char __pyx_k_45[] = "callback functionality requires a region/reference";
+static char __pyx_k_47[] = "no index available for fetch";
+static char __pyx_k_49[] = "fetch called for samfile without header";
+static char __pyx_k_51[] = "fetch for a region is not available for sam files";
+static char __pyx_k_53[] = "callback not implemented yet";
+static char __pyx_k_55[] = "read is unpaired";
+static char __pyx_k_57[] = "mate is unmapped";
+static char __pyx_k_59[] = "mate not found";
+static char __pyx_k_64[] = "counting functionality requires a region/reference";
+static char __pyx_k_67[] = "count for a region is not available for sam files";
+static char __pyx_k_70[] = "no index available for pileup";
+static char __pyx_k_73[] = "pileup of samfiles not implemented yet";
+static char __pyx_k_83[] = "@";
+static char __pyx_k_85[] = "header line without '@': '%s'";
+static char __pyx_k_87[] = "header line with invalid type '%s': '%s'";
+static char __pyx_k_88[] = ":";
+static char __pyx_k_90[] = "unknown field code '%s' in record '%s'";
+static char __pyx_k_91[] = "multiple '%s' lines are not permitted";
+static char __pyx_k_92[] = "@%s";
+static char __pyx_k_93[] = "%s:%s";
+static char __pyx_k_94[] = "invalid type for record %s: %s, expected %s";
+static char __pyx_k_95[] = "incomplete sequence information in '%s'";
+static char __pyx_k_98[] = "no index available for iteration";
+static char __pyx_k__A[] = "A";
+static char __pyx_k__C[] = "C";
+static char __pyx_k__D[] = "D";
+static char __pyx_k__F[] = "F";
+static char __pyx_k__I[] = "I";
+static char __pyx_k__S[] = "S";
+static char __pyx_k__Z[] = "Z";
+static char __pyx_k__b[] = "b";
+static char __pyx_k__c[] = "c";
+static char __pyx_k__d[] = "d";
+static char __pyx_k__f[] = "f";
+static char __pyx_k__i[] = "i";
+static char __pyx_k__n[] = "n";
+static char __pyx_k__r[] = "r";
+static char __pyx_k__s[] = "s";
+static char __pyx_k__w[] = "w";
+static char __pyx_k__x[] = "x";
+static char __pyx_k_102[] = "reference sequence for '%s' (tid=%i) not found";
+static char __pyx_k_103[] = "unknown stepper option `%s` in IteratorColumn";
+static char __pyx_k_105[] = "error during iteration";
+static char __pyx_k_108[] = "Invalid clipping in CIGAR string";
+static char __pyx_k_109[] = "quality and sequence mismatch: %i != %i";
+static char __pyx_k_110[] = "%c";
+static char __pyx_k_111[] = "create_string_buffer";
+static char __pyx_k_112[] = "<cccf";
+static char __pyx_k_113[] = "<cccb";
+static char __pyx_k_114[] = "<ccch";
+static char __pyx_k_115[] = "integer %i out of range of BAM/SAM specification";
+static char __pyx_k_116[] = "<ccci";
+static char __pyx_k_117[] = "<cccB";
+static char __pyx_k_118[] = "<cccH";
+static char __pyx_k_119[] = "<cccI";
+static char __pyx_k_120[] = "<cccc";
+static char __pyx_k_121[] = "<ccc%is";
+static char __pyx_k_122[] = "tags field too large";
+static char __pyx_k_124[] = "tag '%s' not present";
+static char __pyx_k_125[] = "Contig index";
+static char __pyx_k_126[] = "Mapped position on contig";
+static char __pyx_k_127[] = "Contig index for mate pair";
+static char __pyx_k_128[] = "Position of mate pair";
+static char __pyx_k_129[] = "Insert size";
+static char __pyx_k_130[] = "Binary flag";
+static char __pyx_k_131[] = "Count of cigar entries";
+static char __pyx_k_132[] = "Cigar entries";
+static char __pyx_k_133[] = "Mapping quality";
+static char __pyx_k_134[] = "Bam index bin number";
+static char __pyx_k_135[] = "Length of query name";
+static char __pyx_k_136[] = "Query name";
+static char __pyx_k_137[] = "Length of query sequence";
+static char __pyx_k_138[] = "Query sequence";
+static char __pyx_k_139[] = "Quality scores";
+static char __pyx_k_140[] = "Length of auxilary data";
+static char __pyx_k_141[] = "Maximum data length";
+static char __pyx_k_142[] = "Current data length";
+static char __pyx_k_143[] = "%-30s %-10s= %s";
+static char __pyx_k_144[] = "(";
+static char __pyx_k_145[] = ")";
+static char __pyx_k_146[] = "This class cannot be instantiated from Python";
+static char __pyx_k_151[] = "No such file or directory: '%s'";
+static char __pyx_k_152[] = "-o";
+static char __pyx_k_153[] = "option -o is forbidden in samtools view";
+static char __pyx_k_155[] = "_rms_mapping_quality";
+static char __pyx_k_156[] = "--> read %i %s %i";
+static char __pyx_k_157[] = "pos=%i, cns=%i, q_r = %f, depth=%i, n=%i, rb=%i, cns-cq=%i %i %i %i";
+static char __pyx_k_158[] = "-------------------------------------\n";
+static char __pyx_k_159[] = "IteratorSNPCalls requires an pileup iterator with reference sequence";
+static char __pyx_k_161[] = "position %i out of bounds on reference sequence (len=%i)";
+static char __pyx_k_163[] = "no reads in region - no call";
+static char __pyx_k_165[] = "%s/%s";
+static char __pyx_k_166[] = "IndelCallerBase requires an pileup iterator with reference sequence";
+static char __pyx_k_170[] = "the query name (None if not present)";
+static char __pyx_k_171[] = "the :term:`cigar` alignment (None if not present).\n ";
+static char __pyx_k_172[] = "read sequence bases, including :term:`soft clipped` bases (None if not present)";
+static char __pyx_k_173[] = "read sequence base qualities, including :term:`soft clipped` bases (None if not present)";
+static char __pyx_k_174[] = "aligned portion of the read and excludes any flanking bases that were :term:`soft clipped` (None if not present)\n\n SAM/BAM files may included extra flanking bases sequences that were\n not part of the alignment. These bases may be the result of the\n Smith-Waterman or other algorithms, which may not require alignments\n that begin at the first residue or end at the last. In addition,\n extra sequencing adapters, multiplex identifiers, and low-quality bases that\n were not considered for alignment may have been retained.";
+static char __pyx_k_175[] = "aligned query sequence quality values (None if not present)";
+static char __pyx_k_176[] = "start index of the aligned query portion of the sequence (0-based, inclusive)";
+static char __pyx_k_177[] = "end index of the aligned query portion of the sequence (0-based, exclusive)";
+static char __pyx_k_178[] = "Length of the aligned query sequence";
+static char __pyx_k_179[] = "the tags in the AUX field.\n\n This property permits convenience access to \n the tags. Changes it the returned list will\n not update the tags automatically. Instead,\n the following is required for adding a \n new tag::\n\n read.tags = read.tags + [(\"RG\",0)]\n\n ";
+static char __pyx_k_180[] = "properties flag";
+static char __pyx_k_181[] = "\n :term:`target` ID\n\n DEPRECATED from pysam-0.4 - use tid in the future.\n The rname field caused a lot of confusion as it returns\n the :term:`target` ID instead of the reference sequence\n name.\n\n .. note::\n\n This field contains the index of the reference sequence \n in the sequence dictionary. To obtain the name\n of the reference sequence, use :meth:`pysam.Samfile.getrname()`\n \n ";
+static char __pyx_k_182[] = "\n :term:`target` ID\n\n .. note::\n\n This field contains the index of the reference sequence \n in the sequence dictionary. To obtain the name\n of the reference sequence, use :meth:`pysam.Samfile.getrname()`\n \n ";
+static char __pyx_k_183[] = "0-based leftmost coordinate";
+static char __pyx_k_184[] = "properties bin";
+static char __pyx_k_185[] = "length of the read (read only). Returns 0 if not given.";
+static char __pyx_k_186[] = "aligned end position of the read (read only). Returns\n None if not available.";
+static char __pyx_k_187[] = "aligned length of the read (read only). Returns None if\n not available.";
+static char __pyx_k_188[] = "mapping quality";
+static char __pyx_k_189[] = "the :term:`reference` id of the mate ";
+static char __pyx_k_190[] = "the position of the mate";
+static char __pyx_k_191[] = "the insert size";
+static char __pyx_k_192[] = "true if read is paired in sequencing";
+static char __pyx_k_193[] = "true if read is mapped in a proper pair";
+static char __pyx_k_194[] = "true if read itself is unmapped";
+static char __pyx_k_195[] = "true if the mate is unmapped";
+static char __pyx_k_196[] = "true if read is mapped to reverse strand";
+static char __pyx_k_197[] = "true is read is mapped to reverse strand";
+static char __pyx_k_198[] = "true if this is read1";
+static char __pyx_k_199[] = "true if this is read2";
+static char __pyx_k_200[] = "true if not primary alignment";
+static char __pyx_k_201[] = "true if QC failure";
+static char __pyx_k_202[] = " true if optical or PCR duplicate";
+static char __pyx_k_203[] = "the chromosome ID as is defined in the header";
+static char __pyx_k_204[] = "number of reads mapping to this column.";
+static char __pyx_k_205[] = "list of reads (:class:`pysam.PileupRead`) aligned to this column";
+static char __pyx_k_206[] = "a :class:`pysam.AlignedRead` object of the aligned read";
+static char __pyx_k_207[] = "position of the read base at the pileup site, 0-based";
+static char __pyx_k_208[] = "indel length; 0 for no indel, positive for ins and negative for del";
+static char __pyx_k_209[] = "1 iff the base on the padded read is a deletion";
+static char __pyx_k_210[] = "number of :term:`filename` associated with this object.";
+static char __pyx_k_211[] = "number of :term:`reference` sequences in the file.";
+static char __pyx_k_212[] = "tuple with the names of :term:`reference` sequences.";
+static char __pyx_k_213[] = "tuple of the lengths of the :term:`reference` sequences. The lengths are in the same order as \n :attr:`pysam.Samfile.references`\n ";
+static char __pyx_k_214[] = "full contents of the :term:`sam file` header as a string.";
+static char __pyx_k_215[] = "header information within the :term:`sam file`. The records and fields are returned as \n a two-level dictionary.\n ";
+static char __pyx_k_216[] = "current sequence length.";
+static char __pyx_k_217[] = "nucleotide position of SNP.";
+static char __pyx_k_218[] = "reference base at pos. ``N`` if no reference sequence supplied.";
+static char __pyx_k_219[] = "the genotype called.";
+static char __pyx_k_220[] = "the genotype quality (Phred-scaled).";
+static char __pyx_k_221[] = "the snp quality (Phred scaled) - probability of consensus being identical to reference sequence.";
+static char __pyx_k_222[] = "the root mean square (rms) of the mapping quality of all reads involved in the call.";
+static char __pyx_k_223[] = "coverage or read depth - the number of reads involved in the call.";
+static char __pyx_k_224[] = "sequence of first allele.";
+static char __pyx_k_225[] = "sequence of second allele.";
+static char __pyx_k_226[] = "reads supporting first allele.";
+static char __pyx_k_227[] = "=ACMGRSVTWYHKDBN";
+static char __pyx_k_228[] = "/dev/null";
+static char __pyx_k_230[] = "A pileup column. A pileup column contains \n all the reads that map to a certain target base.\n\n tid \n chromosome ID as is defined in the header \n pos \n the target base coordinate (0-based) \n n \n number of reads mapping to this column \n pileups \n list of reads (:class:`pysam.PileupRead`) aligned to this column \n ";
+static char __pyx_k_231[] = "\n stderr is captured. \n ";
+static char __pyx_k_237[] = "http://mail.python.org/pipermail/python-list/2000-June/038406.html";
+static char __pyx_k__AS[] = "AS";
+static char __pyx_k__CL[] = "CL";
+static char __pyx_k__CN[] = "CN";
+static char __pyx_k__CO[] = "CO";
+static char __pyx_k__DS[] = "DS";
+static char __pyx_k__DT[] = "DT";
+static char __pyx_k__GO[] = "GO";
+static char __pyx_k__HD[] = "HD";
+static char __pyx_k__ID[] = "ID";
+static char __pyx_k__LB[] = "LB";
+static char __pyx_k__LN[] = "LN";
+static char __pyx_k__M5[] = "M5";
+static char __pyx_k__PG[] = "PG";
+static char __pyx_k__PI[] = "PI";
+static char __pyx_k__PL[] = "PL";
+static char __pyx_k__PN[] = "PN";
+static char __pyx_k__PU[] = "PU";
+static char __pyx_k__RG[] = "RG";
+static char __pyx_k__SM[] = "SM";
+static char __pyx_k__SN[] = "SN";
+static char __pyx_k__SO[] = "SO";
+static char __pyx_k__SP[] = "SP";
+static char __pyx_k__SQ[] = "SQ";
+static char __pyx_k__UR[] = "UR";
+static char __pyx_k__VN[] = "VN";
+static char __pyx_k___r[] = "_r";
+static char __pyx_k__fd[] = "fd";
+static char __pyx_k__fp[] = "fp";
+static char __pyx_k__gt[] = "gt";
+static char __pyx_k__id[] = "id";
+static char __pyx_k__os[] = "os";
+static char __pyx_k__rb[] = "rb";
+static char __pyx_k__re[] = "re";
+static char __pyx_k__wb[] = "wb";
+static char __pyx_k__wh[] = "wh";
+static char __pyx_k__all[] = "all";
+static char __pyx_k__bam[] = "bam";
+static char __pyx_k__beg[] = "beg";
+static char __pyx_k__bin[] = "bin";
+static char __pyx_k__chr[] = "chr";
+static char __pyx_k__cmp[] = "cmp";
+static char __pyx_k__dup[] = "dup";
+static char __pyx_k__end[] = "end";
+static char __pyx_k__map[] = "map";
+static char __pyx_k__plp[] = "plp";
+static char __pyx_k__pos[] = "pos";
+static char __pyx_k__q_r[] = "q_r";
+static char __pyx_k__raw[] = "raw";
+static char __pyx_k__seq[] = "seq";
+static char __pyx_k__sys[] = "sys";
+static char __pyx_k__tid[] = "tid";
+static char __pyx_k__wbu[] = "wbu";
+static char __pyx_k__Outs[] = "Outs";
+static char __pyx_k___pos[] = "_pos";
+static char __pyx_k___tid[] = "_tid";
+static char __pyx_k__args[] = "args";
+static char __pyx_k__cnt1[] = "cnt1";
+static char __pyx_k__cnt2[] = "cnt2";
+static char __pyx_k__core[] = "core";
+static char __pyx_k__data[] = "data";
+static char __pyx_k__dup2[] = "dup2";
+static char __pyx_k__flag[] = "flag";
+static char __pyx_k__hash[] = "hash";
+static char __pyx_k__iter[] = "iter";
+static char __pyx_k__join[] = "join";
+static char __pyx_k__mapq[] = "mapq";
+static char __pyx_k__mask[] = "mask";
+static char __pyx_k__mate[] = "mate";
+static char __pyx_k__mode[] = "mode";
+static char __pyx_k__mpos[] = "mpos";
+static char __pyx_k__mtid[] = "mtid";
+static char __pyx_k__n_pu[] = "n_pu";
+static char __pyx_k__name[] = "name";
+static char __pyx_k__open[] = "open";
+static char __pyx_k__path[] = "path";
+static char __pyx_k__port[] = "port";
+static char __pyx_k__qpos[] = "qpos";
+static char __pyx_k__qseq[] = "qseq";
+static char __pyx_k__qual[] = "qual";
+static char __pyx_k__self[] = "self";
+static char __pyx_k__tags[] = "tags";
+static char __pyx_k__text[] = "text";
+static char __pyx_k__view[] = "view";
+static char __pyx_k___call[] = "_call";
+static char __pyx_k___open[] = "_open";
+static char __pyx_k___qpos[] = "_qpos";
+static char __pyx_k__bqual[] = "bqual";
+static char __pyx_k__cigar[] = "cigar";
+static char __pyx_k__close[] = "close";
+static char __pyx_k__cnext[] = "cnext";
+static char __pyx_k__flush[] = "flush";
+static char __pyx_k__indel[] = "indel";
+static char __pyx_k__index[] = "index";
+static char __pyx_k__isbam[] = "isbam";
+static char __pyx_k__isize[] = "isize";
+static char __pyx_k__l_aux[] = "l_aux";
+static char __pyx_k__level[] = "level";
+static char __pyx_k__n_hap[] = "n_hap";
+static char __pyx_k__n_plp[] = "n_plp";
+static char __pyx_k__q_cns[] = "q_cns";
+static char __pyx_k__q_ref[] = "q_ref";
+static char __pyx_k__qname[] = "qname";
+static char __pyx_k__range[] = "range";
+static char __pyx_k__reset[] = "reset";
+static char __pyx_k__rname[] = "rname";
+static char __pyx_k__setfd[] = "setfd";
+static char __pyx_k__split[] = "split";
+static char __pyx_k__start[] = "start";
+static char __pyx_k__strip[] = "strip";
+static char __pyx_k__theta[] = "theta";
+static char __pyx_k__types[] = "types";
+static char __pyx_k__where[] = "where";
+static char __pyx_k___indel[] = "_indel";
+static char __pyx_k___level[] = "_level";
+static char __pyx_k__append[] = "append";
+static char __pyx_k__ctypes[] = "ctypes";
+static char __pyx_k__errmod[] = "errmod";
+static char __pyx_k__exists[] = "exists";
+static char __pyx_k__fields[] = "fields";
+static char __pyx_k__fileno[] = "fileno";
+static char __pyx_k__gettid[] = "gettid";
+static char __pyx_k__header[] = "header";
+static char __pyx_k__indel1[] = "indel1";
+static char __pyx_k__indel2[] = "indel2";
+static char __pyx_k__is_del[] = "is_del";
+static char __pyx_k__l_qseq[] = "l_qseq";
+static char __pyx_k__l_text[] = "l_text";
+static char __pyx_k__m_data[] = "m_data";
+static char __pyx_k__method[] = "method";
+static char __pyx_k__object[] = "object";
+static char __pyx_k__offset[] = "offset";
+static char __pyx_k__record[] = "record";
+static char __pyx_k__region[] = "region";
+static char __pyx_k__remove[] = "remove";
+static char __pyx_k__reopen[] = "reopen";
+static char __pyx_k__retval[] = "retval";
+static char __pyx_k__rg2lib[] = "rg2lib";
+static char __pyx_k__stderr[] = "stderr";
+static char __pyx_k__stdout[] = "stdout";
+static char __pyx_k__struct[] = "struct";
+static char __pyx_k__IOError[] = "IOError";
+static char __pyx_k__IntType[] = "IntType";
+static char __pyx_k__O_CREAT[] = "O_CREAT";
+static char __pyx_k__Samfile[] = "Samfile";
+static char __pyx_k____all__[] = "__all__";
+static char __pyx_k____del__[] = "__del__";
+static char __pyx_k____str__[] = "__str__";
+static char __pyx_k___isOpen[] = "_isOpen";
+static char __pyx_k___is_del[] = "_is_del";
+static char __pyx_k__is_head[] = "is_head";
+static char __pyx_k__is_tail[] = "is_tail";
+static char __pyx_k__l_qname[] = "l_qname";
+static char __pyx_k__mkstemp[] = "mkstemp";
+static char __pyx_k__n_cigar[] = "n_cigar";
+static char __pyx_k__options[] = "options";
+static char __pyx_k__pileups[] = "pileups";
+static char __pyx_k__q_indel[] = "q_indel";
+static char __pyx_k__r_indel[] = "r_indel";
+static char __pyx_k__release[] = "release";
+static char __pyx_k__restore[] = "restore";
+static char __pyx_k__rowiter[] = "rowiter";
+static char __pyx_k__samfile[] = "samfile";
+static char __pyx_k__seq_len[] = "seq_len";
+static char __pyx_k__setfile[] = "setfile";
+static char __pyx_k__stepper[] = "stepper";
+static char __pyx_k__streams[] = "streams";
+static char __pyx_k__DictType[] = "DictType";
+static char __pyx_k__KeyError[] = "KeyError";
+static char __pyx_k__O_WRONLY[] = "O_WRONLY";
+static char __pyx_k____dict__[] = "__dict__";
+static char __pyx_k____init__[] = "__init__";
+static char __pyx_k____main__[] = "__main__";
+static char __pyx_k____test__[] = "__test__";
+static char __pyx_k___is_head[] = "_is_head";
+static char __pyx_k___is_tail[] = "_is_tail";
+static char __pyx_k___logfile[] = "_logfile";
+static char __pyx_k__calcsize[] = "calcsize";
+static char __pyx_k__callback[] = "callback";
+static char __pyx_k__cap_mapQ[] = "cap_mapQ";
+static char __pyx_k__cnt_anti[] = "cnt_anti";
+static char __pyx_k__coverage[] = "coverage";
+static char __pyx_k__data_len[] = "data_len";
+static char __pyx_k__exc_type[] = "exc_type";
+static char __pyx_k__filename[] = "filename";
+static char __pyx_k__genotype[] = "genotype";
+static char __pyx_k__het_rate[] = "het_rate";
+static char __pyx_k__isremote[] = "isremote";
+static char __pyx_k__iterdata[] = "iterdata";
+static char __pyx_k__nextiter[] = "nextiter";
+static char __pyx_k__samtools[] = "samtools";
+static char __pyx_k__stderr_f[] = "stderr_f";
+static char __pyx_k__stderr_h[] = "stderr_h";
+static char __pyx_k__tempfile[] = "tempfile";
+static char __pyx_k__template[] = "template";
+static char __pyx_k__Fastafile[] = "Fastafile";
+static char __pyx_k__FloatType[] = "FloatType";
+static char __pyx_k__SNPCaller[] = "SNPCaller";
+static char __pyx_k__TypeError[] = "TypeError";
+static char __pyx_k___coverage[] = "_coverage";
+static char __pyx_k___delegate[] = "_delegate";
+static char __pyx_k___filename[] = "_filename";
+static char __pyx_k___genotype[] = "_genotype";
+static char __pyx_k___hasIndex[] = "_hasIndex";
+static char __pyx_k__alignment[] = "alignment";
+static char __pyx_k__csamtools[] = "csamtools";
+static char __pyx_k__exc_value[] = "exc_value";
+static char __pyx_k__fastafile[] = "fastafile";
+static char __pyx_k__is_paired[] = "is_paired";
+static char __pyx_k__max_depth[] = "max_depth";
+static char __pyx_k__min_baseQ[] = "min_baseQ";
+static char __pyx_k__n_targets[] = "n_targets";
+static char __pyx_k__pack_into[] = "pack_into";
+static char __pyx_k__readlines[] = "readlines";
+static char __pyx_k__reference[] = "reference";
+static char __pyx_k__setdevice[] = "setdevice";
+static char __pyx_k__traceback[] = "traceback";
+static char __pyx_k__until_eof[] = "until_eof";
+static char __pyx_k__PileupRead[] = "PileupRead";
+static char __pyx_k__ValueError[] = "ValueError";
+static char __pyx_k___alignment[] = "_alignment";
+static char __pyx_k___buildLine[] = "_buildLine";
+static char __pyx_k__reads_diff[] = "reads_diff";
+static char __pyx_k__startswith[] = "startswith";
+static char __pyx_k__target_len[] = "target_len";
+static char __pyx_k__AlignedRead[] = "AlignedRead";
+static char __pyx_k__IndelCaller[] = "IndelCaller";
+static char __pyx_k__IteratorRow[] = "IteratorRow";
+static char __pyx_k__PileupProxy[] = "PileupProxy";
+static char __pyx_k__StderrStore[] = "StderrStore";
+static char __pyx_k__collections[] = "collections";
+static char __pyx_k__getSequence[] = "getSequence";
+static char __pyx_k__nreferences[] = "nreferences";
+static char __pyx_k__pileup_iter[] = "pileup_iter";
+static char __pyx_k__reads_first[] = "reads_first";
+static char __pyx_k__snp_quality[] = "snp_quality";
+static char __pyx_k__stderr_save[] = "stderr_save";
+static char __pyx_k__target_name[] = "target_name";
+static char __pyx_k__PileupColumn[] = "PileupColumn";
+static char __pyx_k___buildHeader[] = "_buildHeader";
+static char __pyx_k___parseRegion[] = "_parseRegion";
+static char __pyx_k___snp_quality[] = "_snp_quality";
+static char __pyx_k__catch_stderr[] = "catch_stderr";
+static char __pyx_k__catch_stdout[] = "catch_stdout";
+static char __pyx_k__first_allele[] = "first_allele";
+static char __pyx_k__hasReference[] = "hasReference";
+static char __pyx_k__n_haplotypes[] = "n_haplotypes";
+static char __pyx_k__reads_second[] = "reads_second";
+static char __pyx_k__StopIteration[] = "StopIteration";
+static char __pyx_k__VALID_HEADERS[] = "VALID_HEADERS";
+static char __pyx_k__second_allele[] = "second_allele";
+static char __pyx_k__IteratorColumn[] = "IteratorColumn";
+static char __pyx_k__readAndRelease[] = "readAndRelease";
+static char __pyx_k__reference_base[] = "reference_base";
+static char __pyx_k__referencenames[] = "referencenames";
+static char __pyx_k___reference_base[] = "_reference_base";
+static char __pyx_k__iterator_column[] = "iterator_column";
+static char __pyx_k__mapping_quality[] = "mapping_quality";
+static char __pyx_k__IteratorSNPCalls[] = "IteratorSNPCalls";
+static char __pyx_k____getattribute__[] = "__getattribute__";
+static char __pyx_k__mate_is_unmapped[] = "mate_is_unmapped";
+static char __pyx_k__referencelengths[] = "referencelengths";
+static char __pyx_k__consensus_quality[] = "consensus_quality";
+static char __pyx_k__setupIteratorData[] = "setupIteratorData";
+static char __pyx_k__IteratorIndelCalls[] = "IteratorIndelCalls";
+static char __pyx_k__VALID_HEADER_ORDER[] = "VALID_HEADER_ORDER";
+static char __pyx_k__VALID_HEADER_TYPES[] = "VALID_HEADER_TYPES";
+static char __pyx_k___consensus_quality[] = "_consensus_quality";
+static char __pyx_k___samtools_dispatch[] = "_samtools_dispatch";
+static char __pyx_k__NotImplementedError[] = "NotImplementedError";
+static char __pyx_k__VALID_HEADER_FIELDS[] = "VALID_HEADER_FIELDS";
+static PyObject *__pyx_kp_s_1;
+static PyObject *__pyx_kp_s_102;
+static PyObject *__pyx_kp_s_103;
+static PyObject *__pyx_kp_s_105;
+static PyObject *__pyx_kp_s_109;
+static PyObject *__pyx_kp_s_11;
+static PyObject *__pyx_kp_s_110;
+static PyObject *__pyx_n_s_111;
+static PyObject *__pyx_kp_s_112;
+static PyObject *__pyx_kp_s_113;
+static PyObject *__pyx_kp_s_114;
+static PyObject *__pyx_kp_s_115;
+static PyObject *__pyx_kp_s_116;
+static PyObject *__pyx_kp_s_117;
+static PyObject *__pyx_kp_s_118;
+static PyObject *__pyx_kp_s_119;
+static PyObject *__pyx_kp_s_12;
+static PyObject *__pyx_kp_s_120;
+static PyObject *__pyx_kp_s_121;
+static PyObject *__pyx_kp_s_122;
+static PyObject *__pyx_kp_s_124;
+static PyObject *__pyx_kp_s_125;
+static PyObject *__pyx_kp_s_126;
+static PyObject *__pyx_kp_s_127;
+static PyObject *__pyx_kp_s_128;
+static PyObject *__pyx_kp_s_129;
+static PyObject *__pyx_kp_s_13;
+static PyObject *__pyx_kp_s_130;
+static PyObject *__pyx_kp_s_131;
+static PyObject *__pyx_kp_s_132;
+static PyObject *__pyx_kp_s_133;
+static PyObject *__pyx_kp_s_134;
+static PyObject *__pyx_kp_s_135;
+static PyObject *__pyx_kp_s_136;
+static PyObject *__pyx_kp_s_137;
+static PyObject *__pyx_kp_s_138;
+static PyObject *__pyx_kp_s_139;
+static PyObject *__pyx_kp_s_14;
+static PyObject *__pyx_kp_s_140;
+static PyObject *__pyx_kp_s_141;
+static PyObject *__pyx_kp_s_142;
+static PyObject *__pyx_kp_s_143;
+static PyObject *__pyx_kp_s_144;
+static PyObject *__pyx_kp_s_145;
+static PyObject *__pyx_kp_s_146;
+static PyObject *__pyx_kp_s_15;
+static PyObject *__pyx_kp_s_151;
+static PyObject *__pyx_kp_s_152;
+static PyObject *__pyx_kp_s_153;
+static PyObject *__pyx_n_s_155;
+static PyObject *__pyx_kp_s_156;
+static PyObject *__pyx_kp_s_157;
+static PyObject *__pyx_kp_s_159;
+static PyObject *__pyx_kp_s_16;
+static PyObject *__pyx_kp_s_161;
+static PyObject *__pyx_kp_s_163;
+static PyObject *__pyx_kp_s_165;
+static PyObject *__pyx_kp_s_166;
+static PyObject *__pyx_kp_s_19;
+static PyObject *__pyx_kp_s_2;
+static PyObject *__pyx_kp_s_20;
+static PyObject *__pyx_kp_s_22;
+static PyObject *__pyx_kp_s_228;
+static PyObject *__pyx_kp_s_23;
+static PyObject *__pyx_kp_s_230;
+static PyObject *__pyx_kp_s_231;
+static PyObject *__pyx_kp_s_237;
+static PyObject *__pyx_kp_s_27;
+static PyObject *__pyx_kp_s_28;
+static PyObject *__pyx_kp_s_3;
+static PyObject *__pyx_kp_s_30;
+static PyObject *__pyx_kp_s_32;
+static PyObject *__pyx_kp_s_34;
+static PyObject *__pyx_kp_s_35;
+static PyObject *__pyx_kp_s_37;
+static PyObject *__pyx_kp_s_43;
+static PyObject *__pyx_kp_s_45;
+static PyObject *__pyx_kp_s_47;
+static PyObject *__pyx_kp_s_49;
+static PyObject *__pyx_kp_s_5;
+static PyObject *__pyx_kp_s_51;
+static PyObject *__pyx_kp_s_53;
+static PyObject *__pyx_kp_s_55;
+static PyObject *__pyx_kp_s_57;
+static PyObject *__pyx_kp_s_59;
+static PyObject *__pyx_kp_s_6;
+static PyObject *__pyx_kp_s_64;
+static PyObject *__pyx_kp_s_67;
+static PyObject *__pyx_kp_s_70;
+static PyObject *__pyx_kp_s_73;
+static PyObject *__pyx_kp_s_83;
+static PyObject *__pyx_kp_s_85;
+static PyObject *__pyx_kp_s_87;
+static PyObject *__pyx_kp_s_88;
+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_98;
+static PyObject *__pyx_n_s__A;
+static PyObject *__pyx_n_s__AS;
+static PyObject *__pyx_n_s__AlignedRead;
+static PyObject *__pyx_n_s__C;
+static PyObject *__pyx_n_s__CL;
+static PyObject *__pyx_n_s__CN;
+static PyObject *__pyx_n_s__CO;
+static PyObject *__pyx_n_s__D;
+static PyObject *__pyx_n_s__DS;
+static PyObject *__pyx_n_s__DT;
+static PyObject *__pyx_n_s__DictType;
+static PyObject *__pyx_n_s__F;
+static PyObject *__pyx_n_s__Fastafile;
+static PyObject *__pyx_n_s__FloatType;
+static PyObject *__pyx_n_s__GO;
+static PyObject *__pyx_n_s__HD;
+static PyObject *__pyx_n_s__I;
+static PyObject *__pyx_n_s__ID;
+static PyObject *__pyx_n_s__IOError;
+static PyObject *__pyx_n_s__IndelCaller;
+static PyObject *__pyx_n_s__IntType;
+static PyObject *__pyx_n_s__IteratorColumn;
+static PyObject *__pyx_n_s__IteratorIndelCalls;
+static PyObject *__pyx_n_s__IteratorRow;
+static PyObject *__pyx_n_s__IteratorSNPCalls;
+static PyObject *__pyx_n_s__KeyError;
+static PyObject *__pyx_n_s__LB;
+static PyObject *__pyx_n_s__LN;
+static PyObject *__pyx_n_s__M5;
+static PyObject *__pyx_n_s__NotImplementedError;
+static PyObject *__pyx_n_s__O_CREAT;
+static PyObject *__pyx_n_s__O_WRONLY;
+static PyObject *__pyx_n_s__Outs;
+static PyObject *__pyx_n_s__PG;
+static PyObject *__pyx_n_s__PI;
+static PyObject *__pyx_n_s__PL;
+static PyObject *__pyx_n_s__PN;
+static PyObject *__pyx_n_s__PU;
+static PyObject *__pyx_n_s__PileupColumn;
+static PyObject *__pyx_n_s__PileupProxy;
+static PyObject *__pyx_n_s__PileupRead;
+static PyObject *__pyx_n_s__RG;
+static PyObject *__pyx_n_s__S;
+static PyObject *__pyx_n_s__SM;
+static PyObject *__pyx_n_s__SN;
+static PyObject *__pyx_n_s__SNPCaller;
+static PyObject *__pyx_n_s__SO;
+static PyObject *__pyx_n_s__SP;
+static PyObject *__pyx_n_s__SQ;
+static PyObject *__pyx_n_s__Samfile;
+static PyObject *__pyx_n_s__StderrStore;
+static PyObject *__pyx_n_s__StopIteration;
+static PyObject *__pyx_n_s__TypeError;
+static PyObject *__pyx_n_s__UR;
+static PyObject *__pyx_n_s__VALID_HEADERS;
+static PyObject *__pyx_n_s__VALID_HEADER_FIELDS;
+static PyObject *__pyx_n_s__VALID_HEADER_ORDER;
+static PyObject *__pyx_n_s__VALID_HEADER_TYPES;
+static PyObject *__pyx_n_s__VN;
+static PyObject *__pyx_n_s__ValueError;
+static PyObject *__pyx_n_s__Z;
+static PyObject *__pyx_n_s____all__;
+static PyObject *__pyx_n_s____del__;
+static PyObject *__pyx_n_s____dict__;
+static PyObject *__pyx_n_s____getattribute__;
+static PyObject *__pyx_n_s____init__;
+static PyObject *__pyx_n_s____main__;
+static PyObject *__pyx_n_s____str__;
+static PyObject *__pyx_n_s____test__;
+static PyObject *__pyx_n_s___alignment;
+static PyObject *__pyx_n_s___buildHeader;
+static PyObject *__pyx_n_s___buildLine;
+static PyObject *__pyx_n_s___call;
+static PyObject *__pyx_n_s___consensus_quality;
+static PyObject *__pyx_n_s___coverage;
+static PyObject *__pyx_n_s___delegate;
+static PyObject *__pyx_n_s___filename;
+static PyObject *__pyx_n_s___genotype;
+static PyObject *__pyx_n_s___hasIndex;
+static PyObject *__pyx_n_s___indel;
+static PyObject *__pyx_n_s___isOpen;
+static PyObject *__pyx_n_s___is_del;
+static PyObject *__pyx_n_s___is_head;
+static PyObject *__pyx_n_s___is_tail;
+static PyObject *__pyx_n_s___level;
+static PyObject *__pyx_n_s___logfile;
+static PyObject *__pyx_n_s___open;
+static PyObject *__pyx_n_s___parseRegion;
+static PyObject *__pyx_n_s___pos;
+static PyObject *__pyx_n_s___qpos;
+static PyObject *__pyx_n_s___r;
+static PyObject *__pyx_n_s___reference_base;
+static PyObject *__pyx_n_s___samtools_dispatch;
+static PyObject *__pyx_n_s___snp_quality;
+static PyObject *__pyx_n_s___tid;
+static PyObject *__pyx_n_s__alignment;
+static PyObject *__pyx_n_s__all;
+static PyObject *__pyx_n_s__append;
+static PyObject *__pyx_n_s__args;
+static PyObject *__pyx_n_s__b;
+static PyObject *__pyx_n_s__bam;
+static PyObject *__pyx_n_s__beg;
+static PyObject *__pyx_n_s__bin;
+static PyObject *__pyx_n_s__bqual;
+static PyObject *__pyx_n_s__c;
+static PyObject *__pyx_n_s__calcsize;
+static PyObject *__pyx_n_s__callback;
+static PyObject *__pyx_n_s__cap_mapQ;
+static PyObject *__pyx_n_s__catch_stderr;
+static PyObject *__pyx_n_s__catch_stdout;
+static PyObject *__pyx_n_s__chr;
+static PyObject *__pyx_n_s__cigar;
+static PyObject *__pyx_n_s__close;
+static PyObject *__pyx_n_s__cmp;
+static PyObject *__pyx_n_s__cnext;
+static PyObject *__pyx_n_s__cnt1;
+static PyObject *__pyx_n_s__cnt2;
+static PyObject *__pyx_n_s__cnt_anti;
+static PyObject *__pyx_n_s__collections;
+static PyObject *__pyx_n_s__consensus_quality;
+static PyObject *__pyx_n_s__core;
+static PyObject *__pyx_n_s__coverage;
+static PyObject *__pyx_n_s__csamtools;
+static PyObject *__pyx_n_s__ctypes;
+static PyObject *__pyx_n_s__d;
+static PyObject *__pyx_n_s__data;
+static PyObject *__pyx_n_s__data_len;
+static PyObject *__pyx_n_s__dup;
+static PyObject *__pyx_n_s__dup2;
+static PyObject *__pyx_n_s__end;
+static PyObject *__pyx_n_s__errmod;
+static PyObject *__pyx_n_s__exc_type;
+static PyObject *__pyx_n_s__exc_value;
+static PyObject *__pyx_n_s__exists;
+static PyObject *__pyx_n_s__f;
+static PyObject *__pyx_n_s__fastafile;
+static PyObject *__pyx_n_s__fd;
+static PyObject *__pyx_n_s__fields;
+static PyObject *__pyx_n_s__filename;
+static PyObject *__pyx_n_s__fileno;
+static PyObject *__pyx_n_s__first_allele;
+static PyObject *__pyx_n_s__flag;
+static PyObject *__pyx_n_s__flush;
+static PyObject *__pyx_n_s__fp;
+static PyObject *__pyx_n_s__genotype;
+static PyObject *__pyx_n_s__getSequence;
+static PyObject *__pyx_n_s__gettid;
+static PyObject *__pyx_n_s__gt;
+static PyObject *__pyx_n_s__hasReference;
+static PyObject *__pyx_n_s__hash;
+static PyObject *__pyx_n_s__header;
+static PyObject *__pyx_n_s__het_rate;
+static PyObject *__pyx_n_s__i;
+static PyObject *__pyx_n_s__id;
+static PyObject *__pyx_n_s__indel;
+static PyObject *__pyx_n_s__indel1;
+static PyObject *__pyx_n_s__indel2;
+static PyObject *__pyx_n_s__index;
+static PyObject *__pyx_n_s__is_del;
+static PyObject *__pyx_n_s__is_head;
+static PyObject *__pyx_n_s__is_paired;
+static PyObject *__pyx_n_s__is_tail;
+static PyObject *__pyx_n_s__isbam;
+static PyObject *__pyx_n_s__isize;
+static PyObject *__pyx_n_s__isremote;
+static PyObject *__pyx_n_s__iter;
+static PyObject *__pyx_n_s__iterator_column;
+static PyObject *__pyx_n_s__iterdata;
+static PyObject *__pyx_n_s__join;
+static PyObject *__pyx_n_s__l_aux;
+static PyObject *__pyx_n_s__l_qname;
+static PyObject *__pyx_n_s__l_qseq;
+static PyObject *__pyx_n_s__l_text;
+static PyObject *__pyx_n_s__level;
+static PyObject *__pyx_n_s__m_data;
+static PyObject *__pyx_n_s__map;
+static PyObject *__pyx_n_s__mapping_quality;
+static PyObject *__pyx_n_s__mapq;
+static PyObject *__pyx_n_s__mask;
+static PyObject *__pyx_n_s__mate;
+static PyObject *__pyx_n_s__mate_is_unmapped;
+static PyObject *__pyx_n_s__max_depth;
+static PyObject *__pyx_n_s__method;
+static PyObject *__pyx_n_s__min_baseQ;
+static PyObject *__pyx_n_s__mkstemp;
+static PyObject *__pyx_n_s__mode;
+static PyObject *__pyx_n_s__mpos;
+static PyObject *__pyx_n_s__mtid;
+static PyObject *__pyx_n_s__n;
+static PyObject *__pyx_n_s__n_cigar;
+static PyObject *__pyx_n_s__n_hap;
+static PyObject *__pyx_n_s__n_haplotypes;
+static PyObject *__pyx_n_s__n_plp;
+static PyObject *__pyx_n_s__n_pu;
+static PyObject *__pyx_n_s__n_targets;
+static PyObject *__pyx_n_s__name;
+static PyObject *__pyx_n_s__nextiter;
+static PyObject *__pyx_n_s__nreferences;
+static PyObject *__pyx_n_s__object;
+static PyObject *__pyx_n_s__offset;
+static PyObject *__pyx_n_s__open;
+static PyObject *__pyx_n_s__options;
+static PyObject *__pyx_n_s__os;
+static PyObject *__pyx_n_s__pack_into;
+static PyObject *__pyx_n_s__path;
+static PyObject *__pyx_n_s__pileup_iter;
+static PyObject *__pyx_n_s__pileups;
+static PyObject *__pyx_n_s__plp;
+static PyObject *__pyx_n_s__port;
+static PyObject *__pyx_n_s__pos;
+static PyObject *__pyx_n_s__q_cns;
+static PyObject *__pyx_n_s__q_indel;
+static PyObject *__pyx_n_s__q_r;
+static PyObject *__pyx_n_s__q_ref;
+static PyObject *__pyx_n_s__qname;
+static PyObject *__pyx_n_s__qpos;
+static PyObject *__pyx_n_s__qseq;
+static PyObject *__pyx_n_s__qual;
+static PyObject *__pyx_n_s__r;
+static PyObject *__pyx_n_s__r_indel;
+static PyObject *__pyx_n_s__range;
+static PyObject *__pyx_n_s__raw;
+static PyObject *__pyx_n_s__rb;
+static PyObject *__pyx_n_s__re;
+static PyObject *__pyx_n_s__readAndRelease;
+static PyObject *__pyx_n_s__readlines;
+static PyObject *__pyx_n_s__reads_diff;
+static PyObject *__pyx_n_s__reads_first;
+static PyObject *__pyx_n_s__reads_second;
+static PyObject *__pyx_n_s__record;
+static PyObject *__pyx_n_s__reference;
+static PyObject *__pyx_n_s__reference_base;
+static PyObject *__pyx_n_s__referencelengths;
+static PyObject *__pyx_n_s__referencenames;
+static PyObject *__pyx_n_s__region;
+static PyObject *__pyx_n_s__release;
+static PyObject *__pyx_n_s__remove;
+static PyObject *__pyx_n_s__reopen;
+static PyObject *__pyx_n_s__reset;
+static PyObject *__pyx_n_s__restore;
+static PyObject *__pyx_n_s__retval;
+static PyObject *__pyx_n_s__rg2lib;
+static PyObject *__pyx_n_s__rname;
+static PyObject *__pyx_n_s__rowiter;
+static PyObject *__pyx_n_s__s;
+static PyObject *__pyx_n_s__samfile;
+static PyObject *__pyx_n_s__samtools;
+static PyObject *__pyx_n_s__second_allele;
+static PyObject *__pyx_n_s__self;
+static PyObject *__pyx_n_s__seq;
+static PyObject *__pyx_n_s__seq_len;
+static PyObject *__pyx_n_s__setdevice;
+static PyObject *__pyx_n_s__setfd;
+static PyObject *__pyx_n_s__setfile;
+static PyObject *__pyx_n_s__setupIteratorData;
+static PyObject *__pyx_n_s__snp_quality;
+static PyObject *__pyx_n_s__split;
+static PyObject *__pyx_n_s__start;
+static PyObject *__pyx_n_s__startswith;
+static PyObject *__pyx_n_s__stderr;
+static PyObject *__pyx_n_s__stderr_f;
+static PyObject *__pyx_n_s__stderr_h;
+static PyObject *__pyx_n_s__stderr_save;
+static PyObject *__pyx_n_s__stdout;
+static PyObject *__pyx_n_s__stepper;
+static PyObject *__pyx_n_s__streams;
+static PyObject *__pyx_n_s__strip;
+static PyObject *__pyx_n_s__struct;
+static PyObject *__pyx_n_s__sys;
+static PyObject *__pyx_n_s__tags;
+static PyObject *__pyx_n_s__target_len;
+static PyObject *__pyx_n_s__target_name;
+static PyObject *__pyx_n_s__tempfile;
+static PyObject *__pyx_n_s__template;
+static PyObject *__pyx_n_s__text;
+static PyObject *__pyx_n_s__theta;
+static PyObject *__pyx_n_s__tid;
+static PyObject *__pyx_n_s__traceback;
+static PyObject *__pyx_n_s__types;
+static PyObject *__pyx_n_s__until_eof;
+static PyObject *__pyx_n_s__view;
+static PyObject *__pyx_n_s__w;
+static PyObject *__pyx_n_s__wb;
+static PyObject *__pyx_n_s__wbu;
+static PyObject *__pyx_n_s__wh;
+static PyObject *__pyx_n_s__where;
+static PyObject *__pyx_n_s__x;
+static PyObject *__pyx_int_0;
+static PyObject *__pyx_int_1;
+static PyObject *__pyx_int_2;
+static PyObject *__pyx_int_4;
+static PyObject *__pyx_int_8;
+static PyObject *__pyx_int_13;
+static PyObject *__pyx_int_16;
+static PyObject *__pyx_int_32;
+static PyObject *__pyx_int_40;
+static PyObject *__pyx_int_60;
+static PyObject *__pyx_int_64;
+static PyObject *__pyx_int_128;
+static PyObject *__pyx_int_255;
+static PyObject *__pyx_int_256;
+static PyObject *__pyx_int_512;
+static PyObject *__pyx_int_neg_127;
+static PyObject *__pyx_int_0660;
+static PyObject *__pyx_int_1024;
+static PyObject *__pyx_int_65535;
+static PyObject *__pyx_int_neg_32767;
+static PyObject *__pyx_int_536870912;
+static PyObject *__pyx_int_4294967295;
+static PyObject *__pyx_int_neg_2147483648;
+static PyObject *__pyx_k_41;
+static PyObject *__pyx_k_61;
+static int __pyx_k_104;
+static PyObject *__pyx_k_149;
+static PyObject *__pyx_k_150;
+static PyObject *__pyx_k_tuple_4;
+static PyObject *__pyx_k_tuple_7;
+static PyObject *__pyx_k_tuple_8;
+static PyObject *__pyx_k_tuple_10;
+static PyObject *__pyx_k_tuple_24;
+static PyObject *__pyx_k_tuple_25;
+static PyObject *__pyx_k_tuple_26;
+static PyObject *__pyx_k_tuple_29;
+static PyObject *__pyx_k_tuple_31;
+static PyObject *__pyx_k_tuple_33;
+static PyObject *__pyx_k_tuple_36;
+static PyObject *__pyx_k_tuple_38;
+static PyObject *__pyx_k_tuple_39;
+static PyObject *__pyx_k_tuple_40;
+static PyObject *__pyx_k_tuple_42;
+static PyObject *__pyx_k_tuple_44;
+static PyObject *__pyx_k_tuple_46;
+static PyObject *__pyx_k_tuple_48;
+static PyObject *__pyx_k_tuple_50;
+static PyObject *__pyx_k_tuple_52;
+static PyObject *__pyx_k_tuple_54;
+static PyObject *__pyx_k_tuple_56;
+static PyObject *__pyx_k_tuple_58;
+static PyObject *__pyx_k_tuple_60;
+static PyObject *__pyx_k_tuple_62;
+static PyObject *__pyx_k_tuple_63;
+static PyObject *__pyx_k_tuple_65;
+static PyObject *__pyx_k_tuple_66;
+static PyObject *__pyx_k_tuple_68;
+static PyObject *__pyx_k_tuple_69;
+static PyObject *__pyx_k_tuple_71;
+static PyObject *__pyx_k_tuple_72;
+static PyObject *__pyx_k_tuple_74;
+static PyObject *__pyx_k_tuple_75;
+static PyObject *__pyx_k_tuple_76;
+static PyObject *__pyx_k_tuple_77;
+static PyObject *__pyx_k_tuple_78;
+static PyObject *__pyx_k_tuple_79;
+static PyObject *__pyx_k_tuple_80;
+static PyObject *__pyx_k_tuple_81;
+static PyObject *__pyx_k_tuple_82;
+static PyObject *__pyx_k_tuple_84;
+static PyObject *__pyx_k_tuple_86;
+static PyObject *__pyx_k_tuple_89;
+static PyObject *__pyx_k_tuple_96;
+static PyObject *__pyx_k_tuple_97;
+static PyObject *__pyx_k_tuple_99;
+static PyObject *__pyx_k_tuple_100;
+static PyObject *__pyx_k_tuple_101;
+static PyObject *__pyx_k_tuple_106;
+static PyObject *__pyx_k_tuple_107;
+static PyObject *__pyx_k_tuple_123;
+static PyObject *__pyx_k_tuple_147;
+static PyObject *__pyx_k_tuple_148;
+static PyObject *__pyx_k_tuple_154;
+static PyObject *__pyx_k_tuple_160;
+static PyObject *__pyx_k_tuple_162;
+static PyObject *__pyx_k_tuple_164;
+static PyObject *__pyx_k_tuple_167;
+static PyObject *__pyx_k_tuple_168;
+static PyObject *__pyx_k_tuple_169;
+static PyObject *__pyx_k_tuple_229;
+static PyObject *__pyx_k_tuple_232;
+static PyObject *__pyx_k_tuple_233;
+static PyObject *__pyx_k_tuple_234;
+static PyObject *__pyx_k_tuple_235;
+static PyObject *__pyx_k_tuple_236;
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":65
+ * #####################################################################
+ * cdef class AlignedRead
+ * cdef makeAlignedRead(bam1_t * src): # <<<<<<<<<<<<<<
+ * '''enter src into AlignedRead.'''
+ * cdef AlignedRead dest = AlignedRead.__new__(AlignedRead)
+ */
+
+static PyObject *__pyx_f_9csamtools_makeAlignedRead(bam1_t *__pyx_v_src) {
+ struct __pyx_obj_9csamtools_AlignedRead *__pyx_v_dest = 0;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("makeAlignedRead");
+ __Pyx_TraceCall("makeAlignedRead", __pyx_f[0], 65);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":67
+ * cdef makeAlignedRead(bam1_t * src):
+ * '''enter src into AlignedRead.'''
+ * cdef AlignedRead dest = AlignedRead.__new__(AlignedRead) # <<<<<<<<<<<<<<
+ * dest._delegate = bam_dup1(src)
+ * return dest
+ */
+ __pyx_t_1 = __Pyx_tp_new(((PyObject*)__pyx_ptype_9csamtools_AlignedRead)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 67; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (!(likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_9csamtools_AlignedRead)))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 67; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_dest = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":68
+ * '''enter src into AlignedRead.'''
+ * cdef AlignedRead dest = AlignedRead.__new__(AlignedRead)
+ * dest._delegate = bam_dup1(src) # <<<<<<<<<<<<<<
+ * return dest
+ *
+ */
+ __pyx_v_dest->_delegate = bam_dup1(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":69
+ * cdef AlignedRead dest = AlignedRead.__new__(AlignedRead)
+ * dest._delegate = bam_dup1(src)
+ * return dest # <<<<<<<<<<<<<<
+ *
+ * cdef class PileupProxy
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_v_dest));
+ __pyx_r = ((PyObject *)__pyx_v_dest);
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.makeAlignedRead");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_XDECREF((PyObject *)__pyx_v_dest);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":72
+ *
+ * cdef class PileupProxy
+ * cdef makePileupProxy( bam_pileup1_t * plp, int tid, int pos, int n ): # <<<<<<<<<<<<<<
+ * cdef PileupProxy dest = PileupProxy.__new__(PileupProxy)
+ * dest.plp = plp
+ */
+
+static PyObject *__pyx_f_9csamtools_makePileupProxy(bam_pileup1_t *__pyx_v_plp, int __pyx_v_tid, int __pyx_v_pos, int __pyx_v_n) {
+ struct __pyx_obj_9csamtools_PileupProxy *__pyx_v_dest = 0;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("makePileupProxy");
+ __Pyx_TraceCall("makePileupProxy", __pyx_f[0], 72);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":73
+ * cdef class PileupProxy
+ * cdef makePileupProxy( bam_pileup1_t * plp, int tid, int pos, int n ):
+ * cdef PileupProxy dest = PileupProxy.__new__(PileupProxy) # <<<<<<<<<<<<<<
+ * dest.plp = plp
+ * dest.tid = tid
+ */
+ __pyx_t_1 = __Pyx_tp_new(((PyObject*)__pyx_ptype_9csamtools_PileupProxy)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 73; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (!(likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_9csamtools_PileupProxy)))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 73; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_dest = ((struct __pyx_obj_9csamtools_PileupProxy *)__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":74
+ * cdef makePileupProxy( bam_pileup1_t * plp, int tid, int pos, int n ):
+ * cdef PileupProxy dest = PileupProxy.__new__(PileupProxy)
+ * dest.plp = plp # <<<<<<<<<<<<<<
+ * dest.tid = tid
+ * dest.pos = pos
+ */
+ __pyx_v_dest->plp = __pyx_v_plp;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":75
+ * cdef PileupProxy dest = PileupProxy.__new__(PileupProxy)
+ * dest.plp = plp
+ * dest.tid = tid # <<<<<<<<<<<<<<
+ * dest.pos = pos
+ * dest.n = n
+ */
+ __pyx_v_dest->tid = __pyx_v_tid;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":76
+ * dest.plp = plp
+ * dest.tid = tid
+ * dest.pos = pos # <<<<<<<<<<<<<<
+ * dest.n = n
+ * return dest
+ */
+ __pyx_v_dest->pos = __pyx_v_pos;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":77
+ * dest.tid = tid
+ * dest.pos = pos
+ * dest.n = n # <<<<<<<<<<<<<<
+ * return dest
+ *
+ */
+ __pyx_t_1 = PyInt_FromLong(__pyx_v_n); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyObject_SetAttr(((PyObject *)__pyx_v_dest), __pyx_n_s__n, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 77; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":78
+ * dest.pos = pos
+ * dest.n = n
+ * return dest # <<<<<<<<<<<<<<
+ *
+ * cdef class PileupRead
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_v_dest));
+ __pyx_r = ((PyObject *)__pyx_v_dest);
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.makePileupProxy");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_XDECREF((PyObject *)__pyx_v_dest);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":81
+ *
+ * cdef class PileupRead
+ * cdef makePileupRead( bam_pileup1_t * src ): # <<<<<<<<<<<<<<
+ * '''fill a PileupRead object from a bam_pileup1_t * object.'''
+ * cdef PileupRead dest = PileupRead.__new__(PileupRead)
+ */
+
+static PyObject *__pyx_f_9csamtools_makePileupRead(bam_pileup1_t *__pyx_v_src) {
+ struct __pyx_obj_9csamtools_PileupRead *__pyx_v_dest = 0;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("makePileupRead");
+ __Pyx_TraceCall("makePileupRead", __pyx_f[0], 81);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":83
+ * cdef makePileupRead( bam_pileup1_t * src ):
+ * '''fill a PileupRead object from a bam_pileup1_t * object.'''
+ * cdef PileupRead dest = PileupRead.__new__(PileupRead) # <<<<<<<<<<<<<<
+ * dest._alignment = makeAlignedRead( src.b )
+ * dest._qpos = src.qpos
+ */
+ __pyx_t_1 = __Pyx_tp_new(((PyObject*)__pyx_ptype_9csamtools_PileupRead)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 83; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (!(likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_9csamtools_PileupRead)))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 83; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_dest = ((struct __pyx_obj_9csamtools_PileupRead *)__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":84
+ * '''fill a PileupRead object from a bam_pileup1_t * object.'''
+ * cdef PileupRead dest = PileupRead.__new__(PileupRead)
+ * dest._alignment = makeAlignedRead( src.b ) # <<<<<<<<<<<<<<
+ * dest._qpos = src.qpos
+ * dest._indel = src.indel
+ */
+ __pyx_t_1 = __pyx_f_9csamtools_makeAlignedRead(__pyx_v_src->b); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 84; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_9csamtools_AlignedRead))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 84; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GIVEREF(__pyx_t_1);
+ __Pyx_GOTREF(__pyx_v_dest->_alignment);
+ __Pyx_DECREF(((PyObject *)__pyx_v_dest->_alignment));
+ __pyx_v_dest->_alignment = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":85
+ * cdef PileupRead dest = PileupRead.__new__(PileupRead)
+ * dest._alignment = makeAlignedRead( src.b )
+ * dest._qpos = src.qpos # <<<<<<<<<<<<<<
+ * dest._indel = src.indel
+ * dest._level = src.level
+ */
+ __pyx_v_dest->_qpos = __pyx_v_src->qpos;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":86
+ * dest._alignment = makeAlignedRead( src.b )
+ * dest._qpos = src.qpos
+ * dest._indel = src.indel # <<<<<<<<<<<<<<
+ * dest._level = src.level
+ * dest._is_del = src.is_del
+ */
+ __pyx_v_dest->_indel = __pyx_v_src->indel;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":87
+ * dest._qpos = src.qpos
+ * dest._indel = src.indel
+ * dest._level = src.level # <<<<<<<<<<<<<<
+ * dest._is_del = src.is_del
+ * dest._is_head = src.is_head
+ */
+ __pyx_v_dest->_level = __pyx_v_src->level;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":88
+ * dest._indel = src.indel
+ * dest._level = src.level
+ * dest._is_del = src.is_del # <<<<<<<<<<<<<<
+ * dest._is_head = src.is_head
+ * dest._is_tail = src.is_tail
+ */
+ __pyx_v_dest->_is_del = __pyx_v_src->is_del;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":89
+ * dest._level = src.level
+ * dest._is_del = src.is_del
+ * dest._is_head = src.is_head # <<<<<<<<<<<<<<
+ * dest._is_tail = src.is_tail
+ * return dest
+ */
+ __pyx_v_dest->_is_head = __pyx_v_src->is_head;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":90
+ * dest._is_del = src.is_del
+ * dest._is_head = src.is_head
+ * dest._is_tail = src.is_tail # <<<<<<<<<<<<<<
+ * return dest
+ *
+ */
+ __pyx_v_dest->_is_tail = __pyx_v_src->is_tail;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":91
+ * dest._is_head = src.is_head
+ * dest._is_tail = src.is_tail
+ * return dest # <<<<<<<<<<<<<<
+ *
+ * #####################################################################
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_v_dest));
+ __pyx_r = ((PyObject *)__pyx_v_dest);
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.makePileupRead");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_XDECREF((PyObject *)__pyx_v_dest);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":98
+ * ## Generic callbacks for inserting python callbacks.
+ * #####################################################################
+ * cdef int fetch_callback( bam1_t *alignment, void *f): # <<<<<<<<<<<<<<
+ * '''callback for bam_fetch.
+ *
+ */
+
+static int __pyx_f_9csamtools_fetch_callback(bam1_t *__pyx_v_alignment, void *__pyx_v_f) {
+ PyObject *__pyx_v_a;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("fetch_callback");
+ __Pyx_TraceCall("fetch_callback", __pyx_f[0], 98);
+ __pyx_v_a = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":103
+ * calls function in *f* with a new :class:`AlignedRead` object as parameter.
+ * '''
+ * a = makeAlignedRead( alignment ) # <<<<<<<<<<<<<<
+ * (<object>f)(a)
+ *
+ */
+ __pyx_t_1 = __pyx_f_9csamtools_makeAlignedRead(__pyx_v_alignment); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 103; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_v_a);
+ __pyx_v_a = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":104
+ * '''
+ * a = makeAlignedRead( alignment )
+ * (<object>f)(a) # <<<<<<<<<<<<<<
+ *
+ * class PileupColumn(object):
+ */
+ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 104; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_a);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_a);
+ __Pyx_GIVEREF(__pyx_v_a);
+ __pyx_t_2 = PyObject_Call(((PyObject *)__pyx_v_f), ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 104; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_WriteUnraisable("csamtools.fetch_callback");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_a);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":119
+ * list of reads (:class:`pysam.PileupRead`) aligned to this column
+ * '''
+ * def __str__(self): # <<<<<<<<<<<<<<
+ * return "\t".join( map(str, (self.tid, self.pos, self.n))) +\
+ * "\n" + "\n".join( map(str, self.pileups) )
+ */
+
+static PyObject *__pyx_pf_9csamtools_12PileupColumn_0__str__(PyObject *__pyx_self, PyObject *__pyx_v_self); /*proto*/
+static PyMethodDef __pyx_mdef_9csamtools_12PileupColumn_0__str__ = {__Pyx_NAMESTR("__str__"), (PyCFunction)__pyx_pf_9csamtools_12PileupColumn_0__str__, METH_O, __Pyx_DOCSTR(0)};
+static PyObject *__pyx_pf_9csamtools_12PileupColumn_0__str__(PyObject *__pyx_self, PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ 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;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__str__");
+ __Pyx_TraceCall("__str__", __pyx_f[0], 119);
+ __pyx_self = __pyx_self;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":120
+ * '''
+ * def __str__(self):
+ * return "\t".join( map(str, (self.tid, self.pos, self.n))) +\ # <<<<<<<<<<<<<<
+ * "\n" + "\n".join( map(str, self.pileups) )
+ *
+ */
+ __Pyx_XDECREF(__pyx_r);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":121
+ * def __str__(self):
+ * return "\t".join( map(str, (self.tid, self.pos, self.n))) +\
+ * "\n" + "\n".join( map(str, self.pileups) ) # <<<<<<<<<<<<<<
+ *
+ * cdef int pileup_callback( uint32_t tid, uint32_t pos, int n, bam_pileup1_t *pl, void *f):
+ */
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_1), __pyx_n_s__join); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":120
+ * '''
+ * def __str__(self):
+ * return "\t".join( map(str, (self.tid, self.pos, self.n))) +\ # <<<<<<<<<<<<<<
+ * "\n" + "\n".join( map(str, self.pileups) )
+ *
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__tid); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__pos); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__n); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 120; __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 = 120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ PyTuple_SET_ITEM(__pyx_t_5, 2, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ __pyx_t_2 = 0;
+ __pyx_t_3 = 0;
+ __pyx_t_4 = 0;
+ __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_INCREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)((PyObject*)(&PyString_Type))));
+ __Pyx_GIVEREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_4, 1, ((PyObject *)__pyx_t_5));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_5));
+ __pyx_t_5 = 0;
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_map, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __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 = 120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ __pyx_t_5 = 0;
+ __pyx_t_5 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __pyx_t_4 = PyNumber_Add(__pyx_t_5, ((PyObject *)__pyx_kp_s_2)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":121
+ * def __str__(self):
+ * return "\t".join( map(str, (self.tid, self.pos, self.n))) +\
+ * "\n" + "\n".join( map(str, self.pileups) ) # <<<<<<<<<<<<<<
+ *
+ * cdef int pileup_callback( uint32_t tid, uint32_t pos, int n, bam_pileup1_t *pl, void *f):
+ */
+ __pyx_t_5 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_2), __pyx_n_s__join); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 121; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__pileups); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 121; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 121; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ __Pyx_INCREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)((PyObject*)(&PyString_Type))));
+ __Pyx_GIVEREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_map, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 121; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 121; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 121; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __pyx_t_3 = PyNumber_Add(__pyx_t_4, __pyx_t_1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 121; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 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_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_AddTraceback("csamtools.PileupColumn.__str__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":123
+ * "\n" + "\n".join( map(str, self.pileups) )
+ *
+ * cdef int pileup_callback( uint32_t tid, uint32_t pos, int n, bam_pileup1_t *pl, void *f): # <<<<<<<<<<<<<<
+ * '''callback for pileup.
+ *
+ */
+
+static int __pyx_f_9csamtools_pileup_callback(uint32_t __pyx_v_tid, uint32_t __pyx_v_pos, int __pyx_v_n, bam_pileup1_t *__pyx_v_pl, void *__pyx_v_f) {
+ PyObject *__pyx_v_p;
+ PyObject *__pyx_v_pileups;
+ int __pyx_v_x;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("pileup_callback");
+ __Pyx_TraceCall("pileup_callback", __pyx_f[0], 123);
+ __pyx_v_p = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_pileups = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":140
+ * '''
+ *
+ * p = PileupColumn() # <<<<<<<<<<<<<<
+ * p.tid = tid
+ * p.pos = pos
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__PileupColumn); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 140; __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 = 140; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_v_p);
+ __pyx_v_p = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":141
+ *
+ * p = PileupColumn()
+ * p.tid = tid # <<<<<<<<<<<<<<
+ * p.pos = pos
+ * p.n = n
+ */
+ __pyx_t_2 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_tid); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 141; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ if (PyObject_SetAttr(__pyx_v_p, __pyx_n_s__tid, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 141; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":142
+ * p = PileupColumn()
+ * p.tid = tid
+ * p.pos = pos # <<<<<<<<<<<<<<
+ * p.n = n
+ * pileups = []
+ */
+ __pyx_t_2 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_pos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 142; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ if (PyObject_SetAttr(__pyx_v_p, __pyx_n_s__pos, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 142; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":143
+ * p.tid = tid
+ * p.pos = pos
+ * p.n = n # <<<<<<<<<<<<<<
+ * pileups = []
+ *
+ */
+ __pyx_t_2 = PyInt_FromLong(__pyx_v_n); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 143; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ if (PyObject_SetAttr(__pyx_v_p, __pyx_n_s__n, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 143; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":144
+ * p.pos = pos
+ * p.n = n
+ * pileups = [] # <<<<<<<<<<<<<<
+ *
+ * cdef int x
+ */
+ __pyx_t_2 = PyList_New(0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 144; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_DECREF(((PyObject *)__pyx_v_pileups));
+ __pyx_v_pileups = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":147
+ *
+ * cdef int x
+ * for x from 0 <= x < n: # <<<<<<<<<<<<<<
+ * pileups.append( makePileupRead( &(pl[x]) ) )
+ * p.pileups = pileups
+ */
+ __pyx_t_3 = __pyx_v_n;
+ for (__pyx_v_x = 0; __pyx_v_x < __pyx_t_3; __pyx_v_x++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":148
+ * cdef int x
+ * for x from 0 <= x < n:
+ * pileups.append( makePileupRead( &(pl[x]) ) ) # <<<<<<<<<<<<<<
+ * p.pileups = pileups
+ *
+ */
+ if (unlikely(__pyx_v_pileups == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 148; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = __pyx_f_9csamtools_makePileupRead((&(__pyx_v_pl[__pyx_v_x]))); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 148; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_4 = PyList_Append(__pyx_v_pileups, __pyx_t_2); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 148; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":149
+ * for x from 0 <= x < n:
+ * pileups.append( makePileupRead( &(pl[x]) ) )
+ * p.pileups = pileups # <<<<<<<<<<<<<<
+ *
+ * (<object>f)(p)
+ */
+ if (PyObject_SetAttr(__pyx_v_p, __pyx_n_s__pileups, ((PyObject *)__pyx_v_pileups)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 149; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":151
+ * p.pileups = pileups
+ *
+ * (<object>f)(p) # <<<<<<<<<<<<<<
+ *
+ * cdef int pileup_fetch_callback( bam1_t *b, void *data):
+ */
+ __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 151; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(__pyx_v_p);
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_p);
+ __Pyx_GIVEREF(__pyx_v_p);
+ __pyx_t_1 = PyObject_Call(((PyObject *)__pyx_v_f), ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 151; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_WriteUnraisable("csamtools.pileup_callback");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_p);
+ __Pyx_DECREF(__pyx_v_pileups);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":153
+ * (<object>f)(p)
+ *
+ * cdef int pileup_fetch_callback( bam1_t *b, void *data): # <<<<<<<<<<<<<<
+ * '''callback for bam_fetch.
+ *
+ */
+
+static int __pyx_f_9csamtools_pileup_fetch_callback(bam1_t *__pyx_v_b, void *__pyx_v_data) {
+ bam_plbuf_t *__pyx_v_buf;
+ int __pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("pileup_fetch_callback");
+ __Pyx_TraceCall("pileup_fetch_callback", __pyx_f[0], 153);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":159
+ * '''
+ * cdef bam_plbuf_t * buf
+ * buf = <bam_plbuf_t*>data # <<<<<<<<<<<<<<
+ * bam_plbuf_push(b, buf)
+ * return 0
+ */
+ __pyx_v_buf = ((bam_plbuf_t *)__pyx_v_data);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":160
+ * cdef bam_plbuf_t * buf
+ * buf = <bam_plbuf_t*>data
+ * bam_plbuf_push(b, buf) # <<<<<<<<<<<<<<
+ * return 0
+ *
+ */
+ bam_plbuf_push(__pyx_v_b, __pyx_v_buf);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":161
+ * buf = <bam_plbuf_t*>data
+ * bam_plbuf_push(b, buf)
+ * return 0 # <<<<<<<<<<<<<<
+ *
+ * class StderrStore():
+ */
+ __pyx_r = 0;
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":167
+ * stderr is captured.
+ * '''
+ * def __init__(self): # <<<<<<<<<<<<<<
+ * return
+ * self.stderr_h, self.stderr_f = tempfile.mkstemp()
+ */
+
+static PyObject *__pyx_pf_9csamtools_11StderrStore_0__init__(PyObject *__pyx_self, PyObject *__pyx_v_self); /*proto*/
+static PyMethodDef __pyx_mdef_9csamtools_11StderrStore_0__init__ = {__Pyx_NAMESTR("__init__"), (PyCFunction)__pyx_pf_9csamtools_11StderrStore_0__init__, METH_O, __Pyx_DOCSTR(0)};
+static PyObject *__pyx_pf_9csamtools_11StderrStore_0__init__(PyObject *__pyx_self, PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ PyObject *__pyx_t_4 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__init__");
+ __Pyx_TraceCall("__init__", __pyx_f[0], 167);
+ __pyx_self = __pyx_self;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":168
+ * '''
+ * def __init__(self):
+ * return # <<<<<<<<<<<<<<
+ * self.stderr_h, self.stderr_f = tempfile.mkstemp()
+ * self.stderr_save = Outs( sys.stderr.fileno() )
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":169
+ * def __init__(self):
+ * return
+ * self.stderr_h, self.stderr_f = tempfile.mkstemp() # <<<<<<<<<<<<<<
+ * self.stderr_save = Outs( sys.stderr.fileno() )
+ * self.stderr_save.setfd( self.stderr_h )
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__tempfile); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__mkstemp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (PyTuple_CheckExact(__pyx_t_1) && likely(PyTuple_GET_SIZE(__pyx_t_1) == 2)) {
+ PyObject* tuple = __pyx_t_1;
+ __pyx_t_2 = PyTuple_GET_ITEM(tuple, 0); __Pyx_INCREF(__pyx_t_2);
+ __pyx_t_3 = PyTuple_GET_ITEM(tuple, 1); __Pyx_INCREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (PyObject_SetAttr(__pyx_v_self, __pyx_n_s__stderr_h, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (PyObject_SetAttr(__pyx_v_self, __pyx_n_s__stderr_f, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ } else {
+ __pyx_t_4 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_2 = __Pyx_UnpackItem(__pyx_t_4, 0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = __Pyx_UnpackItem(__pyx_t_4, 1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (__Pyx_EndUnpack(__pyx_t_4, 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ if (PyObject_SetAttr(__pyx_v_self, __pyx_n_s__stderr_h, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (PyObject_SetAttr(__pyx_v_self, __pyx_n_s__stderr_f, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 169; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":170
+ * return
+ * self.stderr_h, self.stderr_f = tempfile.mkstemp()
+ * self.stderr_save = Outs( sys.stderr.fileno() ) # <<<<<<<<<<<<<<
+ * self.stderr_save.setfd( self.stderr_h )
+ *
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__Outs); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 170; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__sys); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 170; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__stderr); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 170; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__fileno); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 170; __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_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 170; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 170; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 170; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ if (PyObject_SetAttr(__pyx_v_self, __pyx_n_s__stderr_save, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 170; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":171
+ * self.stderr_h, self.stderr_f = tempfile.mkstemp()
+ * self.stderr_save = Outs( sys.stderr.fileno() )
+ * self.stderr_save.setfd( self.stderr_h ) # <<<<<<<<<<<<<<
+ *
+ * def readAndRelease( self ):
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__stderr_save); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 171; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__setfd); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 171; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__stderr_h); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 171; __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 = 171; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 171; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_AddTraceback("csamtools.StderrStore.__init__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":173
+ * self.stderr_save.setfd( self.stderr_h )
+ *
+ * def readAndRelease( self ): # <<<<<<<<<<<<<<
+ * return []
+ * self.stderr_save.restore()
+ */
+
+static PyObject *__pyx_pf_9csamtools_11StderrStore_1readAndRelease(PyObject *__pyx_self, PyObject *__pyx_v_self); /*proto*/
+static PyMethodDef __pyx_mdef_9csamtools_11StderrStore_1readAndRelease = {__Pyx_NAMESTR("readAndRelease"), (PyCFunction)__pyx_pf_9csamtools_11StderrStore_1readAndRelease, METH_O, __Pyx_DOCSTR(0)};
+static PyObject *__pyx_pf_9csamtools_11StderrStore_1readAndRelease(PyObject *__pyx_self, PyObject *__pyx_v_self) {
+ PyObject *__pyx_v_lines;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("readAndRelease");
+ __Pyx_TraceCall("readAndRelease", __pyx_f[0], 173);
+ __pyx_self = __pyx_self;
+ __pyx_v_lines = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":174
+ *
+ * def readAndRelease( self ):
+ * return [] # <<<<<<<<<<<<<<
+ * self.stderr_save.restore()
+ * lines = []
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 174; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __pyx_r = ((PyObject *)__pyx_t_1);
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":175
+ * def readAndRelease( self ):
+ * return []
+ * self.stderr_save.restore() # <<<<<<<<<<<<<<
+ * lines = []
+ * if os.path.exists(self.stderr_f):
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__stderr_save); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 175; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__restore); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 175; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 175; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":176
+ * return []
+ * self.stderr_save.restore()
+ * lines = [] # <<<<<<<<<<<<<<
+ * if os.path.exists(self.stderr_f):
+ * lines = open( self.stderr_f, "r" ).readlines()
+ */
+ __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 176; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(__pyx_v_lines);
+ __pyx_v_lines = ((PyObject *)__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":177
+ * self.stderr_save.restore()
+ * lines = []
+ * if os.path.exists(self.stderr_f): # <<<<<<<<<<<<<<
+ * lines = open( self.stderr_f, "r" ).readlines()
+ * os.remove( self.stderr_f )
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 177; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__path); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 177; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__exists); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 177; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__stderr_f); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 177; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 177; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 177; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 177; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":178
+ * lines = []
+ * if os.path.exists(self.stderr_f):
+ * lines = open( self.stderr_f, "r" ).readlines() # <<<<<<<<<<<<<<
+ * os.remove( self.stderr_f )
+ * return lines
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__stderr_f); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 178; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 178; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__r));
+ PyTuple_SET_ITEM(__pyx_t_3, 1, ((PyObject *)__pyx_n_s__r));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__r));
+ __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_open, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 178; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__readlines); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 178; __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_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 178; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_v_lines);
+ __pyx_v_lines = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":179
+ * if os.path.exists(self.stderr_f):
+ * lines = open( self.stderr_f, "r" ).readlines()
+ * os.remove( self.stderr_f ) # <<<<<<<<<<<<<<
+ * return lines
+ *
+ */
+ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__remove); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __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_GetAttr(__pyx_v_self, __pyx_n_s__stderr_f); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __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 = 179; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 179; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":180
+ * lines = open( self.stderr_f, "r" ).readlines()
+ * os.remove( self.stderr_f )
+ * return lines # <<<<<<<<<<<<<<
+ *
+ * def release(self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_lines);
+ __pyx_r = __pyx_v_lines;
+ 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_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.StderrStore.readAndRelease");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_lines);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":182
+ * return lines
+ *
+ * def release(self): # <<<<<<<<<<<<<<
+ * return
+ * self.stderr_save.restore()
+ */
+
+static PyObject *__pyx_pf_9csamtools_11StderrStore_2release(PyObject *__pyx_self, PyObject *__pyx_v_self); /*proto*/
+static PyMethodDef __pyx_mdef_9csamtools_11StderrStore_2release = {__Pyx_NAMESTR("release"), (PyCFunction)__pyx_pf_9csamtools_11StderrStore_2release, METH_O, __Pyx_DOCSTR(0)};
+static PyObject *__pyx_pf_9csamtools_11StderrStore_2release(PyObject *__pyx_self, PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("release");
+ __Pyx_TraceCall("release", __pyx_f[0], 182);
+ __pyx_self = __pyx_self;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":183
+ *
+ * def release(self):
+ * return # <<<<<<<<<<<<<<
+ * self.stderr_save.restore()
+ * if os.path.exists(self.stderr_f):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":184
+ * def release(self):
+ * return
+ * self.stderr_save.restore() # <<<<<<<<<<<<<<
+ * if os.path.exists(self.stderr_f):
+ * os.remove( self.stderr_f )
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__stderr_save); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 184; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__restore); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 184; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 184; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":185
+ * return
+ * self.stderr_save.restore()
+ * if os.path.exists(self.stderr_f): # <<<<<<<<<<<<<<
+ * os.remove( self.stderr_f )
+ *
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__path); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__exists); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__stderr_f); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 185; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":186
+ * self.stderr_save.restore()
+ * if os.path.exists(self.stderr_f):
+ * os.remove( self.stderr_f ) # <<<<<<<<<<<<<<
+ *
+ * def __del__(self):
+ */
+ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 186; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__remove); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 186; __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_GetAttr(__pyx_v_self, __pyx_n_s__stderr_f); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 186; __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 = 186; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 186; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.StderrStore.release");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":188
+ * os.remove( self.stderr_f )
+ *
+ * def __del__(self): # <<<<<<<<<<<<<<
+ * self.release()
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_11StderrStore_3__del__(PyObject *__pyx_self, PyObject *__pyx_v_self); /*proto*/
+static PyMethodDef __pyx_mdef_9csamtools_11StderrStore_3__del__ = {__Pyx_NAMESTR("__del__"), (PyCFunction)__pyx_pf_9csamtools_11StderrStore_3__del__, METH_O, __Pyx_DOCSTR(0)};
+static PyObject *__pyx_pf_9csamtools_11StderrStore_3__del__(PyObject *__pyx_self, PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__del__");
+ __Pyx_TraceCall("__del__", __pyx_f[0], 188);
+ __pyx_self = __pyx_self;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":189
+ *
+ * def __del__(self):
+ * self.release() # <<<<<<<<<<<<<<
+ *
+ * ######################################################################
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__release); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 189; __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 = 189; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.StderrStore.__del__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":238
+ * cdef faidx_t * fastafile
+ *
+ * def __cinit__(self, *args, **kwargs ): # <<<<<<<<<<<<<<
+ * self.fastafile = NULL
+ * self._filename = NULL
+ */
+
+static int __pyx_pf_9csamtools_9Fastafile_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_9Fastafile_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_args = 0;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 238);
+ if (unlikely(__pyx_kwds) && unlikely(!__Pyx_CheckKeywordStrings(__pyx_kwds, "__cinit__", 1))) return -1;
+ __pyx_v_kwargs = (__pyx_kwds) ? PyDict_Copy(__pyx_kwds) : PyDict_New();
+ if (unlikely(!__pyx_v_kwargs)) return -1;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ __Pyx_INCREF(__pyx_args);
+ __pyx_v_args = __pyx_args;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":239
+ *
+ * def __cinit__(self, *args, **kwargs ):
+ * self.fastafile = NULL # <<<<<<<<<<<<<<
+ * self._filename = NULL
+ * self._open( *args, **kwargs )
+ */
+ ((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":240
+ * def __cinit__(self, *args, **kwargs ):
+ * self.fastafile = NULL
+ * self._filename = NULL # <<<<<<<<<<<<<<
+ * self._open( *args, **kwargs )
+ *
+ */
+ ((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->_filename = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":241
+ * self.fastafile = NULL
+ * self._filename = NULL
+ * self._open( *args, **kwargs ) # <<<<<<<<<<<<<<
+ *
+ * def _isOpen( self ):
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___open); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 241; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PySequence_Tuple(((PyObject *)__pyx_v_args)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 241; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __pyx_t_3 = PyEval_CallObjectWithKeywords(__pyx_t_1, ((PyObject *)__pyx_t_2), ((PyObject *)__pyx_v_kwargs)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 241; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.Fastafile.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_args);
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":243
+ * self._open( *args, **kwargs )
+ *
+ * def _isOpen( self ): # <<<<<<<<<<<<<<
+ * '''return true if samfile has been opened.'''
+ * return self.fastafile != NULL
+ */
+
+static PyObject *__pyx_pf_9csamtools_9Fastafile_1_isOpen(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static char __pyx_doc_9csamtools_9Fastafile_1_isOpen[] = "return true if samfile has been opened.";
+static PyObject *__pyx_pf_9csamtools_9Fastafile_1_isOpen(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("_isOpen");
+ __Pyx_TraceCall("_isOpen", __pyx_f[0], 243);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":245
+ * def _isOpen( self ):
+ * '''return true if samfile has been opened.'''
+ * return self.fastafile != NULL # <<<<<<<<<<<<<<
+ *
+ * def __len__(self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyBool_FromLong((((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile != NULL)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 245; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.Fastafile._isOpen");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":247
+ * return self.fastafile != NULL
+ *
+ * def __len__(self): # <<<<<<<<<<<<<<
+ * if self.fastafile == NULL:
+ * raise ValueError( "calling len() on closed file" )
+ */
+
+static Py_ssize_t __pyx_pf_9csamtools_9Fastafile_2__len__(PyObject *__pyx_v_self); /*proto*/
+static Py_ssize_t __pyx_pf_9csamtools_9Fastafile_2__len__(PyObject *__pyx_v_self) {
+ Py_ssize_t __pyx_r;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__len__");
+ __Pyx_TraceCall("__len__", __pyx_f[0], 247);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":248
+ *
+ * def __len__(self):
+ * if self.fastafile == NULL: # <<<<<<<<<<<<<<
+ * raise ValueError( "calling len() on closed file" )
+ *
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile == NULL);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":249
+ * def __len__(self):
+ * if self.fastafile == NULL:
+ * raise ValueError( "calling len() on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * return faidx_fetch_nseq(self.fastafile)
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_4), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":251
+ * raise ValueError( "calling len() on closed file" )
+ *
+ * return faidx_fetch_nseq(self.fastafile) # <<<<<<<<<<<<<<
+ *
+ * def _open( self,
+ */
+ __pyx_r = faidx_fetch_nseq(((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile);
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.Fastafile.__len__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":253
+ * return faidx_fetch_nseq(self.fastafile)
+ *
+ * def _open( self, # <<<<<<<<<<<<<<
+ * char * filename ):
+ * '''open an indexed fasta file.
+ */
+
+static PyObject *__pyx_pf_9csamtools_9Fastafile_3_open(PyObject *__pyx_v_self, PyObject *__pyx_arg_filename); /*proto*/
+static char __pyx_doc_9csamtools_9Fastafile_3_open[] = "open an indexed fasta file.\n\n This method expects an indexed fasta file.\n ";
+static PyObject *__pyx_pf_9csamtools_9Fastafile_3_open(PyObject *__pyx_v_self, PyObject *__pyx_arg_filename) {
+ char *__pyx_v_filename;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("_open");
+ __Pyx_TraceCall("_open", __pyx_f[0], 253);
+ assert(__pyx_arg_filename); {
+ __pyx_v_filename = PyBytes_AsString(__pyx_arg_filename); if (unlikely((!__pyx_v_filename) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 254; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Fastafile._open");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":261
+ *
+ * # close a previously opened file
+ * if self.fastafile != NULL: self.close() # <<<<<<<<<<<<<<
+ * if self._filename != NULL: free(self._filename)
+ * self._filename = strdup(filename)
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile != NULL);
+ if (__pyx_t_1) {
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__close); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 261; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 261; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":262
+ * # close a previously opened file
+ * if self.fastafile != NULL: self.close()
+ * if self._filename != NULL: free(self._filename) # <<<<<<<<<<<<<<
+ * self._filename = strdup(filename)
+ * self.fastafile = fai_load( filename )
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->_filename != NULL);
+ if (__pyx_t_1) {
+ free(((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->_filename);
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":263
+ * if self.fastafile != NULL: self.close()
+ * if self._filename != NULL: free(self._filename)
+ * self._filename = strdup(filename) # <<<<<<<<<<<<<<
+ * self.fastafile = fai_load( filename )
+ *
+ */
+ ((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->_filename = strdup(__pyx_v_filename);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":264
+ * if self._filename != NULL: free(self._filename)
+ * self._filename = strdup(filename)
+ * self.fastafile = fai_load( filename ) # <<<<<<<<<<<<<<
+ *
+ * if self.fastafile == NULL:
+ */
+ ((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile = fai_load(__pyx_v_filename);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":266
+ * self.fastafile = fai_load( filename )
+ *
+ * if self.fastafile == NULL: # <<<<<<<<<<<<<<
+ * raise IOError("could not open file `%s`" % filename )
+ *
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile == NULL);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":267
+ *
+ * if self.fastafile == NULL:
+ * raise IOError("could not open file `%s`" % filename ) # <<<<<<<<<<<<<<
+ *
+ * def close( self ):
+ */
+ __pyx_t_3 = PyBytes_FromString(__pyx_v_filename); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 267; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ __pyx_t_2 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_5), ((PyObject *)__pyx_t_3)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 267; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 267; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_t_2));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_2));
+ __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_IOError, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 267; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 267; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.Fastafile._open");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":269
+ * raise IOError("could not open file `%s`" % filename )
+ *
+ * def close( self ): # <<<<<<<<<<<<<<
+ * if self.fastafile != NULL:
+ * fai_destroy( self.fastafile )
+ */
+
+static PyObject *__pyx_pf_9csamtools_9Fastafile_4close(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9Fastafile_4close(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("close");
+ __Pyx_TraceCall("close", __pyx_f[0], 269);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":270
+ *
+ * def close( self ):
+ * if self.fastafile != NULL: # <<<<<<<<<<<<<<
+ * fai_destroy( self.fastafile )
+ * self.fastafile = NULL
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile != NULL);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":271
+ * def close( self ):
+ * if self.fastafile != NULL:
+ * fai_destroy( self.fastafile ) # <<<<<<<<<<<<<<
+ * self.fastafile = NULL
+ *
+ */
+ fai_destroy(((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":272
+ * if self.fastafile != NULL:
+ * fai_destroy( self.fastafile )
+ * self.fastafile = NULL # <<<<<<<<<<<<<<
+ *
+ * def __dealloc__(self):
+ */
+ ((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile = NULL;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":274
+ * self.fastafile = NULL
+ *
+ * def __dealloc__(self): # <<<<<<<<<<<<<<
+ * self.close()
+ * if self._filename != NULL: free(self._filename)
+ */
+
+static void __pyx_pf_9csamtools_9Fastafile_5__dealloc__(PyObject *__pyx_v_self); /*proto*/
+static void __pyx_pf_9csamtools_9Fastafile_5__dealloc__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__dealloc__");
+ __Pyx_TraceCall("__dealloc__", __pyx_f[0], 274);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":275
+ *
+ * def __dealloc__(self):
+ * self.close() # <<<<<<<<<<<<<<
+ * if self._filename != NULL: free(self._filename)
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__close); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 275; __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 = 275; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":276
+ * def __dealloc__(self):
+ * self.close()
+ * if self._filename != NULL: free(self._filename) # <<<<<<<<<<<<<<
+ *
+ * property filename:
+ */
+ __pyx_t_3 = (((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->_filename != NULL);
+ if (__pyx_t_3) {
+ free(((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->_filename);
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.Fastafile.__dealloc__");
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":280
+ * property filename:
+ * '''number of :term:`filename` associated with this object.'''
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * return self._filename
+ */
+
+static PyObject *__pyx_pf_9csamtools_9Fastafile_8filename_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9Fastafile_8filename_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 280);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":281
+ * '''number of :term:`filename` associated with this object.'''
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return self._filename
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 281; __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 = 281; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 281; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_7), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 281; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 281; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":282
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * return self._filename # <<<<<<<<<<<<<<
+ *
+ * def fetch( self,
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = PyBytes_FromString(((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->_filename); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 282; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __pyx_r = ((PyObject *)__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("csamtools.Fastafile.filename.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":284
+ * return self._filename
+ *
+ * def fetch( self, # <<<<<<<<<<<<<<
+ * reference = None,
+ * start = None,
+ */
+
+static PyObject *__pyx_pf_9csamtools_9Fastafile_6fetch(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_9Fastafile_6fetch[] = "*(reference = None, start = None, end = None, region = None)*\n \n fetch :meth:`AlignedRead` objects in a :term:`region` using 0-based indexing. \n \n The region is specified by :term:`reference`, *start* and *end*. \n \n fetch returns an empty string if the region is out of range or addresses an unknown *reference*.\n\n If *reference* is given and *start* is None, the sequence from the \n first base is returned. Similarly, if *end* is None, the sequence \n until the last base is returned.\n \n Alternatively, a samtools :term:`region` string can be supplied.\n ";
+static PyObject *__pyx_pf_9csamtools_9Fastafile_6fetch(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_reference = 0;
+ PyObject *__pyx_v_start = 0;
+ PyObject *__pyx_v_end = 0;
+ PyObject *__pyx_v_region = 0;
+ int __pyx_v_length;
+ char *__pyx_v_seq;
+ PyObject *__pyx_v_py_seq;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ char *__pyx_t_5;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__reference,&__pyx_n_s__start,&__pyx_n_s__end,&__pyx_n_s__region,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("fetch");
+ __Pyx_TraceCall("fetch", __pyx_f[0], 284);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[4] = {0,0,0,0};
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":285
+ *
+ * def fetch( self,
+ * reference = None, # <<<<<<<<<<<<<<
+ * start = None,
+ * end = None,
+ */
+ values[0] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":286
+ * def fetch( self,
+ * reference = None,
+ * start = None, # <<<<<<<<<<<<<<
+ * end = None,
+ * region = None):
+ */
+ values[1] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":287
+ * reference = None,
+ * start = None,
+ * end = None, # <<<<<<<<<<<<<<
+ * region = None):
+ *
+ */
+ values[2] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":288
+ * start = None,
+ * end = None,
+ * region = None): # <<<<<<<<<<<<<<
+ *
+ * '''*(reference = None, start = None, end = None, region = None)*
+ */
+ values[3] = ((PyObject *)Py_None);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ 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;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__reference);
+ if (value) { values[0] = value; kw_args--; }
+ }
+ case 1:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__start);
+ if (value) { values[1] = value; kw_args--; }
+ }
+ case 2:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__end);
+ if (value) { values[2] = value; kw_args--; }
+ }
+ case 3:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__region);
+ if (value) { values[3] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "fetch") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_reference = values[0];
+ __pyx_v_start = values[1];
+ __pyx_v_end = values[2];
+ __pyx_v_region = values[3];
+ } else {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":285
+ *
+ * def fetch( self,
+ * reference = None, # <<<<<<<<<<<<<<
+ * start = None,
+ * end = None,
+ */
+ __pyx_v_reference = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":286
+ * def fetch( self,
+ * reference = None,
+ * start = None, # <<<<<<<<<<<<<<
+ * end = None,
+ * region = None):
+ */
+ __pyx_v_start = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":287
+ * reference = None,
+ * start = None,
+ * end = None, # <<<<<<<<<<<<<<
+ * region = None):
+ *
+ */
+ __pyx_v_end = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":288
+ * start = None,
+ * end = None,
+ * region = None): # <<<<<<<<<<<<<<
+ *
+ * '''*(reference = None, start = None, end = None, region = None)*
+ */
+ __pyx_v_region = ((PyObject *)Py_None);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 4: __pyx_v_region = PyTuple_GET_ITEM(__pyx_args, 3);
+ case 3: __pyx_v_end = PyTuple_GET_ITEM(__pyx_args, 2);
+ case 2: __pyx_v_start = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: __pyx_v_reference = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("fetch", 0, 0, 4, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 284; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Fastafile.fetch");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+ __Pyx_INCREF(__pyx_v_start);
+ __Pyx_INCREF(__pyx_v_end);
+ __Pyx_INCREF(__pyx_v_region);
+ __pyx_v_py_seq = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":305
+ * '''
+ *
+ * if not self._isOpen(): # <<<<<<<<<<<<<<
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 305; __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 = 305; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 305; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":306
+ *
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * cdef int length
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_8), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":311
+ * cdef char * seq
+ *
+ * if not region: # <<<<<<<<<<<<<<
+ * if reference is None: raise ValueError( 'no sequence/region supplied.' )
+ * if start is None: start = 0
+ */
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_v_region); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 311; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_3 = (!__pyx_t_4);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":312
+ *
+ * if not region:
+ * if reference is None: raise ValueError( 'no sequence/region supplied.' ) # <<<<<<<<<<<<<<
+ * if start is None: start = 0
+ * if end is None: end = max_pos -1
+ */
+ __pyx_t_3 = (__pyx_v_reference == Py_None);
+ if (__pyx_t_3) {
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_10), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 312; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 312; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":313
+ * if not region:
+ * if reference is None: raise ValueError( 'no sequence/region supplied.' )
+ * if start is None: start = 0 # <<<<<<<<<<<<<<
+ * if end is None: end = max_pos -1
+ *
+ */
+ __pyx_t_3 = (__pyx_v_start == Py_None);
+ if (__pyx_t_3) {
+ __Pyx_INCREF(__pyx_int_0);
+ __Pyx_DECREF(__pyx_v_start);
+ __pyx_v_start = __pyx_int_0;
+ goto __pyx_L9;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":314
+ * if reference is None: raise ValueError( 'no sequence/region supplied.' )
+ * if start is None: start = 0
+ * if end is None: end = max_pos -1 # <<<<<<<<<<<<<<
+ *
+ * if start > end: raise ValueError( 'invalid region: start (%i) > end (%i)' % (start, end) )
+ */
+ __pyx_t_3 = (__pyx_v_end == Py_None);
+ if (__pyx_t_3) {
+ __pyx_t_2 = PyInt_FromLong((__pyx_v_9csamtools_max_pos - 1)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 314; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_end);
+ __pyx_v_end = __pyx_t_2;
+ __pyx_t_2 = 0;
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":316
+ * if end is None: end = max_pos -1
+ *
+ * if start > end: raise ValueError( 'invalid region: start (%i) > end (%i)' % (start, end) ) # <<<<<<<<<<<<<<
+ * if start == end: return ""
+ * # valid ranges are from 0 to 2^29-1
+ */
+ __pyx_t_2 = PyObject_RichCompare(__pyx_v_start, __pyx_v_end, Py_GT); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (__pyx_t_3) {
+ __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(__pyx_v_start);
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_start);
+ __Pyx_GIVEREF(__pyx_v_start);
+ __Pyx_INCREF(__pyx_v_end);
+ PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_v_end);
+ __Pyx_GIVEREF(__pyx_v_end);
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_11), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __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 = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_t_1));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_1));
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 316; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L11;
+ }
+ __pyx_L11:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":317
+ *
+ * if start > end: raise ValueError( 'invalid region: start (%i) > end (%i)' % (start, end) )
+ * if start == end: return "" # <<<<<<<<<<<<<<
+ * # valid ranges are from 0 to 2^29-1
+ * if not 0 <= start < max_pos: raise ValueError( 'start out of range (%i)' % start )
+ */
+ __pyx_t_1 = PyObject_RichCompare(__pyx_v_start, __pyx_v_end, Py_EQ); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 317; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (__pyx_t_3) {
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_12));
+ __pyx_r = ((PyObject *)__pyx_kp_s_12);
+ goto __pyx_L0;
+ goto __pyx_L12;
+ }
+ __pyx_L12:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":319
+ * if start == end: return ""
+ * # valid ranges are from 0 to 2^29-1
+ * if not 0 <= start < max_pos: raise ValueError( 'start out of range (%i)' % start ) # <<<<<<<<<<<<<<
+ * if not 0 <= end < max_pos: raise ValueError( 'end out of range (%i)' % end )
+ * # note: faidx_fetch_seq has a bug such that out-of-range access
+ */
+ __pyx_t_1 = PyObject_RichCompare(__pyx_int_0, __pyx_v_start, Py_LE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 319; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (__Pyx_PyObject_IsTrue(__pyx_t_1)) {
+ __Pyx_DECREF(__pyx_t_1);
+ __pyx_t_2 = PyInt_FromLong(__pyx_v_9csamtools_max_pos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 319; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyObject_RichCompare(__pyx_v_start, __pyx_t_2, Py_LT); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 319; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ }
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 319; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_13), __pyx_v_start); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 319; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 319; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_t_1));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_1));
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 319; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 319; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L13;
+ }
+ __pyx_L13:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":320
+ * # valid ranges are from 0 to 2^29-1
+ * if not 0 <= start < max_pos: raise ValueError( 'start out of range (%i)' % start )
+ * if not 0 <= end < max_pos: raise ValueError( 'end out of range (%i)' % end ) # <<<<<<<<<<<<<<
+ * # note: faidx_fetch_seq has a bug such that out-of-range access
+ * # always returns the last residue. Hence do not use faidx_fetch_seq,
+ */
+ __pyx_t_1 = PyObject_RichCompare(__pyx_int_0, __pyx_v_end, Py_LE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 320; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (__Pyx_PyObject_IsTrue(__pyx_t_1)) {
+ __Pyx_DECREF(__pyx_t_1);
+ __pyx_t_2 = PyInt_FromLong(__pyx_v_9csamtools_max_pos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 320; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyObject_RichCompare(__pyx_v_end, __pyx_t_2, Py_LT); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 320; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ }
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 320; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = (!__pyx_t_4);
+ if (__pyx_t_3) {
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_14), __pyx_v_end); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 320; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 320; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_t_1));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_1));
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 320; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 320; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L14;
+ }
+ __pyx_L14:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":329
+ * # end-1,
+ * # &length)
+ * region = "%s:%i-%i" % (reference, start+1, end) # <<<<<<<<<<<<<<
+ * seq = fai_fetch( self.fastafile,
+ * region,
+ */
+ __pyx_t_1 = PyNumber_Add(__pyx_v_start, __pyx_int_1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 329; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyTuple_New(3); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 329; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(__pyx_v_reference);
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_reference);
+ __Pyx_GIVEREF(__pyx_v_reference);
+ PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __Pyx_INCREF(__pyx_v_end);
+ PyTuple_SET_ITEM(__pyx_t_2, 2, __pyx_v_end);
+ __Pyx_GIVEREF(__pyx_v_end);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_15), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 329; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_v_region);
+ __pyx_v_region = ((PyObject *)__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":331
+ * region = "%s:%i-%i" % (reference, start+1, end)
+ * seq = fai_fetch( self.fastafile,
+ * region, # <<<<<<<<<<<<<<
+ * &length )
+ * else:
+ */
+ __pyx_t_5 = PyBytes_AsString(__pyx_v_region); if (unlikely((!__pyx_t_5) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 331; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":332
+ * seq = fai_fetch( self.fastafile,
+ * region,
+ * &length ) # <<<<<<<<<<<<<<
+ * else:
+ * # samtools adds a '\0' at the end
+ */
+ __pyx_v_seq = fai_fetch(((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile, __pyx_t_5, (&__pyx_v_length));
+ goto __pyx_L7;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":335
+ * else:
+ * # samtools adds a '\0' at the end
+ * seq = fai_fetch( self.fastafile, region, &length ) # <<<<<<<<<<<<<<
+ *
+ * # copy to python
+ */
+ __pyx_t_5 = PyBytes_AsString(__pyx_v_region); if (unlikely((!__pyx_t_5) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 335; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_seq = fai_fetch(((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_self)->fastafile, __pyx_t_5, (&__pyx_v_length));
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":338
+ *
+ * # copy to python
+ * if seq == NULL: # <<<<<<<<<<<<<<
+ * return ""
+ * else:
+ */
+ __pyx_t_3 = (__pyx_v_seq == NULL);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":339
+ * # copy to python
+ * if seq == NULL:
+ * return "" # <<<<<<<<<<<<<<
+ * else:
+ * try:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_12));
+ __pyx_r = ((PyObject *)__pyx_kp_s_12);
+ goto __pyx_L0;
+ goto __pyx_L15;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":341
+ * return ""
+ * else:
+ * try: # <<<<<<<<<<<<<<
+ * py_seq = PyString_FromStringAndSize(seq, length)
+ * finally:
+ */
+ /*try:*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":342
+ * else:
+ * try:
+ * py_seq = PyString_FromStringAndSize(seq, length) # <<<<<<<<<<<<<<
+ * finally:
+ * free(seq)
+ */
+ __pyx_t_1 = PyString_FromStringAndSize(__pyx_v_seq, __pyx_v_length); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 342; __pyx_clineno = __LINE__; goto __pyx_L17;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_v_py_seq);
+ __pyx_v_py_seq = __pyx_t_1;
+ __pyx_t_1 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":344
+ * py_seq = PyString_FromStringAndSize(seq, length)
+ * finally:
+ * free(seq) # <<<<<<<<<<<<<<
+ *
+ * return py_seq
+ */
+ /*finally:*/ {
+ int __pyx_why;
+ PyObject *__pyx_exc_type, *__pyx_exc_value, *__pyx_exc_tb;
+ int __pyx_exc_lineno;
+ __pyx_exc_type = 0; __pyx_exc_value = 0; __pyx_exc_tb = 0; __pyx_exc_lineno = 0;
+ __pyx_why = 0; goto __pyx_L18;
+ __pyx_L17: {
+ __pyx_why = 4;
+ __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_ErrFetch(&__pyx_exc_type, &__pyx_exc_value, &__pyx_exc_tb);
+ __pyx_exc_lineno = __pyx_lineno;
+ goto __pyx_L18;
+ }
+ __pyx_L18:;
+ free(__pyx_v_seq);
+ switch (__pyx_why) {
+ case 4: {
+ __Pyx_ErrRestore(__pyx_exc_type, __pyx_exc_value, __pyx_exc_tb);
+ __pyx_lineno = __pyx_exc_lineno;
+ __pyx_exc_type = 0;
+ __pyx_exc_value = 0;
+ __pyx_exc_tb = 0;
+ goto __pyx_L1_error;
+ }
+ }
+ }
+ }
+ __pyx_L15:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":346
+ * free(seq)
+ *
+ * return py_seq # <<<<<<<<<<<<<<
+ *
+ * cdef char * _fetch( self, char * reference, int start, int end, int * length ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_py_seq);
+ __pyx_r = __pyx_v_py_seq;
+ 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("csamtools.Fastafile.fetch");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_py_seq);
+ __Pyx_DECREF(__pyx_v_start);
+ __Pyx_DECREF(__pyx_v_end);
+ __Pyx_DECREF(__pyx_v_region);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":348
+ * return py_seq
+ *
+ * cdef char * _fetch( self, char * reference, int start, int end, int * length ): # <<<<<<<<<<<<<<
+ * '''fetch sequence for reference, start and end'''
+ *
+ */
+
+static char *__pyx_f_9csamtools_9Fastafile__fetch(struct __pyx_obj_9csamtools_Fastafile *__pyx_v_self, char *__pyx_v_reference, int __pyx_v_start, int __pyx_v_end, int *__pyx_v_length) {
+ char *__pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("_fetch");
+ __Pyx_TraceCall("_fetch", __pyx_f[0], 348);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":355
+ * start,
+ * end-1,
+ * length ) # <<<<<<<<<<<<<<
+ *
+ * #------------------------------------------------------------------------
+ */
+ __pyx_r = faidx_fetch_seq(__pyx_v_self->fastafile, __pyx_v_reference, __pyx_v_start, (__pyx_v_end - 1), __pyx_v_length);
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":360
+ * #------------------------------------------------------------------------
+ * #------------------------------------------------------------------------
+ * cdef int count_callback( bam1_t *alignment, void *f): # <<<<<<<<<<<<<<
+ * '''callback for bam_fetch - count number of reads.
+ * '''
+ */
+
+static int __pyx_f_9csamtools_count_callback(bam1_t *__pyx_v_alignment, void *__pyx_v_f) {
+ int *__pyx_v_counter;
+ int __pyx_r;
+ long __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("count_callback");
+ __Pyx_TraceCall("count_callback", __pyx_f[0], 360);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":363
+ * '''callback for bam_fetch - count number of reads.
+ * '''
+ * cdef int* counter = (<int*>f) # <<<<<<<<<<<<<<
+ * counter[0] += 1;
+ *
+ */
+ __pyx_v_counter = ((int *)__pyx_v_f);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":364
+ * '''
+ * cdef int* counter = (<int*>f)
+ * counter[0] += 1; # <<<<<<<<<<<<<<
+ *
+ * ctypedef struct MateData:
+ */
+ __pyx_t_1 = 0;
+ (__pyx_v_counter[__pyx_t_1]) = ((__pyx_v_counter[__pyx_t_1]) + 1);
+
+ __pyx_r = 0;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":374
+ * #------------------------------------------------------------------------
+ * #------------------------------------------------------------------------
+ * cdef int mate_callback( bam1_t *alignment, void *f): # <<<<<<<<<<<<<<
+ * '''callback for bam_fetch = filter mate
+ * '''
+ */
+
+static int __pyx_f_9csamtools_mate_callback(bam1_t *__pyx_v_alignment, void *__pyx_v_f) {
+ __pyx_t_9csamtools_MateData *__pyx_v_d;
+ int __pyx_r;
+ int __pyx_t_1;
+ int __pyx_t_2;
+ int __pyx_t_3;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("mate_callback");
+ __Pyx_TraceCall("mate_callback", __pyx_f[0], 374);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":377
+ * '''callback for bam_fetch = filter mate
+ * '''
+ * cdef MateData * d = (<MateData*>f) # <<<<<<<<<<<<<<
+ * # printf("mate = %p, name1 = %s, name2=%s\t%i\t%i\t%i\n",
+ * # d.mate, d.name, bam1_qname(alignment),
+ */
+ __pyx_v_d = ((__pyx_t_9csamtools_MateData *)__pyx_v_f);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":382
+ * # d.flag, alignment.core.flag, alignment.core.flag & d.flag)
+ *
+ * if d.mate == NULL: # <<<<<<<<<<<<<<
+ * # could be sped up by comparing the lengths of query strings first
+ * # using l_qname
+ */
+ __pyx_t_1 = (__pyx_v_d->mate == NULL);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":388
+ * # also, make sure that we get the other read by comparing
+ * # the flags
+ * if alignment.core.flag & d.flag != 0 and \ # <<<<<<<<<<<<<<
+ * strcmp( bam1_qname( alignment ), d.name ) == 0:
+ * d.mate = bam_dup1( alignment )
+ */
+ __pyx_t_1 = ((__pyx_v_alignment->core.flag & __pyx_v_d->flag) != 0);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":389
+ * # the flags
+ * if alignment.core.flag & d.flag != 0 and \
+ * strcmp( bam1_qname( alignment ), d.name ) == 0: # <<<<<<<<<<<<<<
+ * d.mate = bam_dup1( alignment )
+ *
+ */
+ __pyx_t_2 = (strcmp(bam1_qname(__pyx_v_alignment), __pyx_v_d->name) == 0);
+ __pyx_t_3 = __pyx_t_2;
+ } else {
+ __pyx_t_3 = __pyx_t_1;
+ }
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":390
+ * if alignment.core.flag & d.flag != 0 and \
+ * strcmp( bam1_qname( alignment ), d.name ) == 0:
+ * d.mate = bam_dup1( alignment ) # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ __pyx_v_d->mate = bam_dup1(__pyx_v_alignment);
+ goto __pyx_L4;
+ }
+ __pyx_L4:;
+ goto __pyx_L3;
+ }
+ __pyx_L3:;
+
+ __pyx_r = 0;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":442
+ * cdef char * mode
+ *
+ * def __cinit__(self, *args, **kwargs ): # <<<<<<<<<<<<<<
+ * self.samfile = NULL
+ * self._filename = NULL
+ */
+
+static int __pyx_pf_9csamtools_7Samfile_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_7Samfile_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_args = 0;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 442);
+ if (unlikely(__pyx_kwds) && unlikely(!__Pyx_CheckKeywordStrings(__pyx_kwds, "__cinit__", 1))) return -1;
+ __pyx_v_kwargs = (__pyx_kwds) ? PyDict_Copy(__pyx_kwds) : PyDict_New();
+ if (unlikely(!__pyx_v_kwargs)) return -1;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ __Pyx_INCREF(__pyx_args);
+ __pyx_v_args = __pyx_args;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":443
+ *
+ * def __cinit__(self, *args, **kwargs ):
+ * self.samfile = NULL # <<<<<<<<<<<<<<
+ * self._filename = NULL
+ * self.isbam = False
+ */
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":444
+ * def __cinit__(self, *args, **kwargs ):
+ * self.samfile = NULL
+ * self._filename = NULL # <<<<<<<<<<<<<<
+ * self.isbam = False
+ * self._open( *args, **kwargs )
+ */
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->_filename = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":445
+ * self.samfile = NULL
+ * self._filename = NULL
+ * self.isbam = False # <<<<<<<<<<<<<<
+ * self._open( *args, **kwargs )
+ *
+ */
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isbam = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":446
+ * self._filename = NULL
+ * self.isbam = False
+ * self._open( *args, **kwargs ) # <<<<<<<<<<<<<<
+ *
+ * # allocate memory for iterator
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___open); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 446; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PySequence_Tuple(((PyObject *)__pyx_v_args)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 446; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __pyx_t_3 = PyEval_CallObjectWithKeywords(__pyx_t_1, ((PyObject *)__pyx_t_2), ((PyObject *)__pyx_v_kwargs)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 446; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":449
+ *
+ * # allocate memory for iterator
+ * self.b = <bam1_t*>calloc(1, sizeof(bam1_t)) # <<<<<<<<<<<<<<
+ *
+ * def _isOpen( self ):
+ */
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->b = ((bam1_t *)calloc(1, (sizeof(bam1_t))));
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.Samfile.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_args);
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":451
+ * self.b = <bam1_t*>calloc(1, sizeof(bam1_t))
+ *
+ * def _isOpen( self ): # <<<<<<<<<<<<<<
+ * '''return true if samfile has been opened.'''
+ * return self.samfile != NULL
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_1_isOpen(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_1_isOpen[] = "return true if samfile has been opened.";
+static PyObject *__pyx_pf_9csamtools_7Samfile_1_isOpen(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("_isOpen");
+ __Pyx_TraceCall("_isOpen", __pyx_f[0], 451);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":453
+ * def _isOpen( self ):
+ * '''return true if samfile has been opened.'''
+ * return self.samfile != NULL # <<<<<<<<<<<<<<
+ *
+ * def _hasIndex( self ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyBool_FromLong((((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile != NULL)); 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_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.Samfile._isOpen");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":455
+ * return self.samfile != NULL
+ *
+ * def _hasIndex( self ): # <<<<<<<<<<<<<<
+ * '''return true if samfile has an existing (and opened) index.'''
+ * return self.index != NULL
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_2_hasIndex(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_2_hasIndex[] = "return true if samfile has an existing (and opened) index.";
+static PyObject *__pyx_pf_9csamtools_7Samfile_2_hasIndex(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("_hasIndex");
+ __Pyx_TraceCall("_hasIndex", __pyx_f[0], 455);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":457
+ * def _hasIndex( self ):
+ * '''return true if samfile has an existing (and opened) index.'''
+ * return self.index != NULL # <<<<<<<<<<<<<<
+ *
+ * def _open( self,
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyBool_FromLong((((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->index != NULL)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 457; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.Samfile._hasIndex");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":459
+ * return self.index != NULL
+ *
+ * def _open( self, # <<<<<<<<<<<<<<
+ * char * filename,
+ * mode = 'r',
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_3_open(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_3_open[] = "open a sam/bam file.\n\n If _open is called on an existing bamfile, the current file will be\n closed and a new file will be opened.\n ";
+static PyObject *__pyx_pf_9csamtools_7Samfile_3_open(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ char *__pyx_v_filename;
+ PyObject *__pyx_v_mode = 0;
+ struct __pyx_obj_9csamtools_Samfile *__pyx_v_template = 0;
+ PyObject *__pyx_v_referencenames = 0;
+ PyObject *__pyx_v_referencelengths = 0;
+ PyObject *__pyx_v_text = 0;
+ PyObject *__pyx_v_header = 0;
+ PyObject *__pyx_v_port = 0;
+ bam_header_t *__pyx_v_header_to_write;
+ char *__pyx_v_ctext;
+ PyObject *__pyx_v_n;
+ PyObject *__pyx_v_x;
+ PyObject *__pyx_v_name;
+ PyObject *__pyx_v_store;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ int __pyx_t_5;
+ Py_ssize_t __pyx_t_6;
+ PyObject *__pyx_t_7 = NULL;
+ int __pyx_t_8;
+ Py_ssize_t __pyx_t_9;
+ size_t __pyx_t_10;
+ int32_t __pyx_t_11;
+ long __pyx_t_12;
+ uint32_t __pyx_t_13;
+ char *__pyx_t_14;
+ int __pyx_t_15;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__filename,&__pyx_n_s__mode,&__pyx_n_s__template,&__pyx_n_s__referencenames,&__pyx_n_s__referencelengths,&__pyx_n_s__text,&__pyx_n_s__header,&__pyx_n_s__port,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("_open");
+ __Pyx_TraceCall("_open", __pyx_f[0], 459);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[8] = {0,0,0,0,0,0,0,0};
+ values[1] = ((PyObject *)__pyx_n_s__r);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":462
+ * char * filename,
+ * mode = 'r',
+ * Samfile template = None, # <<<<<<<<<<<<<<
+ * referencenames = None,
+ * referencelengths = None,
+ */
+ values[2] = (PyObject *)((struct __pyx_obj_9csamtools_Samfile *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":463
+ * mode = 'r',
+ * Samfile template = None,
+ * referencenames = None, # <<<<<<<<<<<<<<
+ * referencelengths = None,
+ * text = None,
+ */
+ values[3] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":464
+ * Samfile template = None,
+ * referencenames = None,
+ * referencelengths = None, # <<<<<<<<<<<<<<
+ * text = None,
+ * header = None,
+ */
+ values[4] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":465
+ * referencenames = None,
+ * referencelengths = None,
+ * text = None, # <<<<<<<<<<<<<<
+ * header = None,
+ * port = None,
+ */
+ values[5] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":466
+ * referencelengths = None,
+ * text = None,
+ * header = None, # <<<<<<<<<<<<<<
+ * port = None,
+ * ):
+ */
+ values[6] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":467
+ * text = None,
+ * header = None,
+ * port = None, # <<<<<<<<<<<<<<
+ * ):
+ * '''open a sam/bam file.
+ */
+ values[7] = ((PyObject *)Py_None);
+ switch (PyTuple_GET_SIZE(__pyx_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;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__filename);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__mode);
+ if (value) { values[1] = value; kw_args--; }
+ }
+ case 2:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__template);
+ if (value) { values[2] = value; kw_args--; }
+ }
+ case 3:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__referencenames);
+ if (value) { values[3] = value; kw_args--; }
+ }
+ case 4:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__referencelengths);
+ if (value) { values[4] = value; kw_args--; }
+ }
+ case 5:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__text);
+ if (value) { values[5] = value; kw_args--; }
+ }
+ case 6:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__header);
+ if (value) { values[6] = value; kw_args--; }
+ }
+ case 7:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__port);
+ if (value) { values[7] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "_open") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_filename = PyBytes_AsString(values[0]); if (unlikely((!__pyx_v_filename) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 460; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_v_mode = values[1];
+ __pyx_v_template = ((struct __pyx_obj_9csamtools_Samfile *)values[2]);
+ __pyx_v_referencenames = values[3];
+ __pyx_v_referencelengths = values[4];
+ __pyx_v_text = values[5];
+ __pyx_v_header = values[6];
+ __pyx_v_port = values[7];
+ } else {
+ __pyx_v_mode = ((PyObject *)__pyx_n_s__r);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":462
+ * char * filename,
+ * mode = 'r',
+ * Samfile template = None, # <<<<<<<<<<<<<<
+ * referencenames = None,
+ * referencelengths = None,
+ */
+ __pyx_v_template = ((struct __pyx_obj_9csamtools_Samfile *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":463
+ * mode = 'r',
+ * Samfile template = None,
+ * referencenames = None, # <<<<<<<<<<<<<<
+ * referencelengths = None,
+ * text = None,
+ */
+ __pyx_v_referencenames = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":464
+ * Samfile template = None,
+ * referencenames = None,
+ * referencelengths = None, # <<<<<<<<<<<<<<
+ * text = None,
+ * header = None,
+ */
+ __pyx_v_referencelengths = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":465
+ * referencenames = None,
+ * referencelengths = None,
+ * text = None, # <<<<<<<<<<<<<<
+ * header = None,
+ * port = None,
+ */
+ __pyx_v_text = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":466
+ * referencelengths = None,
+ * text = None,
+ * header = None, # <<<<<<<<<<<<<<
+ * port = None,
+ * ):
+ */
+ __pyx_v_header = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":467
+ * text = None,
+ * header = None,
+ * port = None, # <<<<<<<<<<<<<<
+ * ):
+ * '''open a sam/bam file.
+ */
+ __pyx_v_port = ((PyObject *)Py_None);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 8: __pyx_v_port = PyTuple_GET_ITEM(__pyx_args, 7);
+ case 7: __pyx_v_header = PyTuple_GET_ITEM(__pyx_args, 6);
+ case 6: __pyx_v_text = PyTuple_GET_ITEM(__pyx_args, 5);
+ case 5: __pyx_v_referencelengths = PyTuple_GET_ITEM(__pyx_args, 4);
+ case 4: __pyx_v_referencenames = PyTuple_GET_ITEM(__pyx_args, 3);
+ case 3: __pyx_v_template = ((struct __pyx_obj_9csamtools_Samfile *)PyTuple_GET_ITEM(__pyx_args, 2));
+ case 2: __pyx_v_mode = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: __pyx_v_filename = PyBytes_AsString(PyTuple_GET_ITEM(__pyx_args, 0)); if (unlikely((!__pyx_v_filename) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 460; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("_open", 0, 1, 8, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 459; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Samfile._open");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+ __pyx_v_n = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_x = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_name = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_store = Py_None; __Pyx_INCREF(Py_None);
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_template), __pyx_ptype_9csamtools_Samfile, 1, "template", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 462; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":475
+ * '''
+ *
+ * assert mode in ( "r","w","rb","wb", "wh", "wbu" ), "invalid file opening mode `%s`" % mode # <<<<<<<<<<<<<<
+ * assert filename != NULL
+ *
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ __Pyx_INCREF(__pyx_v_mode);
+ __pyx_t_1 = __pyx_v_mode;
+ __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, ((PyObject *)__pyx_n_s__r), Py_EQ); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = __pyx_t_3;
+ if (!__pyx_t_4) {
+ __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, ((PyObject *)__pyx_n_s__w), Py_EQ); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_5 = __pyx_t_3;
+ __pyx_t_3 = __pyx_t_5;
+ } else {
+ __pyx_t_3 = __pyx_t_4;
+ }
+ if (!__pyx_t_3) {
+ __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, ((PyObject *)__pyx_n_s__rb), Py_EQ); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely((__pyx_t_4 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_5 = __pyx_t_4;
+ __pyx_t_4 = __pyx_t_5;
+ } else {
+ __pyx_t_4 = __pyx_t_3;
+ }
+ if (!__pyx_t_4) {
+ __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, ((PyObject *)__pyx_n_s__wb), Py_EQ); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_5 = __pyx_t_3;
+ __pyx_t_3 = __pyx_t_5;
+ } else {
+ __pyx_t_3 = __pyx_t_4;
+ }
+ if (!__pyx_t_3) {
+ __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, ((PyObject *)__pyx_n_s__wh), Py_EQ); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely((__pyx_t_4 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_5 = __pyx_t_4;
+ __pyx_t_4 = __pyx_t_5;
+ } else {
+ __pyx_t_4 = __pyx_t_3;
+ }
+ if (!__pyx_t_4) {
+ __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, ((PyObject *)__pyx_n_s__wbu), Py_EQ); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_5 = __pyx_t_3;
+ __pyx_t_3 = __pyx_t_5;
+ } else {
+ __pyx_t_3 = __pyx_t_4;
+ }
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (unlikely(!__pyx_t_3)) {
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_16), __pyx_v_mode); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyErr_SetObject(PyExc_AssertionError, ((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 475; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":476
+ *
+ * assert mode in ( "r","w","rb","wb", "wh", "wbu" ), "invalid file opening mode `%s`" % mode
+ * assert filename != NULL # <<<<<<<<<<<<<<
+ *
+ * # close a previously opened file
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ if (unlikely(!(__pyx_v_filename != NULL))) {
+ PyErr_SetNone(PyExc_AssertionError);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 476; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":479
+ *
+ * # close a previously opened file
+ * if self.samfile != NULL: self.close() # <<<<<<<<<<<<<<
+ * self.samfile = NULL
+ *
+ */
+ __pyx_t_3 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile != NULL);
+ if (__pyx_t_3) {
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__close); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 479; __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 = 479; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":480
+ * # close a previously opened file
+ * if self.samfile != NULL: self.close()
+ * self.samfile = NULL # <<<<<<<<<<<<<<
+ *
+ * cdef bam_header_t * header_to_write
+ */
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":483
+ *
+ * cdef bam_header_t * header_to_write
+ * header_to_write = NULL # <<<<<<<<<<<<<<
+ *
+ * if self._filename != NULL: free(self._filename )
+ */
+ __pyx_v_header_to_write = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":485
+ * header_to_write = NULL
+ *
+ * if self._filename != NULL: free(self._filename ) # <<<<<<<<<<<<<<
+ * self._filename = strdup( filename )
+ *
+ */
+ __pyx_t_3 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->_filename != NULL);
+ if (__pyx_t_3) {
+ free(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->_filename);
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":486
+ *
+ * if self._filename != NULL: free(self._filename )
+ * self._filename = strdup( filename ) # <<<<<<<<<<<<<<
+ *
+ * self.isbam = len(mode) > 1 and mode[1] == 'b'
+ */
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->_filename = strdup(__pyx_v_filename);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":488
+ * self._filename = strdup( filename )
+ *
+ * self.isbam = len(mode) > 1 and mode[1] == 'b' # <<<<<<<<<<<<<<
+ *
+ * self.isremote = strncmp(filename,"http:",5) == 0 or \
+ */
+ __pyx_t_6 = PyObject_Length(__pyx_v_mode); if (unlikely(__pyx_t_6 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 488; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_2 = __Pyx_PyBool_FromLong((__pyx_t_6 > 1)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 488; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 488; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_3) {
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_mode, 1, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 488; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_7 = PyObject_RichCompare(__pyx_t_1, ((PyObject *)__pyx_n_s__b), Py_EQ); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 488; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = __pyx_t_7;
+ __pyx_t_7 = 0;
+ } else {
+ __pyx_t_1 = __pyx_t_2;
+ __pyx_t_2 = 0;
+ }
+ __pyx_t_8 = __Pyx_PyInt_AsInt(__pyx_t_1); if (unlikely((__pyx_t_8 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 488; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isbam = __pyx_t_8;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":490
+ * self.isbam = len(mode) > 1 and mode[1] == 'b'
+ *
+ * self.isremote = strncmp(filename,"http:",5) == 0 or \ # <<<<<<<<<<<<<<
+ * strncmp(filename,"ftp:",4) == 0
+ *
+ */
+ __pyx_t_3 = (strncmp(__pyx_v_filename, __pyx_k_17, 5) == 0);
+ if (!__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":491
+ *
+ * self.isremote = strncmp(filename,"http:",5) == 0 or \
+ * strncmp(filename,"ftp:",4) == 0 # <<<<<<<<<<<<<<
+ *
+ * cdef char * ctext
+ */
+ __pyx_t_4 = (strncmp(__pyx_v_filename, __pyx_k_18, 4) == 0);
+ __pyx_t_5 = __pyx_t_4;
+ } else {
+ __pyx_t_5 = __pyx_t_3;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":490
+ * self.isbam = len(mode) > 1 and mode[1] == 'b'
+ *
+ * self.isremote = strncmp(filename,"http:",5) == 0 or \ # <<<<<<<<<<<<<<
+ * strncmp(filename,"ftp:",4) == 0
+ *
+ */
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isremote = __pyx_t_5;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":494
+ *
+ * cdef char * ctext
+ * ctext = NULL # <<<<<<<<<<<<<<
+ *
+ * if mode[0] == 'w':
+ */
+ __pyx_v_ctext = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":496
+ * ctext = NULL
+ *
+ * if mode[0] == 'w': # <<<<<<<<<<<<<<
+ * # open file for writing
+ *
+ */
+ __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_mode, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 496; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_RichCompare(__pyx_t_1, ((PyObject *)__pyx_n_s__w), Py_EQ); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 496; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 496; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":500
+ *
+ * # header structure (used for writing)
+ * if template: # <<<<<<<<<<<<<<
+ * # copy header from another file
+ * header_to_write = template.samfile.header
+ */
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(((PyObject *)__pyx_v_template)); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":502
+ * if template:
+ * # copy header from another file
+ * header_to_write = template.samfile.header # <<<<<<<<<<<<<<
+ *
+ * elif header:
+ */
+ __pyx_v_header_to_write = __pyx_v_template->samfile->header;
+ goto __pyx_L9;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":504
+ * header_to_write = template.samfile.header
+ *
+ * elif header: # <<<<<<<<<<<<<<
+ * header_to_write = self._buildHeader( header )
+ *
+ */
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_v_header); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 504; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":505
+ *
+ * elif header:
+ * header_to_write = self._buildHeader( header ) # <<<<<<<<<<<<<<
+ *
+ * else:
+ */
+ __pyx_v_header_to_write = ((struct __pyx_vtabstruct_9csamtools_Samfile *)((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->__pyx_vtab)->_buildHeader(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self), __pyx_v_header);
+ goto __pyx_L9;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":509
+ * else:
+ * # build header from a target names and lengths
+ * assert referencenames and referencelengths, "either supply options `template`, `header` or both `referencenames` and `referencelengths` for writing" # <<<<<<<<<<<<<<
+ * assert len(referencenames) == len(referencelengths), "unequal names and lengths of reference sequences"
+ *
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_v_referencenames); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_5) {
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_v_referencelengths); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_4 = __pyx_t_3;
+ } else {
+ __pyx_t_4 = __pyx_t_5;
+ }
+ if (unlikely(!__pyx_t_4)) {
+ PyErr_SetObject(PyExc_AssertionError, ((PyObject *)__pyx_kp_s_19));
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 509; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":510
+ * # build header from a target names and lengths
+ * assert referencenames and referencelengths, "either supply options `template`, `header` or both `referencenames` and `referencelengths` for writing"
+ * assert len(referencenames) == len(referencelengths), "unequal names and lengths of reference sequences" # <<<<<<<<<<<<<<
+ *
+ * # allocate and fill header
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ __pyx_t_6 = PyObject_Length(__pyx_v_referencenames); if (unlikely(__pyx_t_6 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 510; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_9 = PyObject_Length(__pyx_v_referencelengths); if (unlikely(__pyx_t_9 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 510; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (unlikely(!(__pyx_t_6 == __pyx_t_9))) {
+ PyErr_SetObject(PyExc_AssertionError, ((PyObject *)__pyx_kp_s_20));
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 510; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":513
+ *
+ * # allocate and fill header
+ * header_to_write = bam_header_init() # <<<<<<<<<<<<<<
+ * header_to_write.n_targets = len(referencenames)
+ * n = 0
+ */
+ __pyx_v_header_to_write = bam_header_init();
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":514
+ * # allocate and fill header
+ * header_to_write = bam_header_init()
+ * header_to_write.n_targets = len(referencenames) # <<<<<<<<<<<<<<
+ * n = 0
+ * for x in referencenames: n += len(x) + 1
+ */
+ __pyx_t_9 = PyObject_Length(__pyx_v_referencenames); if (unlikely(__pyx_t_9 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 514; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_header_to_write->n_targets = __pyx_t_9;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":515
+ * header_to_write = bam_header_init()
+ * header_to_write.n_targets = len(referencenames)
+ * n = 0 # <<<<<<<<<<<<<<
+ * for x in referencenames: n += len(x) + 1
+ * header_to_write.target_name = <char**>calloc(n, sizeof(char*))
+ */
+ __Pyx_INCREF(__pyx_int_0);
+ __Pyx_DECREF(__pyx_v_n);
+ __pyx_v_n = __pyx_int_0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":516
+ * header_to_write.n_targets = len(referencenames)
+ * n = 0
+ * for x in referencenames: n += len(x) + 1 # <<<<<<<<<<<<<<
+ * header_to_write.target_name = <char**>calloc(n, sizeof(char*))
+ * header_to_write.target_len = <uint32_t*>calloc(n, sizeof(uint32_t))
+ */
+ if (PyList_CheckExact(__pyx_v_referencenames) || PyTuple_CheckExact(__pyx_v_referencenames)) {
+ __pyx_t_9 = 0; __pyx_t_2 = __pyx_v_referencenames; __Pyx_INCREF(__pyx_t_2);
+ } else {
+ __pyx_t_9 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_v_referencenames); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 516; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ }
+ for (;;) {
+ if (likely(PyList_CheckExact(__pyx_t_2))) {
+ if (__pyx_t_9 >= PyList_GET_SIZE(__pyx_t_2)) break;
+ __pyx_t_1 = PyList_GET_ITEM(__pyx_t_2, __pyx_t_9); __Pyx_INCREF(__pyx_t_1); __pyx_t_9++;
+ } else if (likely(PyTuple_CheckExact(__pyx_t_2))) {
+ if (__pyx_t_9 >= PyTuple_GET_SIZE(__pyx_t_2)) break;
+ __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_9); __Pyx_INCREF(__pyx_t_1); __pyx_t_9++;
+ } else {
+ __pyx_t_1 = PyIter_Next(__pyx_t_2);
+ if (!__pyx_t_1) {
+ if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 516; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ break;
+ }
+ __Pyx_GOTREF(__pyx_t_1);
+ }
+ __Pyx_DECREF(__pyx_v_x);
+ __pyx_v_x = __pyx_t_1;
+ __pyx_t_1 = 0;
+ __pyx_t_6 = PyObject_Length(__pyx_v_x); if (unlikely(__pyx_t_6 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 516; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_1 = PyInt_FromSsize_t((__pyx_t_6 + 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 516; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_7 = PyNumber_InPlaceAdd(__pyx_v_n, __pyx_t_1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 516; __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_n);
+ __pyx_v_n = __pyx_t_7;
+ __pyx_t_7 = 0;
+ }
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":517
+ * n = 0
+ * for x in referencenames: n += len(x) + 1
+ * header_to_write.target_name = <char**>calloc(n, sizeof(char*)) # <<<<<<<<<<<<<<
+ * header_to_write.target_len = <uint32_t*>calloc(n, sizeof(uint32_t))
+ * for x from 0 <= x < header_to_write.n_targets:
+ */
+ __pyx_t_10 = __Pyx_PyInt_AsSize_t(__pyx_v_n); if (unlikely((__pyx_t_10 == (size_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 517; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_header_to_write->target_name = ((char **)calloc(__pyx_t_10, (sizeof(char *))));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":518
+ * for x in referencenames: n += len(x) + 1
+ * header_to_write.target_name = <char**>calloc(n, sizeof(char*))
+ * header_to_write.target_len = <uint32_t*>calloc(n, sizeof(uint32_t)) # <<<<<<<<<<<<<<
+ * for x from 0 <= x < header_to_write.n_targets:
+ * header_to_write.target_len[x] = referencelengths[x]
+ */
+ __pyx_t_10 = __Pyx_PyInt_AsSize_t(__pyx_v_n); if (unlikely((__pyx_t_10 == (size_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 518; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_header_to_write->target_len = ((uint32_t *)calloc(__pyx_t_10, (sizeof(uint32_t))));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":519
+ * header_to_write.target_name = <char**>calloc(n, sizeof(char*))
+ * header_to_write.target_len = <uint32_t*>calloc(n, sizeof(uint32_t))
+ * for x from 0 <= x < header_to_write.n_targets: # <<<<<<<<<<<<<<
+ * header_to_write.target_len[x] = referencelengths[x]
+ * name = referencenames[x]
+ */
+ __pyx_t_11 = __pyx_v_header_to_write->n_targets;
+ for (__pyx_t_12 = 0; __pyx_t_12 < __pyx_t_11; __pyx_t_12++) {
+ __pyx_t_2 = PyInt_FromLong(__pyx_t_12); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 519; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_x);
+ __pyx_v_x = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":520
+ * header_to_write.target_len = <uint32_t*>calloc(n, sizeof(uint32_t))
+ * for x from 0 <= x < header_to_write.n_targets:
+ * header_to_write.target_len[x] = referencelengths[x] # <<<<<<<<<<<<<<
+ * name = referencenames[x]
+ * header_to_write.target_name[x] = <char*>calloc(len(name)+1, sizeof(char))
+ */
+ __pyx_t_2 = PyObject_GetItem(__pyx_v_referencelengths, __pyx_v_x); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 520; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_13 = __Pyx_PyInt_from_py_uint32_t(__pyx_t_2); if (unlikely((__pyx_t_13 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 520; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_9 = __Pyx_PyIndex_AsSsize_t(__pyx_v_x); if (unlikely((__pyx_t_9 == (Py_ssize_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 520; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ (__pyx_v_header_to_write->target_len[__pyx_t_9]) = __pyx_t_13;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":521
+ * for x from 0 <= x < header_to_write.n_targets:
+ * header_to_write.target_len[x] = referencelengths[x]
+ * name = referencenames[x] # <<<<<<<<<<<<<<
+ * header_to_write.target_name[x] = <char*>calloc(len(name)+1, sizeof(char))
+ * strncpy( header_to_write.target_name[x], name, len(name) )
+ */
+ __pyx_t_2 = PyObject_GetItem(__pyx_v_referencenames, __pyx_v_x); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 521; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_name);
+ __pyx_v_name = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":522
+ * header_to_write.target_len[x] = referencelengths[x]
+ * name = referencenames[x]
+ * header_to_write.target_name[x] = <char*>calloc(len(name)+1, sizeof(char)) # <<<<<<<<<<<<<<
+ * strncpy( header_to_write.target_name[x], name, len(name) )
+ *
+ */
+ __pyx_t_9 = PyObject_Length(__pyx_v_name); if (unlikely(__pyx_t_9 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 522; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_6 = __Pyx_PyIndex_AsSsize_t(__pyx_v_x); if (unlikely((__pyx_t_6 == (Py_ssize_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 522; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ (__pyx_v_header_to_write->target_name[__pyx_t_6]) = ((char *)calloc((__pyx_t_9 + 1), (sizeof(char))));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":523
+ * name = referencenames[x]
+ * header_to_write.target_name[x] = <char*>calloc(len(name)+1, sizeof(char))
+ * strncpy( header_to_write.target_name[x], name, len(name) ) # <<<<<<<<<<<<<<
+ *
+ * if text != None:
+ */
+ __pyx_t_9 = __Pyx_PyIndex_AsSsize_t(__pyx_v_x); if (unlikely((__pyx_t_9 == (Py_ssize_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 523; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_14 = PyBytes_AsString(__pyx_v_name); if (unlikely((!__pyx_t_14) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 523; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_6 = PyObject_Length(__pyx_v_name); if (unlikely(__pyx_t_6 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 523; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ strncpy((__pyx_v_header_to_write->target_name[__pyx_t_9]), __pyx_t_14, __pyx_t_6);
+ __pyx_t_12 = __Pyx_PyInt_AsLong(__pyx_v_x); if (unlikely((__pyx_t_12 == (long)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 519; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":519
+ * header_to_write.target_name = <char**>calloc(n, sizeof(char*))
+ * header_to_write.target_len = <uint32_t*>calloc(n, sizeof(uint32_t))
+ * for x from 0 <= x < header_to_write.n_targets: # <<<<<<<<<<<<<<
+ * header_to_write.target_len[x] = referencelengths[x]
+ * name = referencenames[x]
+ */
+ __pyx_t_2 = PyInt_FromLong(__pyx_t_12); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 519; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_x);
+ __pyx_v_x = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":525
+ * strncpy( header_to_write.target_name[x], name, len(name) )
+ *
+ * if text != None: # <<<<<<<<<<<<<<
+ * # copy without \0
+ * ctext = text
+ */
+ __pyx_t_2 = PyObject_RichCompare(__pyx_v_text, Py_None, Py_NE); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 525; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 525; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":527
+ * if text != None:
+ * # copy without \0
+ * ctext = text # <<<<<<<<<<<<<<
+ * header_to_write.l_text = strlen(ctext)
+ * header_to_write.text = <char*>calloc( strlen(ctext), sizeof(char) )
+ */
+ __pyx_t_14 = PyBytes_AsString(__pyx_v_text); if (unlikely((!__pyx_t_14) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 527; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_ctext = __pyx_t_14;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":528
+ * # copy without \0
+ * ctext = text
+ * header_to_write.l_text = strlen(ctext) # <<<<<<<<<<<<<<
+ * header_to_write.text = <char*>calloc( strlen(ctext), sizeof(char) )
+ * memcpy( header_to_write.text, ctext, strlen(ctext) )
+ */
+ __pyx_v_header_to_write->l_text = strlen(__pyx_v_ctext);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":529
+ * ctext = text
+ * header_to_write.l_text = strlen(ctext)
+ * header_to_write.text = <char*>calloc( strlen(ctext), sizeof(char) ) # <<<<<<<<<<<<<<
+ * memcpy( header_to_write.text, ctext, strlen(ctext) )
+ *
+ */
+ __pyx_v_header_to_write->text = ((char *)calloc(strlen(__pyx_v_ctext), (sizeof(char))));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":530
+ * header_to_write.l_text = strlen(ctext)
+ * header_to_write.text = <char*>calloc( strlen(ctext), sizeof(char) )
+ * memcpy( header_to_write.text, ctext, strlen(ctext) ) # <<<<<<<<<<<<<<
+ *
+ * header_to_write.hash = NULL
+ */
+ memcpy(__pyx_v_header_to_write->text, __pyx_v_ctext, strlen(__pyx_v_ctext));
+ goto __pyx_L14;
+ }
+ __pyx_L14:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":532
+ * memcpy( header_to_write.text, ctext, strlen(ctext) )
+ *
+ * header_to_write.hash = NULL # <<<<<<<<<<<<<<
+ * header_to_write.rg2lib = NULL
+ *
+ */
+ __pyx_v_header_to_write->hash = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":533
+ *
+ * header_to_write.hash = NULL
+ * header_to_write.rg2lib = NULL # <<<<<<<<<<<<<<
+ *
+ * # open file. Header gets written to file at the same time for bam files
+ */
+ __pyx_v_header_to_write->rg2lib = NULL;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":537
+ * # open file. Header gets written to file at the same time for bam files
+ * # and sam files (in the latter case, the mode needs to be wh)
+ * store = StderrStore() # <<<<<<<<<<<<<<
+ * self.samfile = samopen( filename, mode, header_to_write )
+ * store.release()
+ */
+ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__StderrStore); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 537; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_7 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 537; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_v_store);
+ __pyx_v_store = __pyx_t_7;
+ __pyx_t_7 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":538
+ * # and sam files (in the latter case, the mode needs to be wh)
+ * store = StderrStore()
+ * self.samfile = samopen( filename, mode, header_to_write ) # <<<<<<<<<<<<<<
+ * store.release()
+ *
+ */
+ __pyx_t_14 = PyBytes_AsString(__pyx_v_mode); if (unlikely((!__pyx_t_14) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 538; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile = samopen(__pyx_v_filename, __pyx_t_14, __pyx_v_header_to_write);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":539
+ * store = StderrStore()
+ * self.samfile = samopen( filename, mode, header_to_write )
+ * store.release() # <<<<<<<<<<<<<<
+ *
+ * # bam_header_destroy takes care of cleaning up of all the members
+ */
+ __pyx_t_7 = PyObject_GetAttr(__pyx_v_store, __pyx_n_s__release); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 539; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_2 = PyObject_Call(__pyx_t_7, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 539; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":542
+ *
+ * # bam_header_destroy takes care of cleaning up of all the members
+ * if not template and header_to_write != NULL: # <<<<<<<<<<<<<<
+ * bam_header_destroy( header_to_write )
+ *
+ */
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(((PyObject *)__pyx_v_template)); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 542; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_5 = (!__pyx_t_4);
+ if (__pyx_t_5) {
+ __pyx_t_4 = (__pyx_v_header_to_write != NULL);
+ __pyx_t_3 = __pyx_t_4;
+ } else {
+ __pyx_t_3 = __pyx_t_5;
+ }
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":543
+ * # bam_header_destroy takes care of cleaning up of all the members
+ * if not template and header_to_write != NULL:
+ * bam_header_destroy( header_to_write ) # <<<<<<<<<<<<<<
+ *
+ * elif mode[0] == "r":
+ */
+ bam_header_destroy(__pyx_v_header_to_write);
+ goto __pyx_L15;
+ }
+ __pyx_L15:;
+ goto __pyx_L8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":545
+ * bam_header_destroy( header_to_write )
+ *
+ * elif mode[0] == "r": # <<<<<<<<<<<<<<
+ * # open file for reading
+ * if strncmp( filename, "-", 1) != 0 and \
+ */
+ __pyx_t_2 = __Pyx_GetItemInt(__pyx_v_mode, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 545; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_7 = PyObject_RichCompare(__pyx_t_2, ((PyObject *)__pyx_n_s__r), Py_EQ); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 545; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_7); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 545; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":547
+ * elif mode[0] == "r":
+ * # open file for reading
+ * if strncmp( filename, "-", 1) != 0 and \ # <<<<<<<<<<<<<<
+ * not self.isremote and \
+ * not os.path.exists( filename ):
+ */
+ __pyx_t_3 = (strncmp(__pyx_v_filename, __pyx_k_21, 1) != 0);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":548
+ * # open file for reading
+ * if strncmp( filename, "-", 1) != 0 and \
+ * not self.isremote and \ # <<<<<<<<<<<<<<
+ * not os.path.exists( filename ):
+ * raise IOError( "file `%s` not found" % filename)
+ */
+ __pyx_t_5 = (!((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isremote);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":549
+ * if strncmp( filename, "-", 1) != 0 and \
+ * not self.isremote and \
+ * not os.path.exists( filename ): # <<<<<<<<<<<<<<
+ * raise IOError( "file `%s` not found" % filename)
+ *
+ */
+ __pyx_t_7 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 549; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_7, __pyx_n_s__path); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 549; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __pyx_t_7 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__exists); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 549; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_2 = PyBytes_FromString(__pyx_v_filename); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 549; __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 = 549; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__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(__pyx_t_7, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 549; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 549; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_15 = (!__pyx_t_4);
+ __pyx_t_4 = __pyx_t_15;
+ } else {
+ __pyx_t_4 = __pyx_t_5;
+ }
+ __pyx_t_5 = __pyx_t_4;
+ } else {
+ __pyx_t_5 = __pyx_t_3;
+ }
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":550
+ * not self.isremote and \
+ * not os.path.exists( filename ):
+ * raise IOError( "file `%s` not found" % filename) # <<<<<<<<<<<<<<
+ *
+ * # try to detect errors
+ */
+ __pyx_t_2 = PyBytes_FromString(__pyx_v_filename); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 550; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_22), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 550; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __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 = 550; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_t_1));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_1));
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_IOError, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 550; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 550; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L16;
+ }
+ __pyx_L16:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":553
+ *
+ * # try to detect errors
+ * self.samfile = samopen( filename, mode, NULL ) # <<<<<<<<<<<<<<
+ * if self.samfile == NULL:
+ * raise ValueError( "could not open file - is it SAM/BAM format?")
+ */
+ __pyx_t_14 = PyBytes_AsString(__pyx_v_mode); if (unlikely((!__pyx_t_14) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 553; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile = samopen(__pyx_v_filename, __pyx_t_14, NULL);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":554
+ * # try to detect errors
+ * self.samfile = samopen( filename, mode, NULL )
+ * if self.samfile == NULL: # <<<<<<<<<<<<<<
+ * raise ValueError( "could not open file - is it SAM/BAM format?")
+ *
+ */
+ __pyx_t_5 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile == NULL);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":555
+ * self.samfile = samopen( filename, mode, NULL )
+ * if self.samfile == NULL:
+ * raise ValueError( "could not open file - is it SAM/BAM format?") # <<<<<<<<<<<<<<
+ *
+ * if self.samfile.header == NULL:
+ */
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_24), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 555; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 555; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L17;
+ }
+ __pyx_L17:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":557
+ * raise ValueError( "could not open file - is it SAM/BAM format?")
+ *
+ * if self.samfile.header == NULL: # <<<<<<<<<<<<<<
+ * raise ValueError( "could not open file - is it SAM/BAM format?")
+ *
+ */
+ __pyx_t_5 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header == NULL);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":558
+ *
+ * if self.samfile.header == NULL:
+ * raise ValueError( "could not open file - is it SAM/BAM format?") # <<<<<<<<<<<<<<
+ *
+ * if self.samfile.header.n_targets == 0:
+ */
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_25), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 558; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 558; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L18;
+ }
+ __pyx_L18:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":560
+ * raise ValueError( "could not open file - is it SAM/BAM format?")
+ *
+ * if self.samfile.header.n_targets == 0: # <<<<<<<<<<<<<<
+ * raise ValueError( "could not open file - is it SAM/BAM format?")
+ *
+ */
+ __pyx_t_5 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->n_targets == 0);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":561
+ *
+ * if self.samfile.header.n_targets == 0:
+ * raise ValueError( "could not open file - is it SAM/BAM format?") # <<<<<<<<<<<<<<
+ *
+ * if self.samfile == NULL:
+ */
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_26), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 561; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 561; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L19;
+ }
+ __pyx_L19:;
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":563
+ * raise ValueError( "could not open file - is it SAM/BAM format?")
+ *
+ * if self.samfile == NULL: # <<<<<<<<<<<<<<
+ * raise IOError("could not open file `%s`" % filename )
+ *
+ */
+ __pyx_t_5 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile == NULL);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":564
+ *
+ * if self.samfile == NULL:
+ * raise IOError("could not open file `%s`" % filename ) # <<<<<<<<<<<<<<
+ *
+ * # check for index and open if present
+ */
+ __pyx_t_1 = PyBytes_FromString(__pyx_v_filename); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 564; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __pyx_t_2 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_5), ((PyObject *)__pyx_t_1)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 564; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_DECREF(((PyObject *)__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 = 564; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__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(__pyx_builtin_IOError, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 564; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 564; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L20;
+ }
+ __pyx_L20:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":567
+ *
+ * # check for index and open if present
+ * if mode[0] == "r" and self.isbam: # <<<<<<<<<<<<<<
+ *
+ * if not self.isremote:
+ */
+ __pyx_t_2 = __Pyx_GetItemInt(__pyx_v_mode, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_2) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, ((PyObject *)__pyx_n_s__r), Py_EQ); 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_2); __pyx_t_2 = 0;
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 567; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (__pyx_t_5) {
+ __pyx_t_3 = ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isbam;
+ } else {
+ __pyx_t_3 = __pyx_t_5;
+ }
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":569
+ * if mode[0] == "r" and self.isbam:
+ *
+ * if not self.isremote: # <<<<<<<<<<<<<<
+ * if not os.path.exists(filename +".bai"):
+ * self.index = NULL
+ */
+ __pyx_t_3 = (!((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isremote);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":570
+ *
+ * if not self.isremote:
+ * if not os.path.exists(filename +".bai"): # <<<<<<<<<<<<<<
+ * self.index = NULL
+ * else:
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__path); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_GetAttr(__pyx_t_2, __pyx_n_s__exists); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_2 = PyBytes_FromString(__pyx_v_filename); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __pyx_t_7 = PyNumber_Add(((PyObject *)__pyx_t_2), ((PyObject *)__pyx_kp_s_27)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __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 = 570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ __pyx_t_7 = 0;
+ __pyx_t_7 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_7); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __pyx_t_5 = (!__pyx_t_3);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":571
+ * if not self.isremote:
+ * if not os.path.exists(filename +".bai"):
+ * self.index = NULL # <<<<<<<<<<<<<<
+ * else:
+ * # returns NULL if there is no index or index could not be opened
+ */
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->index = NULL;
+ goto __pyx_L23;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":574
+ * else:
+ * # returns NULL if there is no index or index could not be opened
+ * self.index = bam_index_load(filename) # <<<<<<<<<<<<<<
+ * if self.index == NULL:
+ * raise IOError("error while opening index `%s` " % filename )
+ */
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->index = bam_index_load(__pyx_v_filename);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":575
+ * # returns NULL if there is no index or index could not be opened
+ * self.index = bam_index_load(filename)
+ * if self.index == NULL: # <<<<<<<<<<<<<<
+ * raise IOError("error while opening index `%s` " % filename )
+ * else:
+ */
+ __pyx_t_5 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->index == NULL);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":576
+ * self.index = bam_index_load(filename)
+ * if self.index == NULL:
+ * raise IOError("error while opening index `%s` " % filename ) # <<<<<<<<<<<<<<
+ * else:
+ * self.index = bam_index_load(filename)
+ */
+ __pyx_t_7 = PyBytes_FromString(__pyx_v_filename); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 576; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_7));
+ __pyx_t_2 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_28), ((PyObject *)__pyx_t_7)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 576; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_DECREF(((PyObject *)__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 = 576; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_7));
+ PyTuple_SET_ITEM(__pyx_t_7, 0, ((PyObject *)__pyx_t_2));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_2));
+ __pyx_t_2 = 0;
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_IOError, ((PyObject *)__pyx_t_7), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 576; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(((PyObject *)__pyx_t_7)); __pyx_t_7 = 0;
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 576; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L24;
+ }
+ __pyx_L24:;
+ }
+ __pyx_L23:;
+ goto __pyx_L22;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":578
+ * raise IOError("error while opening index `%s` " % filename )
+ * else:
+ * self.index = bam_index_load(filename) # <<<<<<<<<<<<<<
+ * if self.index == NULL:
+ * raise IOError("error while opening index `%s` " % filename )
+ */
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->index = bam_index_load(__pyx_v_filename);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":579
+ * else:
+ * self.index = bam_index_load(filename)
+ * if self.index == NULL: # <<<<<<<<<<<<<<
+ * raise IOError("error while opening index `%s` " % filename )
+ *
+ */
+ __pyx_t_5 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->index == NULL);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":580
+ * self.index = bam_index_load(filename)
+ * if self.index == NULL:
+ * raise IOError("error while opening index `%s` " % filename ) # <<<<<<<<<<<<<<
+ *
+ * def getrname( self, tid ):
+ */
+ __pyx_t_2 = PyBytes_FromString(__pyx_v_filename); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 580; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __pyx_t_7 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_28), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 580; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_7));
+ __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 = 580; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_t_7));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_7));
+ __pyx_t_7 = 0;
+ __pyx_t_7 = PyObject_Call(__pyx_builtin_IOError, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 580; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_Raise(__pyx_t_7, 0, 0);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 580; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L25;
+ }
+ __pyx_L25:;
+ }
+ __pyx_L22:;
+ goto __pyx_L21;
+ }
+ __pyx_L21:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_AddTraceback("csamtools.Samfile._open");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_n);
+ __Pyx_DECREF(__pyx_v_x);
+ __Pyx_DECREF(__pyx_v_name);
+ __Pyx_DECREF(__pyx_v_store);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":582
+ * raise IOError("error while opening index `%s` " % filename )
+ *
+ * def getrname( self, tid ): # <<<<<<<<<<<<<<
+ * '''
+ * convert numerical :term:`tid` into :term:`reference` name.'''
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_4getrname(PyObject *__pyx_v_self, PyObject *__pyx_v_tid); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_4getrname[] = "\n convert numerical :term:`tid` into :term:`reference` name.";
+static PyObject *__pyx_pf_9csamtools_7Samfile_4getrname(PyObject *__pyx_v_self, PyObject *__pyx_v_tid) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ Py_ssize_t __pyx_t_5;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("getrname");
+ __Pyx_TraceCall("getrname", __pyx_f[0], 582);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":585
+ * '''
+ * convert numerical :term:`tid` into :term:`reference` name.'''
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * if not 0 <= tid < self.samfile.header.n_targets:
+ * raise ValueError( "tid out of range 0<=tid<%i" % self.samfile.header.n_targets )
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 585; __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 = 585; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 585; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_29), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 585; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 585; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":586
+ * convert numerical :term:`tid` into :term:`reference` name.'''
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * if not 0 <= tid < self.samfile.header.n_targets: # <<<<<<<<<<<<<<
+ * raise ValueError( "tid out of range 0<=tid<%i" % self.samfile.header.n_targets )
+ * return self.samfile.header.target_name[tid]
+ */
+ __pyx_t_2 = PyObject_RichCompare(__pyx_int_0, __pyx_v_tid, Py_LE); 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);
+ if (__Pyx_PyObject_IsTrue(__pyx_t_2)) {
+ __Pyx_DECREF(__pyx_t_2);
+ __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->n_targets); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 586; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_RichCompare(__pyx_v_tid, __pyx_t_1, Py_LT); 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_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ }
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 586; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_3 = (!__pyx_t_4);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":587
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * if not 0 <= tid < self.samfile.header.n_targets:
+ * raise ValueError( "tid out of range 0<=tid<%i" % self.samfile.header.n_targets ) # <<<<<<<<<<<<<<
+ * return self.samfile.header.target_name[tid]
+ *
+ */
+ __pyx_t_2 = __Pyx_PyInt_to_py_int32_t(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->n_targets); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 587; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_30), __pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 587; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 587; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_t_1));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_1));
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 587; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 587; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":588
+ * if not 0 <= tid < self.samfile.header.n_targets:
+ * raise ValueError( "tid out of range 0<=tid<%i" % self.samfile.header.n_targets )
+ * return self.samfile.header.target_name[tid] # <<<<<<<<<<<<<<
+ *
+ * def gettid( self, reference ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_5 = __Pyx_PyIndex_AsSsize_t(__pyx_v_tid); if (unlikely((__pyx_t_5 == (Py_ssize_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_1 = PyBytes_FromString((((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->target_name[__pyx_t_5])); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 588; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __pyx_r = ((PyObject *)__pyx_t_1);
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.Samfile.getrname");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":590
+ * return self.samfile.header.target_name[tid]
+ *
+ * def gettid( self, reference ): # <<<<<<<<<<<<<<
+ * '''
+ * convert :term:`reference` name into numerical :term:`tid`
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_5gettid(PyObject *__pyx_v_self, PyObject *__pyx_v_reference); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_5gettid[] = "\n convert :term:`reference` name into numerical :term:`tid`\n\n returns -1 if reference is not known.\n ";
+static PyObject *__pyx_pf_9csamtools_7Samfile_5gettid(PyObject *__pyx_v_self, PyObject *__pyx_v_reference) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ char *__pyx_t_5;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("gettid");
+ __Pyx_TraceCall("gettid", __pyx_f[0], 590);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":596
+ * returns -1 if reference is not known.
+ * '''
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return pysam_reference2tid( self.samfile.header, reference )
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 596; __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 = 596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_31), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":597
+ * '''
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * return pysam_reference2tid( self.samfile.header, reference ) # <<<<<<<<<<<<<<
+ *
+ * def _parseRegion( self,
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_5 = PyBytes_AsString(__pyx_v_reference); if (unlikely((!__pyx_t_5) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 597; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_2 = PyInt_FromLong(pysam_reference2tid(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header, __pyx_t_5)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 597; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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("csamtools.Samfile.gettid");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":599
+ * return pysam_reference2tid( self.samfile.header, reference )
+ *
+ * def _parseRegion( self, # <<<<<<<<<<<<<<
+ * reference = None,
+ * start = None,
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_6_parseRegion(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_6_parseRegion[] = "\n parse region information.\n\n raise ValueError for for invalid regions.\n\n returns a tuple of flag, tid, start and end. Flag indicates\n whether some coordinates were supplied.\n\n Note that regions are 1-based, while start,end are python coordinates.\n ";
+static PyObject *__pyx_pf_9csamtools_7Samfile_6_parseRegion(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_reference = 0;
+ PyObject *__pyx_v_start = 0;
+ PyObject *__pyx_v_end = 0;
+ PyObject *__pyx_v_region = 0;
+ int __pyx_v_rtid;
+ int __pyx_v_rstart;
+ int __pyx_v_rend;
+ PyObject *__pyx_v_parts;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ int __pyx_t_3;
+ PyObject *__pyx_t_4 = NULL;
+ PyObject *__pyx_t_5 = NULL;
+ Py_ssize_t __pyx_t_6;
+ int __pyx_t_7;
+ PyObject *__pyx_t_8 = NULL;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__reference,&__pyx_n_s__start,&__pyx_n_s__end,&__pyx_n_s__region,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("_parseRegion");
+ __Pyx_TraceCall("_parseRegion", __pyx_f[0], 599);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[4] = {0,0,0,0};
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":600
+ *
+ * def _parseRegion( self,
+ * reference = None, # <<<<<<<<<<<<<<
+ * start = None,
+ * end = None,
+ */
+ values[0] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":601
+ * def _parseRegion( self,
+ * reference = None,
+ * start = None, # <<<<<<<<<<<<<<
+ * end = None,
+ * region = None ):
+ */
+ values[1] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":602
+ * reference = None,
+ * start = None,
+ * end = None, # <<<<<<<<<<<<<<
+ * region = None ):
+ * '''
+ */
+ values[2] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":603
+ * start = None,
+ * end = None,
+ * region = None ): # <<<<<<<<<<<<<<
+ * '''
+ * parse region information.
+ */
+ values[3] = ((PyObject *)Py_None);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ 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;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__reference);
+ if (value) { values[0] = value; kw_args--; }
+ }
+ case 1:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__start);
+ if (value) { values[1] = value; kw_args--; }
+ }
+ case 2:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__end);
+ if (value) { values[2] = value; kw_args--; }
+ }
+ case 3:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__region);
+ if (value) { values[3] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "_parseRegion") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 599; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_reference = values[0];
+ __pyx_v_start = values[1];
+ __pyx_v_end = values[2];
+ __pyx_v_region = values[3];
+ } else {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":600
+ *
+ * def _parseRegion( self,
+ * reference = None, # <<<<<<<<<<<<<<
+ * start = None,
+ * end = None,
+ */
+ __pyx_v_reference = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":601
+ * def _parseRegion( self,
+ * reference = None,
+ * start = None, # <<<<<<<<<<<<<<
+ * end = None,
+ * region = None ):
+ */
+ __pyx_v_start = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":602
+ * reference = None,
+ * start = None,
+ * end = None, # <<<<<<<<<<<<<<
+ * region = None ):
+ * '''
+ */
+ __pyx_v_end = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":603
+ * start = None,
+ * end = None,
+ * region = None ): # <<<<<<<<<<<<<<
+ * '''
+ * parse region information.
+ */
+ __pyx_v_region = ((PyObject *)Py_None);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 4: __pyx_v_region = PyTuple_GET_ITEM(__pyx_args, 3);
+ case 3: __pyx_v_end = PyTuple_GET_ITEM(__pyx_args, 2);
+ case 2: __pyx_v_start = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: __pyx_v_reference = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("_parseRegion", 0, 0, 4, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 599; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Samfile._parseRegion");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+ __Pyx_INCREF(__pyx_v_reference);
+ __pyx_v_parts = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":622
+ * cdef int rend
+ *
+ * rtid = -1 # <<<<<<<<<<<<<<
+ * rstart = 0
+ * rend = max_pos
+ */
+ __pyx_v_rtid = -1;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":623
+ *
+ * rtid = -1
+ * rstart = 0 # <<<<<<<<<<<<<<
+ * rend = max_pos
+ * if start != None: rstart = start
+ */
+ __pyx_v_rstart = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":624
+ * rtid = -1
+ * rstart = 0
+ * rend = max_pos # <<<<<<<<<<<<<<
+ * if start != None: rstart = start
+ * if end != None: rend = end
+ */
+ __pyx_v_rend = __pyx_v_9csamtools_max_pos;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":625
+ * rstart = 0
+ * rend = max_pos
+ * if start != None: rstart = start # <<<<<<<<<<<<<<
+ * if end != None: rend = end
+ *
+ */
+ __pyx_t_1 = PyObject_RichCompare(__pyx_v_start, Py_None, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 625; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 625; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (__pyx_t_2) {
+ __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_v_start); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 625; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_rstart = __pyx_t_3;
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":626
+ * rend = max_pos
+ * if start != None: rstart = start
+ * if end != None: rend = end # <<<<<<<<<<<<<<
+ *
+ * if region:
+ */
+ __pyx_t_1 = PyObject_RichCompare(__pyx_v_end, Py_None, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 626; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 626; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (__pyx_t_2) {
+ __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_v_end); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 626; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_rend = __pyx_t_3;
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":628
+ * if end != None: rend = end
+ *
+ * if region: # <<<<<<<<<<<<<<
+ * parts = re.split( "[:-]", region )
+ * reference = parts[0]
+ */
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_v_region); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 628; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":629
+ *
+ * if region:
+ * parts = re.split( "[:-]", region ) # <<<<<<<<<<<<<<
+ * reference = parts[0]
+ * if len(parts) >= 2: rstart = int(parts[1]) - 1
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__re); 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_t_4 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__split); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 629; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 629; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_32));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_kp_s_32));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_32));
+ __Pyx_INCREF(__pyx_v_region);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_region);
+ __Pyx_GIVEREF(__pyx_v_region);
+ __pyx_t_5 = PyObject_Call(__pyx_t_4, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 629; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_v_parts);
+ __pyx_v_parts = __pyx_t_5;
+ __pyx_t_5 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":630
+ * if region:
+ * parts = re.split( "[:-]", region )
+ * reference = parts[0] # <<<<<<<<<<<<<<
+ * if len(parts) >= 2: rstart = int(parts[1]) - 1
+ * if len(parts) >= 3: rend = int(parts[2])
+ */
+ __pyx_t_5 = __Pyx_GetItemInt(__pyx_v_parts, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_5) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 630; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_v_reference);
+ __pyx_v_reference = __pyx_t_5;
+ __pyx_t_5 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":631
+ * parts = re.split( "[:-]", region )
+ * reference = parts[0]
+ * if len(parts) >= 2: rstart = int(parts[1]) - 1 # <<<<<<<<<<<<<<
+ * if len(parts) >= 3: rend = int(parts[2])
+ *
+ */
+ __pyx_t_6 = PyObject_Length(__pyx_v_parts); if (unlikely(__pyx_t_6 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_2 = (__pyx_t_6 >= 2);
+ if (__pyx_t_2) {
+ __pyx_t_5 = __Pyx_GetItemInt(__pyx_v_parts, 1, sizeof(long), PyInt_FromLong); if (!__pyx_t_5) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ __pyx_t_5 = 0;
+ __pyx_t_5 = PyObject_Call(((PyObject *)((PyObject*)(&PyInt_Type))), ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __pyx_t_1 = PyNumber_Subtract(__pyx_t_5, __pyx_int_1); 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);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_1); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 631; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_v_rstart = __pyx_t_3;
+ goto __pyx_L9;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":632
+ * reference = parts[0]
+ * if len(parts) >= 2: rstart = int(parts[1]) - 1
+ * if len(parts) >= 3: rend = int(parts[2]) # <<<<<<<<<<<<<<
+ *
+ * if not reference: return 0, 0, 0, 0
+ */
+ __pyx_t_6 = PyObject_Length(__pyx_v_parts); if (unlikely(__pyx_t_6 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 632; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_2 = (__pyx_t_6 >= 3);
+ if (__pyx_t_2) {
+ __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_parts, 2, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 632; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 632; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)(&PyInt_Type))), ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 632; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_1); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 632; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_v_rend = __pyx_t_3;
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":634
+ * if len(parts) >= 3: rend = int(parts[2])
+ *
+ * if not reference: return 0, 0, 0, 0 # <<<<<<<<<<<<<<
+ *
+ * rtid = self.gettid( reference )
+ */
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_v_reference); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 634; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_7 = (!__pyx_t_2);
+ if (__pyx_t_7) {
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_k_tuple_33));
+ __pyx_r = ((PyObject *)__pyx_k_tuple_33);
+ goto __pyx_L0;
+ goto __pyx_L11;
+ }
+ __pyx_L11:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":636
+ * if not reference: return 0, 0, 0, 0
+ *
+ * rtid = self.gettid( reference ) # <<<<<<<<<<<<<<
+ * if rtid < 0: raise ValueError( "invalid reference `%s`" % reference )
+ * if rstart > rend: raise ValueError( 'invalid coordinates: start (%i) > end (%i)' % (rstart, rend) )
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__gettid); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 636; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 636; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ __Pyx_INCREF(__pyx_v_reference);
+ PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_v_reference);
+ __Pyx_GIVEREF(__pyx_v_reference);
+ __pyx_t_4 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 636; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __pyx_t_3 = __Pyx_PyInt_AsInt(__pyx_t_4); if (unlikely((__pyx_t_3 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 636; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __pyx_v_rtid = __pyx_t_3;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":637
+ *
+ * rtid = self.gettid( reference )
+ * if rtid < 0: raise ValueError( "invalid reference `%s`" % reference ) # <<<<<<<<<<<<<<
+ * if rstart > rend: raise ValueError( 'invalid coordinates: start (%i) > end (%i)' % (rstart, rend) )
+ * if not 0 <= rstart < max_pos: raise ValueError( 'start out of range (%i)' % rstart )
+ */
+ __pyx_t_7 = (__pyx_v_rtid < 0);
+ if (__pyx_t_7) {
+ __pyx_t_4 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_34), __pyx_v_reference); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 637; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 637; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_t_4));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_4));
+ __pyx_t_4 = 0;
+ __pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 637; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __Pyx_Raise(__pyx_t_4, 0, 0);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 637; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L12;
+ }
+ __pyx_L12:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":638
+ * rtid = self.gettid( reference )
+ * if rtid < 0: raise ValueError( "invalid reference `%s`" % reference )
+ * if rstart > rend: raise ValueError( 'invalid coordinates: start (%i) > end (%i)' % (rstart, rend) ) # <<<<<<<<<<<<<<
+ * if not 0 <= rstart < max_pos: raise ValueError( 'start out of range (%i)' % rstart )
+ * if not 0 <= rend <= max_pos: raise ValueError( 'end out of range (%i)' % rend )
+ */
+ __pyx_t_7 = (__pyx_v_rstart > __pyx_v_rend);
+ if (__pyx_t_7) {
+ __pyx_t_4 = PyInt_FromLong(__pyx_v_rstart); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 638; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_5 = PyInt_FromLong(__pyx_v_rend); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 638; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 638; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ __pyx_t_4 = 0;
+ __pyx_t_5 = 0;
+ __pyx_t_5 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_35), ((PyObject *)__pyx_t_1)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 638; __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 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 638; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_t_5));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_5));
+ __pyx_t_5 = 0;
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 638; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_Raise(__pyx_t_5, 0, 0);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 638; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L13;
+ }
+ __pyx_L13:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":639
+ * if rtid < 0: raise ValueError( "invalid reference `%s`" % reference )
+ * if rstart > rend: raise ValueError( 'invalid coordinates: start (%i) > end (%i)' % (rstart, rend) )
+ * if not 0 <= rstart < max_pos: raise ValueError( 'start out of range (%i)' % rstart ) # <<<<<<<<<<<<<<
+ * if not 0 <= rend <= max_pos: raise ValueError( 'end out of range (%i)' % rend )
+ *
+ */
+ __pyx_t_7 = (0 <= __pyx_v_rstart);
+ if (__pyx_t_7) {
+ __pyx_t_7 = (__pyx_v_rstart < __pyx_v_9csamtools_max_pos);
+ }
+ __pyx_t_2 = (!__pyx_t_7);
+ if (__pyx_t_2) {
+ __pyx_t_5 = PyInt_FromLong(__pyx_v_rstart); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_13), __pyx_t_5); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_t_1));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_1));
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L14;
+ }
+ __pyx_L14:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":640
+ * if rstart > rend: raise ValueError( 'invalid coordinates: start (%i) > end (%i)' % (rstart, rend) )
+ * if not 0 <= rstart < max_pos: raise ValueError( 'start out of range (%i)' % rstart )
+ * if not 0 <= rend <= max_pos: raise ValueError( 'end out of range (%i)' % rend ) # <<<<<<<<<<<<<<
+ *
+ * return 1, rtid, rstart, rend
+ */
+ __pyx_t_2 = (0 <= __pyx_v_rend);
+ if (__pyx_t_2) {
+ __pyx_t_2 = (__pyx_v_rend <= __pyx_v_9csamtools_max_pos);
+ }
+ __pyx_t_7 = (!__pyx_t_2);
+ if (__pyx_t_7) {
+ __pyx_t_1 = PyInt_FromLong(__pyx_v_rend); 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_t_5 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_14), __pyx_t_1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_t_5));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_5));
+ __pyx_t_5 = 0;
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_Raise(__pyx_t_5, 0, 0);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 640; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L15;
+ }
+ __pyx_L15:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":642
+ * if not 0 <= rend <= max_pos: raise ValueError( 'end out of range (%i)' % rend )
+ *
+ * return 1, rtid, rstart, rend # <<<<<<<<<<<<<<
+ *
+ * def seek( self, uint64_t offset, int where = 0):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_5 = PyInt_FromLong(__pyx_v_rtid); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_1 = PyInt_FromLong(__pyx_v_rstart); 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_4 = PyInt_FromLong(__pyx_v_rend); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_8 = PyTuple_New(4); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 642; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ __Pyx_INCREF(__pyx_int_1);
+ PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_int_1);
+ __Pyx_GIVEREF(__pyx_int_1);
+ PyTuple_SET_ITEM(__pyx_t_8, 1, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ PyTuple_SET_ITEM(__pyx_t_8, 2, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ PyTuple_SET_ITEM(__pyx_t_8, 3, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ __pyx_t_5 = 0;
+ __pyx_t_1 = 0;
+ __pyx_t_4 = 0;
+ __pyx_r = ((PyObject *)__pyx_t_8);
+ __pyx_t_8 = 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_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_XDECREF(__pyx_t_8);
+ __Pyx_AddTraceback("csamtools.Samfile._parseRegion");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_parts);
+ __Pyx_DECREF(__pyx_v_reference);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":644
+ * return 1, rtid, rstart, rend
+ *
+ * def seek( self, uint64_t offset, int where = 0): # <<<<<<<<<<<<<<
+ * '''
+ * move file pointer to position *offset*, see :meth:`pysam.Samfile.tell`.
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_7seek(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_7seek[] = "\n move file pointer to position *offset*, see :meth:`pysam.Samfile.tell`.\n ";
+static PyObject *__pyx_pf_9csamtools_7Samfile_7seek(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ uint64_t __pyx_v_offset;
+ int __pyx_v_where;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__offset,&__pyx_n_s__where,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("seek");
+ __Pyx_TraceCall("seek", __pyx_f[0], 644);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[2] = {0,0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__offset);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__where);
+ if (value) { values[1] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "seek") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 644; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_offset = __Pyx_PyInt_from_py_uint64_t(values[0]); if (unlikely((__pyx_v_offset == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 644; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ if (values[1]) {
+ __pyx_v_where = __Pyx_PyInt_AsInt(values[1]); if (unlikely((__pyx_v_where == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 644; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ } else {
+ __pyx_v_where = ((int)0);
+ }
+ } else {
+ __pyx_v_where = ((int)0);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: __pyx_v_where = __Pyx_PyInt_AsInt(PyTuple_GET_ITEM(__pyx_args, 1)); if (unlikely((__pyx_v_where == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 644; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ case 1: __pyx_v_offset = __Pyx_PyInt_from_py_uint64_t(PyTuple_GET_ITEM(__pyx_args, 0)); if (unlikely((__pyx_v_offset == (uint64_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 644; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("seek", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 644; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Samfile.seek");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":649
+ * '''
+ *
+ * if not self._isOpen(): # <<<<<<<<<<<<<<
+ * raise ValueError( "I/O operation on closed file" )
+ * if not self.isbam:
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 649; __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 = 649; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 649; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":650
+ *
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * if not self.isbam:
+ * raise NotImplementedError("seek only available in bam files")
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_36), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 650; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 650; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":651
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" )
+ * if not self.isbam: # <<<<<<<<<<<<<<
+ * raise NotImplementedError("seek only available in bam files")
+ * return bam_seek( self.samfile.x.bam, offset, where )
+ */
+ __pyx_t_4 = (!((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isbam);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":652
+ * raise ValueError( "I/O operation on closed file" )
+ * if not self.isbam:
+ * raise NotImplementedError("seek only available in bam files") # <<<<<<<<<<<<<<
+ * return bam_seek( self.samfile.x.bam, offset, where )
+ *
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_NotImplementedError, ((PyObject *)__pyx_k_tuple_38), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 652; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 652; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":653
+ * if not self.isbam:
+ * raise NotImplementedError("seek only available in bam files")
+ * return bam_seek( self.samfile.x.bam, offset, where ) # <<<<<<<<<<<<<<
+ *
+ * def tell( self ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = __Pyx_PyInt_to_py_int64_t(bam_seek(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->x.bam, __pyx_v_offset, __pyx_v_where)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 653; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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("csamtools.Samfile.seek");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":655
+ * return bam_seek( self.samfile.x.bam, offset, where )
+ *
+ * def tell( self ): # <<<<<<<<<<<<<<
+ * '''
+ * return current file position
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_8tell(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_8tell[] = "\n return current file position\n ";
+static PyObject *__pyx_pf_9csamtools_7Samfile_8tell(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("tell");
+ __Pyx_TraceCall("tell", __pyx_f[0], 655);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":659
+ * return current file position
+ * '''
+ * if not self._isOpen(): # <<<<<<<<<<<<<<
+ * raise ValueError( "I/O operation on closed file" )
+ * if not self.isbam:
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 659; __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 = 659; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 659; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":660
+ * '''
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * if not self.isbam:
+ * raise NotImplementedError("seek only available in bam files")
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_39), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":661
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" )
+ * if not self.isbam: # <<<<<<<<<<<<<<
+ * raise NotImplementedError("seek only available in bam files")
+ *
+ */
+ __pyx_t_4 = (!((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isbam);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":662
+ * raise ValueError( "I/O operation on closed file" )
+ * if not self.isbam:
+ * raise NotImplementedError("seek only available in bam files") # <<<<<<<<<<<<<<
+ *
+ * return bam_tell( self.samfile.x.bam )
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_NotImplementedError, ((PyObject *)__pyx_k_tuple_40), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 662; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 662; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":664
+ * raise NotImplementedError("seek only available in bam files")
+ *
+ * return bam_tell( self.samfile.x.bam ) # <<<<<<<<<<<<<<
+ *
+ * def fetch( self,
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = __Pyx_PyInt_to_py_int64_t(bam_tell(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->x.bam)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 664; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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("csamtools.Samfile.tell");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":666
+ * return bam_tell( self.samfile.x.bam )
+ *
+ * def fetch( self, # <<<<<<<<<<<<<<
+ * reference = None,
+ * start = None,
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_9fetch(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_9fetch[] = "\n fetch aligned reads in a :term:`region` using 0-based indexing. The region is specified by\n :term:`reference`, *start* and *end*. Alternatively, a samtools :term:`region` string can \n be supplied.\n\n Without *reference* or *region* all reads will be fetched. The reads will be returned\n ordered by reference sequence, which will not necessarily be the order within the file.\n If *until_eof* is given, all reads from the current file position will be returned\n *in order as they are within the file*. \n \n If only *reference* is set, all reads aligned to *reference* will be fetched.\n\n The method returns an iterator of type :class:`pysam.IteratorRow` unless\n a *callback is provided. If *callback* is given, the callback will be executed \n for each position within the :term:`region`. Note that callbacks currently work\n only, if *region* or *reference* is given.\n\n Note that a :term:`SAM` file does not allow random access. If *region* or *reference* are given,\n an exception is raised.\n ";
+static PyObject *__pyx_pf_9csamtools_7Samfile_9fetch(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_reference = 0;
+ PyObject *__pyx_v_start = 0;
+ PyObject *__pyx_v_end = 0;
+ PyObject *__pyx_v_region = 0;
+ PyObject *__pyx_v_callback = 0;
+ PyObject *__pyx_v_until_eof = 0;
+ int __pyx_v_rtid;
+ int __pyx_v_rstart;
+ int __pyx_v_rend;
+ int __pyx_v_has_coord;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ PyObject *__pyx_t_5 = NULL;
+ PyObject *__pyx_t_6 = NULL;
+ PyObject *__pyx_t_7 = NULL;
+ int __pyx_t_8;
+ int __pyx_t_9;
+ int __pyx_t_10;
+ int __pyx_t_11;
+ PyObject *__pyx_t_12 = NULL;
+ int __pyx_t_13;
+ int __pyx_t_14;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__reference,&__pyx_n_s__start,&__pyx_n_s__end,&__pyx_n_s__region,&__pyx_n_s__callback,&__pyx_n_s__until_eof,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("fetch");
+ __Pyx_TraceCall("fetch", __pyx_f[0], 666);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[6] = {0,0,0,0,0,0};
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":667
+ *
+ * def fetch( self,
+ * reference = None, # <<<<<<<<<<<<<<
+ * start = None,
+ * end = None,
+ */
+ values[0] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":668
+ * def fetch( self,
+ * reference = None,
+ * start = None, # <<<<<<<<<<<<<<
+ * end = None,
+ * region = None,
+ */
+ values[1] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":669
+ * reference = None,
+ * start = None,
+ * end = None, # <<<<<<<<<<<<<<
+ * region = None,
+ * callback = None,
+ */
+ values[2] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":670
+ * start = None,
+ * end = None,
+ * region = None, # <<<<<<<<<<<<<<
+ * callback = None,
+ * until_eof = False ):
+ */
+ values[3] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":671
+ * end = None,
+ * region = None,
+ * callback = None, # <<<<<<<<<<<<<<
+ * until_eof = False ):
+ * '''
+ */
+ values[4] = ((PyObject *)Py_None);
+ values[5] = __pyx_k_41;
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 6: values[5] = PyTuple_GET_ITEM(__pyx_args, 5);
+ case 5: values[4] = PyTuple_GET_ITEM(__pyx_args, 4);
+ 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;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__reference);
+ if (value) { values[0] = value; kw_args--; }
+ }
+ case 1:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__start);
+ if (value) { values[1] = value; kw_args--; }
+ }
+ case 2:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__end);
+ if (value) { values[2] = value; kw_args--; }
+ }
+ case 3:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__region);
+ if (value) { values[3] = value; kw_args--; }
+ }
+ case 4:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__callback);
+ if (value) { values[4] = value; kw_args--; }
+ }
+ case 5:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__until_eof);
+ if (value) { values[5] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "fetch") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 666; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_reference = values[0];
+ __pyx_v_start = values[1];
+ __pyx_v_end = values[2];
+ __pyx_v_region = values[3];
+ __pyx_v_callback = values[4];
+ __pyx_v_until_eof = values[5];
+ } else {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":667
+ *
+ * def fetch( self,
+ * reference = None, # <<<<<<<<<<<<<<
+ * start = None,
+ * end = None,
+ */
+ __pyx_v_reference = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":668
+ * def fetch( self,
+ * reference = None,
+ * start = None, # <<<<<<<<<<<<<<
+ * end = None,
+ * region = None,
+ */
+ __pyx_v_start = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":669
+ * reference = None,
+ * start = None,
+ * end = None, # <<<<<<<<<<<<<<
+ * region = None,
+ * callback = None,
+ */
+ __pyx_v_end = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":670
+ * start = None,
+ * end = None,
+ * region = None, # <<<<<<<<<<<<<<
+ * callback = None,
+ * until_eof = False ):
+ */
+ __pyx_v_region = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":671
+ * end = None,
+ * region = None,
+ * callback = None, # <<<<<<<<<<<<<<
+ * until_eof = False ):
+ * '''
+ */
+ __pyx_v_callback = ((PyObject *)Py_None);
+ __pyx_v_until_eof = __pyx_k_41;
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 6: __pyx_v_until_eof = PyTuple_GET_ITEM(__pyx_args, 5);
+ case 5: __pyx_v_callback = PyTuple_GET_ITEM(__pyx_args, 4);
+ case 4: __pyx_v_region = PyTuple_GET_ITEM(__pyx_args, 3);
+ case 3: __pyx_v_end = PyTuple_GET_ITEM(__pyx_args, 2);
+ case 2: __pyx_v_start = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: __pyx_v_reference = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("fetch", 0, 0, 6, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 666; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Samfile.fetch");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":695
+ * cdef int rtid, rstart, rend, has_coord
+ *
+ * if not self._isOpen(): # <<<<<<<<<<<<<<
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 695; __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 = 695; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 695; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":696
+ *
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * has_coord, rtid, rstart, rend = self._parseRegion( reference, start, end, region )
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_42), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 696; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 696; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":698
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ * has_coord, rtid, rstart, rend = self._parseRegion( reference, start, end, region ) # <<<<<<<<<<<<<<
+ *
+ * if self.isbam:
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___parseRegion); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyTuple_New(4); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_reference);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_reference);
+ __Pyx_GIVEREF(__pyx_v_reference);
+ __Pyx_INCREF(__pyx_v_start);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_start);
+ __Pyx_GIVEREF(__pyx_v_start);
+ __Pyx_INCREF(__pyx_v_end);
+ PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_v_end);
+ __Pyx_GIVEREF(__pyx_v_end);
+ __Pyx_INCREF(__pyx_v_region);
+ PyTuple_SET_ITEM(__pyx_t_1, 3, __pyx_v_region);
+ __Pyx_GIVEREF(__pyx_v_region);
+ __pyx_t_5 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ if (PyTuple_CheckExact(__pyx_t_5) && likely(PyTuple_GET_SIZE(__pyx_t_5) == 4)) {
+ PyObject* tuple = __pyx_t_5;
+ __pyx_t_1 = PyTuple_GET_ITEM(tuple, 0); __Pyx_INCREF(__pyx_t_1);
+ __pyx_t_8 = __Pyx_PyInt_AsInt(__pyx_t_1); if (unlikely((__pyx_t_8 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_2 = PyTuple_GET_ITEM(tuple, 1); __Pyx_INCREF(__pyx_t_2);
+ __pyx_t_9 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_9 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_6 = PyTuple_GET_ITEM(tuple, 2); __Pyx_INCREF(__pyx_t_6);
+ __pyx_t_10 = __Pyx_PyInt_AsInt(__pyx_t_6); if (unlikely((__pyx_t_10 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_7 = PyTuple_GET_ITEM(tuple, 3); __Pyx_INCREF(__pyx_t_7);
+ __pyx_t_11 = __Pyx_PyInt_AsInt(__pyx_t_7); if (unlikely((__pyx_t_11 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_v_has_coord = __pyx_t_8;
+ __pyx_v_rtid = __pyx_t_9;
+ __pyx_v_rstart = __pyx_t_10;
+ __pyx_v_rend = __pyx_t_11;
+ } else {
+ __pyx_t_12 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_12);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_t_1 = __Pyx_UnpackItem(__pyx_t_12, 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_11 = __Pyx_PyInt_AsInt(__pyx_t_1); if (unlikely((__pyx_t_11 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_2 = __Pyx_UnpackItem(__pyx_t_12, 1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_10 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_10 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_6 = __Pyx_UnpackItem(__pyx_t_12, 2); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_9 = __Pyx_PyInt_AsInt(__pyx_t_6); if (unlikely((__pyx_t_9 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_7 = __Pyx_UnpackItem(__pyx_t_12, 3); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_8 = __Pyx_PyInt_AsInt(__pyx_t_7); if (unlikely((__pyx_t_8 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ if (__Pyx_EndUnpack(__pyx_t_12, 4) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 698; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
+ __pyx_v_has_coord = __pyx_t_11;
+ __pyx_v_rtid = __pyx_t_10;
+ __pyx_v_rstart = __pyx_t_9;
+ __pyx_v_rend = __pyx_t_8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":700
+ * has_coord, rtid, rstart, rend = self._parseRegion( reference, start, end, region )
+ *
+ * if self.isbam: # <<<<<<<<<<<<<<
+ * if not until_eof and not self._hasIndex() and not self.isremote:
+ * raise ValueError( "fetch called on bamfile without index" )
+ */
+ if (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isbam) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":701
+ *
+ * if self.isbam:
+ * if not until_eof and not self._hasIndex() and not self.isremote: # <<<<<<<<<<<<<<
+ * raise ValueError( "fetch called on bamfile without index" )
+ *
+ */
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_v_until_eof); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 701; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_3 = (!__pyx_t_4);
+ if (__pyx_t_3) {
+ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___hasIndex); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 701; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_7 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 701; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_7); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 701; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __pyx_t_13 = (!__pyx_t_4);
+ if (__pyx_t_13) {
+ __pyx_t_4 = (!((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isremote);
+ __pyx_t_14 = __pyx_t_4;
+ } else {
+ __pyx_t_14 = __pyx_t_13;
+ }
+ __pyx_t_13 = __pyx_t_14;
+ } else {
+ __pyx_t_13 = __pyx_t_3;
+ }
+ if (__pyx_t_13) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":702
+ * if self.isbam:
+ * if not until_eof and not self._hasIndex() and not self.isremote:
+ * raise ValueError( "fetch called on bamfile without index" ) # <<<<<<<<<<<<<<
+ *
+ * if callback:
+ */
+ __pyx_t_7 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_44), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 702; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_Raise(__pyx_t_7, 0, 0);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 702; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":704
+ * raise ValueError( "fetch called on bamfile without index" )
+ *
+ * if callback: # <<<<<<<<<<<<<<
+ * if not has_coord: raise ValueError( "callback functionality requires a region/reference" )
+ * if not self._hasIndex(): raise ValueError( "no index available for fetch" )
+ */
+ __pyx_t_13 = __Pyx_PyObject_IsTrue(__pyx_v_callback); if (unlikely(__pyx_t_13 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 704; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_13) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":705
+ *
+ * if callback:
+ * if not has_coord: raise ValueError( "callback functionality requires a region/reference" ) # <<<<<<<<<<<<<<
+ * if not self._hasIndex(): raise ValueError( "no index available for fetch" )
+ * return bam_fetch(self.samfile.x.bam,
+ */
+ __pyx_t_13 = (!__pyx_v_has_coord);
+ if (__pyx_t_13) {
+ __pyx_t_7 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_46), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 705; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_Raise(__pyx_t_7, 0, 0);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 705; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":706
+ * if callback:
+ * if not has_coord: raise ValueError( "callback functionality requires a region/reference" )
+ * if not self._hasIndex(): raise ValueError( "no index available for fetch" ) # <<<<<<<<<<<<<<
+ * return bam_fetch(self.samfile.x.bam,
+ * self.index,
+ */
+ __pyx_t_7 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___hasIndex); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 706; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_5 = PyObject_Call(__pyx_t_7, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 706; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __pyx_t_13 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_13 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 706; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_t_3 = (!__pyx_t_13);
+ if (__pyx_t_3) {
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_48), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 706; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_Raise(__pyx_t_5, 0, 0);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 706; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L11;
+ }
+ __pyx_L11:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":707
+ * if not has_coord: raise ValueError( "callback functionality requires a region/reference" )
+ * if not self._hasIndex(): raise ValueError( "no index available for fetch" )
+ * return bam_fetch(self.samfile.x.bam, # <<<<<<<<<<<<<<
+ * self.index,
+ * rtid,
+ */
+ __Pyx_XDECREF(__pyx_r);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":713
+ * rend,
+ * <void*>callback,
+ * fetch_callback ) # <<<<<<<<<<<<<<
+ * else:
+ * if has_coord:
+ */
+ __pyx_t_5 = PyInt_FromLong(bam_fetch(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->x.bam, ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->index, __pyx_v_rtid, __pyx_v_rstart, __pyx_v_rend, ((void *)__pyx_v_callback), __pyx_f_9csamtools_fetch_callback)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 707; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_r = __pyx_t_5;
+ __pyx_t_5 = 0;
+ goto __pyx_L0;
+ goto __pyx_L9;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":715
+ * fetch_callback )
+ * else:
+ * if has_coord: # <<<<<<<<<<<<<<
+ * return IteratorRowRegion( self, rtid, rstart, rend )
+ * else:
+ */
+ if (__pyx_v_has_coord) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":716
+ * else:
+ * if has_coord:
+ * return IteratorRowRegion( self, rtid, rstart, rend ) # <<<<<<<<<<<<<<
+ * else:
+ * if until_eof:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_5 = PyInt_FromLong(__pyx_v_rtid); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 716; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_7 = PyInt_FromLong(__pyx_v_rstart); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 716; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_6 = PyInt_FromLong(__pyx_v_rend); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 716; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_2 = PyTuple_New(4); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 716; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(__pyx_v_self);
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_self);
+ __Pyx_GIVEREF(__pyx_v_self);
+ PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ PyTuple_SET_ITEM(__pyx_t_2, 2, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ PyTuple_SET_ITEM(__pyx_t_2, 3, __pyx_t_6);
+ __Pyx_GIVEREF(__pyx_t_6);
+ __pyx_t_5 = 0;
+ __pyx_t_7 = 0;
+ __pyx_t_6 = 0;
+ __pyx_t_6 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_IteratorRowRegion)), ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 716; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_6;
+ __pyx_t_6 = 0;
+ goto __pyx_L0;
+ goto __pyx_L12;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":718
+ * return IteratorRowRegion( self, rtid, rstart, rend )
+ * else:
+ * if until_eof: # <<<<<<<<<<<<<<
+ * return IteratorRowAll( self )
+ * else:
+ */
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_v_until_eof); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 718; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":719
+ * else:
+ * if until_eof:
+ * return IteratorRowAll( self ) # <<<<<<<<<<<<<<
+ * else:
+ * return IteratorRowAllRefs(self)
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 719; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __Pyx_INCREF(__pyx_v_self);
+ PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_v_self);
+ __Pyx_GIVEREF(__pyx_v_self);
+ __pyx_t_2 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_IteratorRowAll)), ((PyObject *)__pyx_t_6), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 719; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
+ __pyx_r = __pyx_t_2;
+ __pyx_t_2 = 0;
+ goto __pyx_L0;
+ goto __pyx_L13;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":721
+ * return IteratorRowAll( self )
+ * else:
+ * return IteratorRowAllRefs(self) # <<<<<<<<<<<<<<
+ * else:
+ * # check if header is present - otherwise sam_read1 aborts
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 721; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(__pyx_v_self);
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_self);
+ __Pyx_GIVEREF(__pyx_v_self);
+ __pyx_t_6 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_IteratorRowAllRefs)), ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 721; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_6;
+ __pyx_t_6 = 0;
+ goto __pyx_L0;
+ }
+ __pyx_L13:;
+ }
+ __pyx_L12:;
+ }
+ __pyx_L9:;
+ goto __pyx_L7;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":725
+ * # check if header is present - otherwise sam_read1 aborts
+ * # this happens if a bamfile is opened with mode 'r'
+ * if self.samfile.header.n_targets == 0: # <<<<<<<<<<<<<<
+ * raise ValueError( "fetch called for samfile without header")
+ *
+ */
+ __pyx_t_3 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->n_targets == 0);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":726
+ * # this happens if a bamfile is opened with mode 'r'
+ * if self.samfile.header.n_targets == 0:
+ * raise ValueError( "fetch called for samfile without header") # <<<<<<<<<<<<<<
+ *
+ * if region != None:
+ */
+ __pyx_t_6 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_50), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 726; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_Raise(__pyx_t_6, 0, 0);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 726; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L14;
+ }
+ __pyx_L14:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":728
+ * raise ValueError( "fetch called for samfile without header")
+ *
+ * if region != None: # <<<<<<<<<<<<<<
+ * raise ValueError ("fetch for a region is not available for sam files" )
+ * if callback:
+ */
+ __pyx_t_6 = PyObject_RichCompare(__pyx_v_region, Py_None, Py_NE); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 728; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 728; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":729
+ *
+ * if region != None:
+ * raise ValueError ("fetch for a region is not available for sam files" ) # <<<<<<<<<<<<<<
+ * if callback:
+ * raise NotImplementedError( "callback not implemented yet" )
+ */
+ __pyx_t_6 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_52), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 729; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_Raise(__pyx_t_6, 0, 0);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 729; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L15;
+ }
+ __pyx_L15:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":730
+ * if region != None:
+ * raise ValueError ("fetch for a region is not available for sam files" )
+ * if callback: # <<<<<<<<<<<<<<
+ * raise NotImplementedError( "callback not implemented yet" )
+ * else:
+ */
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_v_callback); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 730; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":731
+ * raise ValueError ("fetch for a region is not available for sam files" )
+ * if callback:
+ * raise NotImplementedError( "callback not implemented yet" ) # <<<<<<<<<<<<<<
+ * else:
+ * return IteratorRowAll( self )
+ */
+ __pyx_t_6 = PyObject_Call(__pyx_builtin_NotImplementedError, ((PyObject *)__pyx_k_tuple_54), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 731; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_Raise(__pyx_t_6, 0, 0);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 731; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L16;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":733
+ * raise NotImplementedError( "callback not implemented yet" )
+ * else:
+ * return IteratorRowAll( self ) # <<<<<<<<<<<<<<
+ *
+ * def mate( self,
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __Pyx_INCREF(__pyx_v_self);
+ PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_v_self);
+ __Pyx_GIVEREF(__pyx_v_self);
+ __pyx_t_2 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_IteratorRowAll)), ((PyObject *)__pyx_t_6), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
+ __pyx_r = __pyx_t_2;
+ __pyx_t_2 = 0;
+ goto __pyx_L0;
+ }
+ __pyx_L16:;
+ }
+ __pyx_L7:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_XDECREF(__pyx_t_12);
+ __Pyx_AddTraceback("csamtools.Samfile.fetch");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":735
+ * return IteratorRowAll( self )
+ *
+ * def mate( self, # <<<<<<<<<<<<<<
+ * AlignedRead read ):
+ * '''return the mate of :class:`AlignedRead` *read*.
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_10mate(PyObject *__pyx_v_self, PyObject *__pyx_v_read); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_10mate[] = "return the mate of :class:`AlignedRead` *read*.\n\n Throws a ValueError if read is unpaired or the mate\n is unmapped.\n\n .. note::\n Calling this method will change the file position.\n This might interfere with any iterators that have\n not re-opened the file.\n\n ";
+static PyObject *__pyx_pf_9csamtools_7Samfile_10mate(PyObject *__pyx_v_self, PyObject *__pyx_v_read) {
+ __pyx_t_9csamtools_MateData __pyx_v_mate_data;
+ int __pyx_v_x;
+ struct __pyx_obj_9csamtools_AlignedRead *__pyx_v_dest = 0;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ int __pyx_t_3;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("mate");
+ __Pyx_TraceCall("mate", __pyx_f[0], 735);
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_read), __pyx_ptype_9csamtools_AlignedRead, 1, "read", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 736; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":748
+ *
+ * '''
+ * if not read.is_paired: # <<<<<<<<<<<<<<
+ * raise ValueError( "read is unpaired" )
+ * if read.mate_is_unmapped:
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_read, __pyx_n_s__is_paired); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 748; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 748; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = (!__pyx_t_2);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":749
+ * '''
+ * if not read.is_paired:
+ * raise ValueError( "read is unpaired" ) # <<<<<<<<<<<<<<
+ * if read.mate_is_unmapped:
+ * raise ValueError( "mate is unmapped" )
+ */
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_56), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 749; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 749; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":750
+ * if not read.is_paired:
+ * raise ValueError( "read is unpaired" )
+ * if read.mate_is_unmapped: # <<<<<<<<<<<<<<
+ * raise ValueError( "mate is unmapped" )
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_read, __pyx_n_s__mate_is_unmapped); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 750; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 750; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":751
+ * raise ValueError( "read is unpaired" )
+ * if read.mate_is_unmapped:
+ * raise ValueError( "mate is unmapped" ) # <<<<<<<<<<<<<<
+ *
+ * cdef MateData mate_data
+ */
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_58), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 751; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 751; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":755
+ * cdef MateData mate_data
+ *
+ * mate_data.name = <char *>bam1_qname(read._delegate) # <<<<<<<<<<<<<<
+ * mate_data.mate = NULL
+ * # xor flags to get the other mate
+ */
+ __pyx_v_mate_data.name = bam1_qname(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_read)->_delegate);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":756
+ *
+ * mate_data.name = <char *>bam1_qname(read._delegate)
+ * mate_data.mate = NULL # <<<<<<<<<<<<<<
+ * # xor flags to get the other mate
+ * cdef int x = BAM_FREAD1 + BAM_FREAD2
+ */
+ __pyx_v_mate_data.mate = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":758
+ * mate_data.mate = NULL
+ * # xor flags to get the other mate
+ * cdef int x = BAM_FREAD1 + BAM_FREAD2 # <<<<<<<<<<<<<<
+ * mate_data.flag = ( read._delegate.core.flag ^ x) & x
+ *
+ */
+ __pyx_v_x = 192;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":759
+ * # xor flags to get the other mate
+ * cdef int x = BAM_FREAD1 + BAM_FREAD2
+ * mate_data.flag = ( read._delegate.core.flag ^ x) & x # <<<<<<<<<<<<<<
+ *
+ * bam_fetch(self.samfile.x.bam,
+ */
+ __pyx_v_mate_data.flag = ((((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_read)->_delegate->core.flag ^ __pyx_v_x) & __pyx_v_x);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":767
+ * read._delegate.core.mpos + 1,
+ * <void*>&mate_data,
+ * mate_callback ) # <<<<<<<<<<<<<<
+ *
+ * if mate_data.mate == NULL:
+ */
+ bam_fetch(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->x.bam, ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->index, ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_read)->_delegate->core.mtid, ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_read)->_delegate->core.mpos, (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_read)->_delegate->core.mpos + 1), ((void *)(&__pyx_v_mate_data)), __pyx_f_9csamtools_mate_callback);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":769
+ * mate_callback )
+ *
+ * if mate_data.mate == NULL: # <<<<<<<<<<<<<<
+ * raise ValueError( "mate not found" )
+ *
+ */
+ __pyx_t_3 = (__pyx_v_mate_data.mate == NULL);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":770
+ *
+ * if mate_data.mate == NULL:
+ * raise ValueError( "mate not found" ) # <<<<<<<<<<<<<<
+ *
+ * cdef AlignedRead dest = AlignedRead.__new__(AlignedRead)
+ */
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_60), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 770; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 770; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":772
+ * raise ValueError( "mate not found" )
+ *
+ * cdef AlignedRead dest = AlignedRead.__new__(AlignedRead) # <<<<<<<<<<<<<<
+ * dest._delegate = mate_data.mate
+ * return dest
+ */
+ __pyx_t_1 = __Pyx_tp_new(((PyObject*)__pyx_ptype_9csamtools_AlignedRead)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 772; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (!(likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_9csamtools_AlignedRead)))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 772; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_dest = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":773
+ *
+ * cdef AlignedRead dest = AlignedRead.__new__(AlignedRead)
+ * dest._delegate = mate_data.mate # <<<<<<<<<<<<<<
+ * return dest
+ *
+ */
+ __pyx_v_dest->_delegate = __pyx_v_mate_data.mate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":774
+ * cdef AlignedRead dest = AlignedRead.__new__(AlignedRead)
+ * dest._delegate = mate_data.mate
+ * return dest # <<<<<<<<<<<<<<
+ *
+ * def count( self,
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_v_dest));
+ __pyx_r = ((PyObject *)__pyx_v_dest);
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.Samfile.mate");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XDECREF((PyObject *)__pyx_v_dest);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":776
+ * return dest
+ *
+ * def count( self, # <<<<<<<<<<<<<<
+ * reference = None,
+ * start = None,
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_11count(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_11count[] = "*(reference = None, start = None, end = None, region = None, callback = None, until_eof = False)*\n \n count reads :term:`region` using 0-based indexing. The region is specified by\n :term:`reference`, *start* and *end*. Alternatively, a samtools :term:`region` string can be supplied.\n\n Note that a :term:`TAM` file does not allow random access. If *region* or *reference* are given,\n an exception is raised.\n ";
+static PyObject *__pyx_pf_9csamtools_7Samfile_11count(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_reference = 0;
+ PyObject *__pyx_v_start = 0;
+ PyObject *__pyx_v_end = 0;
+ PyObject *__pyx_v_region = 0;
+ PyObject *__pyx_v_until_eof = 0;
+ int __pyx_v_rtid;
+ int __pyx_v_rstart;
+ int __pyx_v_rend;
+ int __pyx_v_counter;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ PyObject *__pyx_t_5 = NULL;
+ PyObject *__pyx_t_6 = NULL;
+ PyObject *__pyx_t_7 = NULL;
+ int __pyx_t_8;
+ int __pyx_t_9;
+ int __pyx_t_10;
+ PyObject *__pyx_t_11 = NULL;
+ int __pyx_t_12;
+ int __pyx_t_13;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__reference,&__pyx_n_s__start,&__pyx_n_s__end,&__pyx_n_s__region,&__pyx_n_s__until_eof,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("count");
+ __Pyx_TraceCall("count", __pyx_f[0], 776);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[5] = {0,0,0,0,0};
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":777
+ *
+ * def count( self,
+ * reference = None, # <<<<<<<<<<<<<<
+ * start = None,
+ * end = None,
+ */
+ values[0] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":778
+ * def count( self,
+ * reference = None,
+ * start = None, # <<<<<<<<<<<<<<
+ * end = None,
+ * region = None,
+ */
+ values[1] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":779
+ * reference = None,
+ * start = None,
+ * end = None, # <<<<<<<<<<<<<<
+ * region = None,
+ * until_eof = False ):
+ */
+ values[2] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":780
+ * start = None,
+ * end = None,
+ * region = None, # <<<<<<<<<<<<<<
+ * until_eof = False ):
+ * '''*(reference = None, start = None, end = None, region = None, callback = None, until_eof = False)*
+ */
+ values[3] = ((PyObject *)Py_None);
+ values[4] = __pyx_k_61;
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ 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;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__reference);
+ if (value) { values[0] = value; kw_args--; }
+ }
+ case 1:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__start);
+ if (value) { values[1] = value; kw_args--; }
+ }
+ case 2:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__end);
+ if (value) { values[2] = value; kw_args--; }
+ }
+ case 3:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__region);
+ if (value) { values[3] = value; kw_args--; }
+ }
+ case 4:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__until_eof);
+ if (value) { values[4] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "count") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 776; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_reference = values[0];
+ __pyx_v_start = values[1];
+ __pyx_v_end = values[2];
+ __pyx_v_region = values[3];
+ __pyx_v_until_eof = values[4];
+ } else {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":777
+ *
+ * def count( self,
+ * reference = None, # <<<<<<<<<<<<<<
+ * start = None,
+ * end = None,
+ */
+ __pyx_v_reference = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":778
+ * def count( self,
+ * reference = None,
+ * start = None, # <<<<<<<<<<<<<<
+ * end = None,
+ * region = None,
+ */
+ __pyx_v_start = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":779
+ * reference = None,
+ * start = None,
+ * end = None, # <<<<<<<<<<<<<<
+ * region = None,
+ * until_eof = False ):
+ */
+ __pyx_v_end = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":780
+ * start = None,
+ * end = None,
+ * region = None, # <<<<<<<<<<<<<<
+ * until_eof = False ):
+ * '''*(reference = None, start = None, end = None, region = None, callback = None, until_eof = False)*
+ */
+ __pyx_v_region = ((PyObject *)Py_None);
+ __pyx_v_until_eof = __pyx_k_61;
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 5: __pyx_v_until_eof = PyTuple_GET_ITEM(__pyx_args, 4);
+ case 4: __pyx_v_region = PyTuple_GET_ITEM(__pyx_args, 3);
+ case 3: __pyx_v_end = PyTuple_GET_ITEM(__pyx_args, 2);
+ case 2: __pyx_v_start = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: __pyx_v_reference = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("count", 0, 0, 5, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 776; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Samfile.count");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+ __Pyx_INCREF(__pyx_v_region);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":794
+ * cdef int rend
+ *
+ * if not self._isOpen(): # <<<<<<<<<<<<<<
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 794; __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 = 794; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 794; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":795
+ *
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * region, rtid, rstart, rend = self._parseRegion( reference, start, end, region )
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_62), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 795; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 795; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":797
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ * region, rtid, rstart, rend = self._parseRegion( reference, start, end, region ) # <<<<<<<<<<<<<<
+ *
+ * cdef int counter
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___parseRegion); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyTuple_New(4); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_reference);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_reference);
+ __Pyx_GIVEREF(__pyx_v_reference);
+ __Pyx_INCREF(__pyx_v_start);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_start);
+ __Pyx_GIVEREF(__pyx_v_start);
+ __Pyx_INCREF(__pyx_v_end);
+ PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_v_end);
+ __Pyx_GIVEREF(__pyx_v_end);
+ __Pyx_INCREF(__pyx_v_region);
+ PyTuple_SET_ITEM(__pyx_t_1, 3, __pyx_v_region);
+ __Pyx_GIVEREF(__pyx_v_region);
+ __pyx_t_5 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_1), NULL); 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_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ if (PyTuple_CheckExact(__pyx_t_5) && likely(PyTuple_GET_SIZE(__pyx_t_5) == 4)) {
+ PyObject* tuple = __pyx_t_5;
+ __pyx_t_1 = PyTuple_GET_ITEM(tuple, 0); __Pyx_INCREF(__pyx_t_1);
+ __pyx_t_2 = PyTuple_GET_ITEM(tuple, 1); __Pyx_INCREF(__pyx_t_2);
+ __pyx_t_8 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_8 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_6 = PyTuple_GET_ITEM(tuple, 2); __Pyx_INCREF(__pyx_t_6);
+ __pyx_t_9 = __Pyx_PyInt_AsInt(__pyx_t_6); if (unlikely((__pyx_t_9 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_7 = PyTuple_GET_ITEM(tuple, 3); __Pyx_INCREF(__pyx_t_7);
+ __pyx_t_10 = __Pyx_PyInt_AsInt(__pyx_t_7); if (unlikely((__pyx_t_10 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __Pyx_DECREF(__pyx_v_region);
+ __pyx_v_region = __pyx_t_1;
+ __pyx_t_1 = 0;
+ __pyx_v_rtid = __pyx_t_8;
+ __pyx_v_rstart = __pyx_t_9;
+ __pyx_v_rend = __pyx_t_10;
+ } else {
+ __pyx_t_11 = PyObject_GetIter(__pyx_t_5); 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_5); __pyx_t_5 = 0;
+ __pyx_t_1 = __Pyx_UnpackItem(__pyx_t_11, 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_UnpackItem(__pyx_t_11, 1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_10 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_10 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_6 = __Pyx_UnpackItem(__pyx_t_11, 2); 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_9 = __Pyx_PyInt_AsInt(__pyx_t_6); if (unlikely((__pyx_t_9 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_7 = __Pyx_UnpackItem(__pyx_t_11, 3); 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 = __Pyx_PyInt_AsInt(__pyx_t_7); if (unlikely((__pyx_t_8 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ if (__Pyx_EndUnpack(__pyx_t_11, 4) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_11); __pyx_t_11 = 0;
+ __Pyx_DECREF(__pyx_v_region);
+ __pyx_v_region = __pyx_t_1;
+ __pyx_t_1 = 0;
+ __pyx_v_rtid = __pyx_t_10;
+ __pyx_v_rstart = __pyx_t_9;
+ __pyx_v_rend = __pyx_t_8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":800
+ *
+ * cdef int counter
+ * counter = 0; # <<<<<<<<<<<<<<
+ *
+ * if self.isbam:
+ */
+ __pyx_v_counter = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":802
+ * counter = 0;
+ *
+ * if self.isbam: # <<<<<<<<<<<<<<
+ * if not until_eof and not self._hasIndex() and not self.isremote:
+ * raise ValueError( "fetch called on bamfile without index" )
+ */
+ if (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isbam) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":803
+ *
+ * if self.isbam:
+ * if not until_eof and not self._hasIndex() and not self.isremote: # <<<<<<<<<<<<<<
+ * raise ValueError( "fetch called on bamfile without index" )
+ *
+ */
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_v_until_eof); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 803; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_3 = (!__pyx_t_4);
+ if (__pyx_t_3) {
+ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___hasIndex); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 803; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_7 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 803; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_7); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 803; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __pyx_t_12 = (!__pyx_t_4);
+ if (__pyx_t_12) {
+ __pyx_t_4 = (!((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isremote);
+ __pyx_t_13 = __pyx_t_4;
+ } else {
+ __pyx_t_13 = __pyx_t_12;
+ }
+ __pyx_t_12 = __pyx_t_13;
+ } else {
+ __pyx_t_12 = __pyx_t_3;
+ }
+ if (__pyx_t_12) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":804
+ * if self.isbam:
+ * if not until_eof and not self._hasIndex() and not self.isremote:
+ * raise ValueError( "fetch called on bamfile without index" ) # <<<<<<<<<<<<<<
+ *
+ * if not region:
+ */
+ __pyx_t_7 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_63), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 804; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_Raise(__pyx_t_7, 0, 0);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 804; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":806
+ * raise ValueError( "fetch called on bamfile without index" )
+ *
+ * if not region: # <<<<<<<<<<<<<<
+ * raise ValueError( "counting functionality requires a region/reference" )
+ * if not self._hasIndex(): raise ValueError( "no index available for fetch" )
+ */
+ __pyx_t_12 = __Pyx_PyObject_IsTrue(__pyx_v_region); if (unlikely(__pyx_t_12 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 806; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_3 = (!__pyx_t_12);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":807
+ *
+ * if not region:
+ * raise ValueError( "counting functionality requires a region/reference" ) # <<<<<<<<<<<<<<
+ * if not self._hasIndex(): raise ValueError( "no index available for fetch" )
+ * bam_fetch(self.samfile.x.bam,
+ */
+ __pyx_t_7 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_65), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 807; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_Raise(__pyx_t_7, 0, 0);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 807; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L9;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":808
+ * if not region:
+ * raise ValueError( "counting functionality requires a region/reference" )
+ * if not self._hasIndex(): raise ValueError( "no index available for fetch" ) # <<<<<<<<<<<<<<
+ * bam_fetch(self.samfile.x.bam,
+ * self.index,
+ */
+ __pyx_t_7 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___hasIndex); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 808; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_5 = PyObject_Call(__pyx_t_7, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 808; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 808; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_t_12 = (!__pyx_t_3);
+ if (__pyx_t_12) {
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_66), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 808; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_Raise(__pyx_t_5, 0, 0);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 808; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":815
+ * rend,
+ * <void*>&counter,
+ * count_callback ) # <<<<<<<<<<<<<<
+ * return counter
+ * else:
+ */
+ bam_fetch(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->x.bam, ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->index, __pyx_v_rtid, __pyx_v_rstart, __pyx_v_rend, ((void *)(&__pyx_v_counter)), __pyx_f_9csamtools_count_callback);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":816
+ * <void*>&counter,
+ * count_callback )
+ * return counter # <<<<<<<<<<<<<<
+ * else:
+ * raise ValueError ("count for a region is not available for sam files" )
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_5 = PyInt_FromLong(__pyx_v_counter); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 816; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_r = __pyx_t_5;
+ __pyx_t_5 = 0;
+ goto __pyx_L0;
+ goto __pyx_L7;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":818
+ * return counter
+ * else:
+ * raise ValueError ("count for a region is not available for sam files" ) # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_68), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_Raise(__pyx_t_5, 0, 0);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_L7:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_XDECREF(__pyx_t_11);
+ __Pyx_AddTraceback("csamtools.Samfile.count");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_region);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":821
+ *
+ *
+ * def pileup( self, # <<<<<<<<<<<<<<
+ * reference = None,
+ * start = None,
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_12pileup(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_12pileup[] = "\n perform a :term:`pileup` within a :term:`region`. The region is specified by\n :term:`reference`, *start* and *end* (using 0-based indexing). \n Alternatively, a samtools *region* string can be supplied.\n\n Without *reference* or *region* all reads will be used for the pileup. The reads will be returned\n ordered by :term:`reference` sequence, which will not necessarily be the order within the file.\n\n The method returns an iterator of type :class:`pysam.IteratorColumn` unless\n a *callback is provided. If a *callback* is given, the callback will be executed \n for each column within the :term:`region`. \n\n Note that :term:`SAM` formatted files do not allow random access. \n In these files, if a *region* or *reference* are given an exception is raised.\n \n Optional *kwargs* to the iterator:\n\n stepper\n The stepper controlls how the iterator advances. \n Possible options for the stepper are \n \n ``all``\n use all reads for pileup.\n ``samtools``\n same filter and read processing as in :term:`csamtools` pileup\n\n fastafile\n A :class:`FastaFile` object\n\n mask\n Skip all reads with bits set in mask.\n\n\n .. note::\n\n *all* reads which overlap the region are returned. The first base returned will be the \n first base of the first read *not* necessarily the first base of the region used in the query.\n\n ";
+static PyObject *__pyx_pf_9csamtools_7Samfile_12pileup(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_reference = 0;
+ PyObject *__pyx_v_start = 0;
+ PyObject *__pyx_v_end = 0;
+ PyObject *__pyx_v_region = 0;
+ PyObject *__pyx_v_callback = 0;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_v_rtid;
+ int __pyx_v_rstart;
+ int __pyx_v_rend;
+ int __pyx_v_has_coord;
+ bam_plbuf_t *__pyx_v_buf;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ PyObject *__pyx_t_5 = NULL;
+ PyObject *__pyx_t_6 = NULL;
+ PyObject *__pyx_t_7 = NULL;
+ int __pyx_t_8;
+ int __pyx_t_9;
+ int __pyx_t_10;
+ int __pyx_t_11;
+ PyObject *__pyx_t_12 = NULL;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__reference,&__pyx_n_s__start,&__pyx_n_s__end,&__pyx_n_s__region,&__pyx_n_s__callback,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("pileup");
+ __Pyx_TraceCall("pileup", __pyx_f[0], 821);
+ __pyx_v_kwargs = PyDict_New(); if (unlikely(!__pyx_v_kwargs)) return NULL;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[5] = {0,0,0,0,0};
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":822
+ *
+ * def pileup( self,
+ * reference = None, # <<<<<<<<<<<<<<
+ * start = None,
+ * end = None,
+ */
+ values[0] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":823
+ * def pileup( self,
+ * reference = None,
+ * start = None, # <<<<<<<<<<<<<<
+ * end = None,
+ * region = None,
+ */
+ values[1] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":824
+ * reference = None,
+ * start = None,
+ * end = None, # <<<<<<<<<<<<<<
+ * region = None,
+ * callback = None,
+ */
+ values[2] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":825
+ * start = None,
+ * end = None,
+ * region = None, # <<<<<<<<<<<<<<
+ * callback = None,
+ * **kwargs ):
+ */
+ values[3] = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":826
+ * end = None,
+ * region = None,
+ * callback = None, # <<<<<<<<<<<<<<
+ * **kwargs ):
+ * '''
+ */
+ values[4] = ((PyObject *)Py_None);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ 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;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__reference);
+ if (value) { values[0] = value; kw_args--; }
+ }
+ case 1:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__start);
+ if (value) { values[1] = value; kw_args--; }
+ }
+ case 2:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__end);
+ if (value) { values[2] = value; kw_args--; }
+ }
+ case 3:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__region);
+ if (value) { values[3] = value; kw_args--; }
+ }
+ case 4:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__callback);
+ if (value) { values[4] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_kwargs, values, PyTuple_GET_SIZE(__pyx_args), "pileup") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 821; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_reference = values[0];
+ __pyx_v_start = values[1];
+ __pyx_v_end = values[2];
+ __pyx_v_region = values[3];
+ __pyx_v_callback = values[4];
+ } else {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":822
+ *
+ * def pileup( self,
+ * reference = None, # <<<<<<<<<<<<<<
+ * start = None,
+ * end = None,
+ */
+ __pyx_v_reference = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":823
+ * def pileup( self,
+ * reference = None,
+ * start = None, # <<<<<<<<<<<<<<
+ * end = None,
+ * region = None,
+ */
+ __pyx_v_start = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":824
+ * reference = None,
+ * start = None,
+ * end = None, # <<<<<<<<<<<<<<
+ * region = None,
+ * callback = None,
+ */
+ __pyx_v_end = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":825
+ * start = None,
+ * end = None,
+ * region = None, # <<<<<<<<<<<<<<
+ * callback = None,
+ * **kwargs ):
+ */
+ __pyx_v_region = ((PyObject *)Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":826
+ * end = None,
+ * region = None,
+ * callback = None, # <<<<<<<<<<<<<<
+ * **kwargs ):
+ * '''
+ */
+ __pyx_v_callback = ((PyObject *)Py_None);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 5: __pyx_v_callback = PyTuple_GET_ITEM(__pyx_args, 4);
+ case 4: __pyx_v_region = PyTuple_GET_ITEM(__pyx_args, 3);
+ case 3: __pyx_v_end = PyTuple_GET_ITEM(__pyx_args, 2);
+ case 2: __pyx_v_start = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: __pyx_v_reference = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("pileup", 0, 0, 5, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 821; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_AddTraceback("csamtools.Samfile.pileup");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":870
+ * cdef bam_plbuf_t *buf
+ *
+ * if not self._isOpen(): # <<<<<<<<<<<<<<
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 870; __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 = 870; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 870; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":871
+ *
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * has_coord, rtid, rstart, rend = self._parseRegion( reference, start, end, region )
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_69), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 871; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 871; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":873
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ * has_coord, rtid, rstart, rend = self._parseRegion( reference, start, end, region ) # <<<<<<<<<<<<<<
+ *
+ * if self.isbam:
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___parseRegion); 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_1 = PyTuple_New(4); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_reference);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_reference);
+ __Pyx_GIVEREF(__pyx_v_reference);
+ __Pyx_INCREF(__pyx_v_start);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_start);
+ __Pyx_GIVEREF(__pyx_v_start);
+ __Pyx_INCREF(__pyx_v_end);
+ PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_v_end);
+ __Pyx_GIVEREF(__pyx_v_end);
+ __Pyx_INCREF(__pyx_v_region);
+ PyTuple_SET_ITEM(__pyx_t_1, 3, __pyx_v_region);
+ __Pyx_GIVEREF(__pyx_v_region);
+ __pyx_t_5 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ if (PyTuple_CheckExact(__pyx_t_5) && likely(PyTuple_GET_SIZE(__pyx_t_5) == 4)) {
+ PyObject* tuple = __pyx_t_5;
+ __pyx_t_1 = PyTuple_GET_ITEM(tuple, 0); __Pyx_INCREF(__pyx_t_1);
+ __pyx_t_8 = __Pyx_PyInt_AsInt(__pyx_t_1); if (unlikely((__pyx_t_8 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_2 = PyTuple_GET_ITEM(tuple, 1); __Pyx_INCREF(__pyx_t_2);
+ __pyx_t_9 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_9 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_6 = PyTuple_GET_ITEM(tuple, 2); __Pyx_INCREF(__pyx_t_6);
+ __pyx_t_10 = __Pyx_PyInt_AsInt(__pyx_t_6); if (unlikely((__pyx_t_10 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_7 = PyTuple_GET_ITEM(tuple, 3); __Pyx_INCREF(__pyx_t_7);
+ __pyx_t_11 = __Pyx_PyInt_AsInt(__pyx_t_7); if (unlikely((__pyx_t_11 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_v_has_coord = __pyx_t_8;
+ __pyx_v_rtid = __pyx_t_9;
+ __pyx_v_rstart = __pyx_t_10;
+ __pyx_v_rend = __pyx_t_11;
+ } else {
+ __pyx_t_12 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_12);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_t_1 = __Pyx_UnpackItem(__pyx_t_12, 0); 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_t_11 = __Pyx_PyInt_AsInt(__pyx_t_1); if (unlikely((__pyx_t_11 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_2 = __Pyx_UnpackItem(__pyx_t_12, 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_10 = __Pyx_PyInt_AsInt(__pyx_t_2); if (unlikely((__pyx_t_10 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_6 = __Pyx_UnpackItem(__pyx_t_12, 2); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_9 = __Pyx_PyInt_AsInt(__pyx_t_6); if (unlikely((__pyx_t_9 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_7 = __Pyx_UnpackItem(__pyx_t_12, 3); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_8 = __Pyx_PyInt_AsInt(__pyx_t_7); if (unlikely((__pyx_t_8 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ if (__Pyx_EndUnpack(__pyx_t_12, 4) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 873; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
+ __pyx_v_has_coord = __pyx_t_11;
+ __pyx_v_rtid = __pyx_t_10;
+ __pyx_v_rstart = __pyx_t_9;
+ __pyx_v_rend = __pyx_t_8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":875
+ * has_coord, rtid, rstart, rend = self._parseRegion( reference, start, end, region )
+ *
+ * if self.isbam: # <<<<<<<<<<<<<<
+ * if not self._hasIndex(): raise ValueError( "no index available for pileup" )
+ *
+ */
+ if (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->isbam) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":876
+ *
+ * if self.isbam:
+ * if not self._hasIndex(): raise ValueError( "no index available for pileup" ) # <<<<<<<<<<<<<<
+ *
+ * if callback:
+ */
+ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___hasIndex); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 876; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_7 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 876; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_7); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 876; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __pyx_t_3 = (!__pyx_t_4);
+ if (__pyx_t_3) {
+ __pyx_t_7 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_71), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 876; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_Raise(__pyx_t_7, 0, 0);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 876; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":878
+ * if not self._hasIndex(): raise ValueError( "no index available for pileup" )
+ *
+ * if callback: # <<<<<<<<<<<<<<
+ * if not has_coord: raise ValueError( "callback functionality requires a region/reference" )
+ *
+ */
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_v_callback); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 878; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":879
+ *
+ * if callback:
+ * if not has_coord: raise ValueError( "callback functionality requires a region/reference" ) # <<<<<<<<<<<<<<
+ *
+ * buf = bam_plbuf_init( <bam_pileup_f>pileup_callback, <void*>callback )
+ */
+ __pyx_t_3 = (!__pyx_v_has_coord);
+ if (__pyx_t_3) {
+ __pyx_t_7 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_72), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 879; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_Raise(__pyx_t_7, 0, 0);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 879; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":881
+ * if not has_coord: raise ValueError( "callback functionality requires a region/reference" )
+ *
+ * buf = bam_plbuf_init( <bam_pileup_f>pileup_callback, <void*>callback ) # <<<<<<<<<<<<<<
+ * bam_fetch(self.samfile.x.bam,
+ * self.index, rtid, rstart, rend,
+ */
+ __pyx_v_buf = bam_plbuf_init(((bam_pileup_f)__pyx_f_9csamtools_pileup_callback), ((void *)__pyx_v_callback));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":884
+ * bam_fetch(self.samfile.x.bam,
+ * self.index, rtid, rstart, rend,
+ * buf, pileup_fetch_callback ) # <<<<<<<<<<<<<<
+ *
+ * # finalize pileup
+ */
+ bam_fetch(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->x.bam, ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->index, __pyx_v_rtid, __pyx_v_rstart, __pyx_v_rend, __pyx_v_buf, __pyx_f_9csamtools_pileup_fetch_callback);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":887
+ *
+ * # finalize pileup
+ * bam_plbuf_push( NULL, buf) # <<<<<<<<<<<<<<
+ * bam_plbuf_destroy(buf)
+ * else:
+ */
+ bam_plbuf_push(NULL, __pyx_v_buf);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":888
+ * # finalize pileup
+ * bam_plbuf_push( NULL, buf)
+ * bam_plbuf_destroy(buf) # <<<<<<<<<<<<<<
+ * else:
+ * if has_coord:
+ */
+ bam_plbuf_destroy(__pyx_v_buf);
+ goto __pyx_L9;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":890
+ * bam_plbuf_destroy(buf)
+ * else:
+ * if has_coord: # <<<<<<<<<<<<<<
+ * return IteratorColumnRegion( self,
+ * tid = rtid,
+ */
+ if (__pyx_v_has_coord) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":891
+ * else:
+ * if has_coord:
+ * return IteratorColumnRegion( self, # <<<<<<<<<<<<<<
+ * tid = rtid,
+ * start = rstart,
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_7 = PyTuple_New(1); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 891; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_7));
+ __Pyx_INCREF(__pyx_v_self);
+ PyTuple_SET_ITEM(__pyx_t_7, 0, __pyx_v_self);
+ __Pyx_GIVEREF(__pyx_v_self);
+ __pyx_t_5 = PyDict_New(); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 891; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":892
+ * if has_coord:
+ * return IteratorColumnRegion( self,
+ * tid = rtid, # <<<<<<<<<<<<<<
+ * start = rstart,
+ * end = rend,
+ */
+ __pyx_t_6 = PyInt_FromLong(__pyx_v_rtid); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 892; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ if (PyDict_SetItem(__pyx_t_5, ((PyObject *)__pyx_n_s__tid), __pyx_t_6) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 891; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":893
+ * return IteratorColumnRegion( self,
+ * tid = rtid,
+ * start = rstart, # <<<<<<<<<<<<<<
+ * end = rend,
+ * **kwargs )
+ */
+ __pyx_t_6 = PyInt_FromLong(__pyx_v_rstart); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 893; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ if (PyDict_SetItem(__pyx_t_5, ((PyObject *)__pyx_n_s__start), __pyx_t_6) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 891; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":894
+ * tid = rtid,
+ * start = rstart,
+ * end = rend, # <<<<<<<<<<<<<<
+ * **kwargs )
+ * else:
+ */
+ __pyx_t_6 = PyInt_FromLong(__pyx_v_rend); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 894; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ if (PyDict_SetItem(__pyx_t_5, ((PyObject *)__pyx_n_s__end), __pyx_t_6) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 891; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":895
+ * start = rstart,
+ * end = rend,
+ * **kwargs ) # <<<<<<<<<<<<<<
+ * else:
+ * return IteratorColumnAllRefs(self, **kwargs )
+ */
+ if (PyDict_Update(((PyObject *)__pyx_t_5), ((PyObject *)__pyx_v_kwargs)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 891; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_6 = PyEval_CallObjectWithKeywords(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_IteratorColumnRegion)), ((PyObject *)__pyx_t_7), ((PyObject *)__pyx_t_5)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 891; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(((PyObject *)__pyx_t_7)); __pyx_t_7 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __pyx_r = __pyx_t_6;
+ __pyx_t_6 = 0;
+ goto __pyx_L0;
+ goto __pyx_L11;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":897
+ * **kwargs )
+ * else:
+ * return IteratorColumnAllRefs(self, **kwargs ) # <<<<<<<<<<<<<<
+ *
+ * else:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 897; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __Pyx_INCREF(__pyx_v_self);
+ PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_v_self);
+ __Pyx_GIVEREF(__pyx_v_self);
+ __pyx_t_5 = PyEval_CallObjectWithKeywords(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_IteratorColumnAllRefs)), ((PyObject *)__pyx_t_6), ((PyObject *)__pyx_v_kwargs)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 897; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
+ __pyx_r = __pyx_t_5;
+ __pyx_t_5 = 0;
+ goto __pyx_L0;
+ }
+ __pyx_L11:;
+ }
+ __pyx_L9:;
+ goto __pyx_L7;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":900
+ *
+ * else:
+ * raise NotImplementedError( "pileup of samfiles not implemented yet" ) # <<<<<<<<<<<<<<
+ *
+ * def close( self ):
+ */
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_NotImplementedError, ((PyObject *)__pyx_k_tuple_74), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 900; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_Raise(__pyx_t_5, 0, 0);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 900; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_L7:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_XDECREF(__pyx_t_12);
+ __Pyx_AddTraceback("csamtools.Samfile.pileup");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":902
+ * raise NotImplementedError( "pileup of samfiles not implemented yet" )
+ *
+ * def close( self ): # <<<<<<<<<<<<<<
+ * '''
+ * closes the :class:`pysam.Samfile`.'''
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_13close(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_13close[] = "\n closes the :class:`pysam.Samfile`.";
+static PyObject *__pyx_pf_9csamtools_7Samfile_13close(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("close");
+ __Pyx_TraceCall("close", __pyx_f[0], 902);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":905
+ * '''
+ * closes the :class:`pysam.Samfile`.'''
+ * if self.samfile != NULL: # <<<<<<<<<<<<<<
+ * samclose( self.samfile )
+ * bam_index_destroy(self.index);
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile != NULL);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":906
+ * closes the :class:`pysam.Samfile`.'''
+ * if self.samfile != NULL:
+ * samclose( self.samfile ) # <<<<<<<<<<<<<<
+ * bam_index_destroy(self.index);
+ * self.samfile = NULL
+ */
+ samclose(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":907
+ * if self.samfile != NULL:
+ * samclose( self.samfile )
+ * bam_index_destroy(self.index); # <<<<<<<<<<<<<<
+ * self.samfile = NULL
+ *
+ */
+ bam_index_destroy(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->index);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":908
+ * samclose( self.samfile )
+ * bam_index_destroy(self.index);
+ * self.samfile = NULL # <<<<<<<<<<<<<<
+ *
+ * def __dealloc__( self ):
+ */
+ ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile = NULL;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":910
+ * self.samfile = NULL
+ *
+ * def __dealloc__( self ): # <<<<<<<<<<<<<<
+ * # remember: dealloc cannot call other methods
+ * # note: no doc string
+ */
+
+static void __pyx_pf_9csamtools_7Samfile_14__dealloc__(PyObject *__pyx_v_self); /*proto*/
+static void __pyx_pf_9csamtools_7Samfile_14__dealloc__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__dealloc__");
+ __Pyx_TraceCall("__dealloc__", __pyx_f[0], 910);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":914
+ * # note: no doc string
+ * # note: __del__ is not called.
+ * self.close() # <<<<<<<<<<<<<<
+ * bam_destroy1(self.b)
+ * if self._filename != NULL: free( self._filename )
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__close); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 914; __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 = 914; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":915
+ * # note: __del__ is not called.
+ * self.close()
+ * bam_destroy1(self.b) # <<<<<<<<<<<<<<
+ * if self._filename != NULL: free( self._filename )
+ *
+ */
+ bam_destroy1(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->b);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":916
+ * self.close()
+ * bam_destroy1(self.b)
+ * if self._filename != NULL: free( self._filename ) # <<<<<<<<<<<<<<
+ *
+ * def write( self, AlignedRead read ):
+ */
+ __pyx_t_3 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->_filename != NULL);
+ if (__pyx_t_3) {
+ free(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->_filename);
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.Samfile.__dealloc__");
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":918
+ * if self._filename != NULL: free( self._filename )
+ *
+ * def write( self, AlignedRead read ): # <<<<<<<<<<<<<<
+ * '''
+ * write a single :class:`pysam.AlignedRead` to disk.
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_15write(PyObject *__pyx_v_self, PyObject *__pyx_v_read); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_15write[] = "\n write a single :class:`pysam.AlignedRead` to disk.\n\n returns the number of bytes written.\n ";
+static PyObject *__pyx_pf_9csamtools_7Samfile_15write(PyObject *__pyx_v_self, PyObject *__pyx_v_read) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("write");
+ __Pyx_TraceCall("write", __pyx_f[0], 918);
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_read), __pyx_ptype_9csamtools_AlignedRead, 1, "read", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 918; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":924
+ * returns the number of bytes written.
+ * '''
+ * if not self._isOpen(): # <<<<<<<<<<<<<<
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 924; __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 = 924; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 924; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":925
+ * '''
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * return samwrite( self.samfile, read._delegate )
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_75), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 925; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 925; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":927
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ * return samwrite( self.samfile, read._delegate ) # <<<<<<<<<<<<<<
+ *
+ * def __enter__(self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = PyInt_FromLong(samwrite(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile, ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_read)->_delegate)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 927; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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("csamtools.Samfile.write");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":929
+ * return samwrite( self.samfile, read._delegate )
+ *
+ * def __enter__(self): # <<<<<<<<<<<<<<
+ * return self
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_16__enter__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7Samfile_16__enter__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
+ PyObject *__pyx_r = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__enter__");
+ __Pyx_TraceCall("__enter__", __pyx_f[0], 929);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":930
+ *
+ * def __enter__(self):
+ * return self # <<<<<<<<<<<<<<
+ *
+ * def __exit__(self, exc_type, exc_value, traceback):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_self);
+ __pyx_r = __pyx_v_self;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":932
+ * return self
+ *
+ * def __exit__(self, exc_type, exc_value, traceback): # <<<<<<<<<<<<<<
+ * self.close()
+ * return False
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_17__exit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7Samfile_17__exit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_exc_type = 0;
+ PyObject *__pyx_v_exc_value = 0;
+ PyObject *__pyx_v_traceback = 0;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__exc_type,&__pyx_n_s__exc_value,&__pyx_n_s__traceback,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__exit__");
+ __Pyx_TraceCall("__exit__", __pyx_f[0], 932);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[3] = {0,0,0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2);
+ case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__exc_type);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__exc_value);
+ if (likely(values[1])) kw_args--;
+ else {
+ __Pyx_RaiseArgtupleInvalid("__exit__", 1, 3, 3, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 932; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ case 2:
+ values[2] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__traceback);
+ if (likely(values[2])) kw_args--;
+ else {
+ __Pyx_RaiseArgtupleInvalid("__exit__", 1, 3, 3, 2); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 932; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "__exit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 932; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_exc_type = values[0];
+ __pyx_v_exc_value = values[1];
+ __pyx_v_traceback = values[2];
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 3) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_exc_type = PyTuple_GET_ITEM(__pyx_args, 0);
+ __pyx_v_exc_value = PyTuple_GET_ITEM(__pyx_args, 1);
+ __pyx_v_traceback = PyTuple_GET_ITEM(__pyx_args, 2);
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__exit__", 1, 3, 3, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 932; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Samfile.__exit__");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":933
+ *
+ * def __exit__(self, exc_type, exc_value, traceback):
+ * self.close() # <<<<<<<<<<<<<<
+ * return False
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__close); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 933; __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 = 933; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":934
+ * def __exit__(self, exc_type, exc_value, traceback):
+ * self.close()
+ * return False # <<<<<<<<<<<<<<
+ *
+ * ###############################################################
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 934; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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("csamtools.Samfile.__exit__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":943
+ * property filename:
+ * '''number of :term:`filename` associated with this object.'''
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * return self._filename
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_8filename_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7Samfile_8filename_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 943);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":944
+ * '''number of :term:`filename` associated with this object.'''
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return self._filename
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 944; __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 = 944; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 944; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_76), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 944; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 944; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":945
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * return self._filename # <<<<<<<<<<<<<<
+ *
+ * property nreferences:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = PyBytes_FromString(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->_filename); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 945; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __pyx_r = ((PyObject *)__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("csamtools.Samfile.filename.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":949
+ * property nreferences:
+ * '''number of :term:`reference` sequences in the file.'''
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * return self.samfile.header.n_targets
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_11nreferences_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7Samfile_11nreferences_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 949);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":950
+ * '''number of :term:`reference` sequences in the file.'''
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return self.samfile.header.n_targets
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 950; __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 = 950; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 950; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_77), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 950; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 950; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":951
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * return self.samfile.header.n_targets # <<<<<<<<<<<<<<
+ *
+ * property references:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = __Pyx_PyInt_to_py_int32_t(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->n_targets); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 951; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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("csamtools.Samfile.nreferences.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":955
+ * property references:
+ * """tuple with the names of :term:`reference` sequences."""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * t = []
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_10references_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7Samfile_10references_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_v_t;
+ long __pyx_v_x;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ int32_t __pyx_t_5;
+ int __pyx_t_6;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 955);
+ __pyx_v_t = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":956
+ * """tuple with the names of :term:`reference` sequences."""
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * t = []
+ * for x from 0 <= x < self.samfile.header.n_targets:
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 956; __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 = 956; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 956; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_78), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 956; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 956; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":957
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * t = [] # <<<<<<<<<<<<<<
+ * for x from 0 <= x < self.samfile.header.n_targets:
+ * t.append( self.samfile.header.target_name[x] )
+ */
+ __pyx_t_2 = PyList_New(0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 957; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_DECREF(((PyObject *)__pyx_v_t));
+ __pyx_v_t = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":958
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * t = []
+ * for x from 0 <= x < self.samfile.header.n_targets: # <<<<<<<<<<<<<<
+ * t.append( self.samfile.header.target_name[x] )
+ * return tuple(t)
+ */
+ __pyx_t_5 = ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->n_targets;
+ for (__pyx_v_x = 0; __pyx_v_x < __pyx_t_5; __pyx_v_x++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":959
+ * t = []
+ * for x from 0 <= x < self.samfile.header.n_targets:
+ * t.append( self.samfile.header.target_name[x] ) # <<<<<<<<<<<<<<
+ * return tuple(t)
+ *
+ */
+ if (unlikely(__pyx_v_t == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 959; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = PyBytes_FromString((((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->target_name[__pyx_v_x])); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 959; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __pyx_t_6 = PyList_Append(__pyx_v_t, ((PyObject *)__pyx_t_2)); if (unlikely(__pyx_t_6 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 959; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":960
+ * for x from 0 <= x < self.samfile.header.n_targets:
+ * t.append( self.samfile.header.target_name[x] )
+ * return tuple(t) # <<<<<<<<<<<<<<
+ *
+ * property lengths:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ if (unlikely(__pyx_v_t == Py_None)) {
+ PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 960; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = ((PyObject *)PyList_AsTuple(__pyx_v_t)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 960; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __pyx_r = ((PyObject *)__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("csamtools.Samfile.references.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_t);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":966
+ * :attr:`pysam.Samfile.references`
+ * """
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * t = []
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_7lengths_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7Samfile_7lengths_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_v_t;
+ long __pyx_v_x;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ int32_t __pyx_t_5;
+ int __pyx_t_6;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 966);
+ __pyx_v_t = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":967
+ * """
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * t = []
+ * for x from 0 <= x < self.samfile.header.n_targets:
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 967; __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 = 967; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 967; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_79), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 967; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 967; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":968
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * t = [] # <<<<<<<<<<<<<<
+ * for x from 0 <= x < self.samfile.header.n_targets:
+ * t.append( self.samfile.header.target_len[x] )
+ */
+ __pyx_t_2 = PyList_New(0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 968; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_DECREF(((PyObject *)__pyx_v_t));
+ __pyx_v_t = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":969
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * t = []
+ * for x from 0 <= x < self.samfile.header.n_targets: # <<<<<<<<<<<<<<
+ * t.append( self.samfile.header.target_len[x] )
+ * return tuple(t)
+ */
+ __pyx_t_5 = ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->n_targets;
+ for (__pyx_v_x = 0; __pyx_v_x < __pyx_t_5; __pyx_v_x++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":970
+ * t = []
+ * for x from 0 <= x < self.samfile.header.n_targets:
+ * t.append( self.samfile.header.target_len[x] ) # <<<<<<<<<<<<<<
+ * return tuple(t)
+ *
+ */
+ if (unlikely(__pyx_v_t == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 970; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = __Pyx_PyInt_to_py_uint32_t((((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->target_len[__pyx_v_x])); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 970; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_6 = PyList_Append(__pyx_v_t, __pyx_t_2); if (unlikely(__pyx_t_6 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 970; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":971
+ * for x from 0 <= x < self.samfile.header.n_targets:
+ * t.append( self.samfile.header.target_len[x] )
+ * return tuple(t) # <<<<<<<<<<<<<<
+ *
+ * property text:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ if (unlikely(__pyx_v_t == Py_None)) {
+ PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 971; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = ((PyObject *)PyList_AsTuple(__pyx_v_t)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 971; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __pyx_r = ((PyObject *)__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("csamtools.Samfile.lengths.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_t);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":975
+ * property text:
+ * '''full contents of the :term:`sam file` header as a string.'''
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * return PyString_FromStringAndSize(self.samfile.header.text, self.samfile.header.l_text)
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_4text_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7Samfile_4text_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 975);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":976
+ * '''full contents of the :term:`sam file` header as a string.'''
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return PyString_FromStringAndSize(self.samfile.header.text, self.samfile.header.l_text)
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 976; __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 = 976; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 976; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_80), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 976; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 976; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":977
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * return PyString_FromStringAndSize(self.samfile.header.text, self.samfile.header.l_text) # <<<<<<<<<<<<<<
+ *
+ * property header:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = PyString_FromStringAndSize(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->text, ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->l_text); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 977; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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("csamtools.Samfile.text.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":983
+ * a two-level dictionary.
+ * '''
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_6header_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7Samfile_6header_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_v_result;
+ PyObject *__pyx_v_t;
+ PyObject *__pyx_v_line;
+ PyObject *__pyx_v_fields;
+ PyObject *__pyx_v_record;
+ PyObject *__pyx_v_x;
+ PyObject *__pyx_v_field;
+ PyObject *__pyx_v_key;
+ PyObject *__pyx_v_value;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ Py_ssize_t __pyx_t_5;
+ PyObject *__pyx_t_6 = NULL;
+ PyObject *__pyx_t_7 = NULL;
+ PyObject *__pyx_t_8 = NULL;
+ Py_ssize_t __pyx_t_9;
+ PyObject *__pyx_t_10 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 983);
+ __pyx_v_result = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+ __pyx_v_t = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_line = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_fields = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_record = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_x = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+ __pyx_v_field = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_key = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_value = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":984
+ * '''
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * result = {}
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 984; __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 = 984; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 984; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_81), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 984; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 984; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":986
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ *
+ * result = {} # <<<<<<<<<<<<<<
+ *
+ * if self.samfile.header.text != NULL:
+ */
+ __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 986; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_DECREF(((PyObject *)__pyx_v_result));
+ __pyx_v_result = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":988
+ * result = {}
+ *
+ * if self.samfile.header.text != NULL: # <<<<<<<<<<<<<<
+ * # convert to python string (note: call self.text to create 0-terminated string)
+ * t = self.text
+ */
+ __pyx_t_4 = (((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile->header->text != NULL);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":990
+ * if self.samfile.header.text != NULL:
+ * # convert to python string (note: call self.text to create 0-terminated string)
+ * t = self.text # <<<<<<<<<<<<<<
+ * for line in t.split("\n"):
+ * if not line.strip(): continue
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__text); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 990; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_t);
+ __pyx_v_t = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":991
+ * # convert to python string (note: call self.text to create 0-terminated string)
+ * t = self.text
+ * for line in t.split("\n"): # <<<<<<<<<<<<<<
+ * if not line.strip(): continue
+ * assert line.startswith("@"), "header line without '@': '%s'" % line
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_t, __pyx_n_s__split); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 991; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_k_tuple_82), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 991; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (PyList_CheckExact(__pyx_t_1) || PyTuple_CheckExact(__pyx_t_1)) {
+ __pyx_t_5 = 0; __pyx_t_2 = __pyx_t_1; __Pyx_INCREF(__pyx_t_2);
+ } else {
+ __pyx_t_5 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 991; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ }
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ for (;;) {
+ if (likely(PyList_CheckExact(__pyx_t_2))) {
+ if (__pyx_t_5 >= PyList_GET_SIZE(__pyx_t_2)) break;
+ __pyx_t_1 = PyList_GET_ITEM(__pyx_t_2, __pyx_t_5); __Pyx_INCREF(__pyx_t_1); __pyx_t_5++;
+ } else if (likely(PyTuple_CheckExact(__pyx_t_2))) {
+ if (__pyx_t_5 >= PyTuple_GET_SIZE(__pyx_t_2)) break;
+ __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_5); __Pyx_INCREF(__pyx_t_1); __pyx_t_5++;
+ } else {
+ __pyx_t_1 = PyIter_Next(__pyx_t_2);
+ if (!__pyx_t_1) {
+ if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 991; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ break;
+ }
+ __Pyx_GOTREF(__pyx_t_1);
+ }
+ __Pyx_DECREF(__pyx_v_line);
+ __pyx_v_line = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":992
+ * t = self.text
+ * for line in t.split("\n"):
+ * if not line.strip(): continue # <<<<<<<<<<<<<<
+ * assert line.startswith("@"), "header line without '@': '%s'" % line
+ * fields = line[1:].split("\t")
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_line, __pyx_n_s__strip); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 992; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_6 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 992; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 992; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_3 = (!__pyx_t_4);
+ if (__pyx_t_3) {
+ goto __pyx_L7_continue;
+ goto __pyx_L9;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":993
+ * for line in t.split("\n"):
+ * if not line.strip(): continue
+ * assert line.startswith("@"), "header line without '@': '%s'" % line # <<<<<<<<<<<<<<
+ * fields = line[1:].split("\t")
+ * record = fields[0]
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ __pyx_t_6 = PyObject_GetAttr(__pyx_v_line, __pyx_n_s__startswith); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 993; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_1 = PyObject_Call(__pyx_t_6, ((PyObject *)__pyx_k_tuple_84), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 993; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 993; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (unlikely(!__pyx_t_3)) {
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_85), __pyx_v_line); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 993; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyErr_SetObject(PyExc_AssertionError, ((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 993; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":994
+ * if not line.strip(): continue
+ * assert line.startswith("@"), "header line without '@': '%s'" % line
+ * fields = line[1:].split("\t") # <<<<<<<<<<<<<<
+ * record = fields[0]
+ * assert record in VALID_HEADER_TYPES, "header line with invalid type '%s': '%s'" % (record, line)
+ */
+ __pyx_t_1 = __Pyx_PySequence_GetSlice(__pyx_v_line, 1, PY_SSIZE_T_MAX); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 994; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_6 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__split); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 994; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_6, ((PyObject *)__pyx_k_tuple_86), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 994; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __Pyx_DECREF(__pyx_v_fields);
+ __pyx_v_fields = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":995
+ * assert line.startswith("@"), "header line without '@': '%s'" % line
+ * fields = line[1:].split("\t")
+ * record = fields[0] # <<<<<<<<<<<<<<
+ * assert record in VALID_HEADER_TYPES, "header line with invalid type '%s': '%s'" % (record, line)
+ *
+ */
+ __pyx_t_1 = __Pyx_GetItemInt(__pyx_v_fields, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 995; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_v_record);
+ __pyx_v_record = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":996
+ * fields = line[1:].split("\t")
+ * record = fields[0]
+ * assert record in VALID_HEADER_TYPES, "header line with invalid type '%s': '%s'" % (record, line) # <<<<<<<<<<<<<<
+ *
+ * # treat comments
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__VALID_HEADER_TYPES); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 996; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = ((PySequence_Contains(__pyx_t_1, __pyx_v_record))); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 996; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (unlikely(!__pyx_t_3)) {
+ __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 996; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_record);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_record);
+ __Pyx_GIVEREF(__pyx_v_record);
+ __Pyx_INCREF(__pyx_v_line);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_line);
+ __Pyx_GIVEREF(__pyx_v_line);
+ __pyx_t_6 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_87), ((PyObject *)__pyx_t_1)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 996; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ PyErr_SetObject(PyExc_AssertionError, ((PyObject *)__pyx_t_6));
+ __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 996; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":999
+ *
+ * # treat comments
+ * if record == "CO": # <<<<<<<<<<<<<<
+ * if record not in result: result[record] = []
+ * result[record].append( "\t".join( fields[1:] ) )
+ */
+ __pyx_t_6 = PyObject_RichCompare(__pyx_v_record, ((PyObject *)__pyx_n_s__CO), Py_EQ); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 999; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 999; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1000
+ * # treat comments
+ * if record == "CO":
+ * if record not in result: result[record] = [] # <<<<<<<<<<<<<<
+ * result[record].append( "\t".join( fields[1:] ) )
+ * continue
+ */
+ if (unlikely(__pyx_v_result == Py_None)) {
+ PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1000; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_3 = (__Pyx_NegateNonNeg(PyDict_Contains(((PyObject *)__pyx_v_result), __pyx_v_record))); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1000; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_3) {
+ __pyx_t_6 = PyList_New(0); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1000; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ if (PyDict_SetItem(((PyObject *)__pyx_v_result), __pyx_v_record, ((PyObject *)__pyx_t_6)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1000; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
+ goto __pyx_L11;
+ }
+ __pyx_L11:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1001
+ * if record == "CO":
+ * if record not in result: result[record] = []
+ * result[record].append( "\t".join( fields[1:] ) ) # <<<<<<<<<<<<<<
+ * continue
+ *
+ */
+ __pyx_t_6 = __Pyx_PyDict_GetItem(((PyObject *)__pyx_v_result), __pyx_v_record); if (!__pyx_t_6) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1001; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_1), __pyx_n_s__join); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1001; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_7 = __Pyx_PySequence_GetSlice(__pyx_v_fields, 1, PY_SSIZE_T_MAX); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1001; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_8 = PyTuple_New(1); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1001; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ __pyx_t_7 = 0;
+ __pyx_t_7 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_8), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1001; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0;
+ __pyx_t_8 = __Pyx_PyObject_Append(__pyx_t_6, __pyx_t_7); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1001; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1002
+ * if record not in result: result[record] = []
+ * result[record].append( "\t".join( fields[1:] ) )
+ * continue # <<<<<<<<<<<<<<
+ *
+ * # the following is clumsy as generators do not work?
+ */
+ goto __pyx_L7_continue;
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1005
+ *
+ * # the following is clumsy as generators do not work?
+ * x = {} # <<<<<<<<<<<<<<
+ * for field in fields[1:]:
+ * key, value = field.split(":",1)
+ */
+ __pyx_t_8 = PyDict_New(); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1005; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ __Pyx_DECREF(((PyObject *)__pyx_v_x));
+ __pyx_v_x = __pyx_t_8;
+ __pyx_t_8 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1006
+ * # the following is clumsy as generators do not work?
+ * x = {}
+ * for field in fields[1:]: # <<<<<<<<<<<<<<
+ * key, value = field.split(":",1)
+ * if key not in VALID_HEADER_FIELDS[record]:
+ */
+ __pyx_t_8 = __Pyx_PySequence_GetSlice(__pyx_v_fields, 1, PY_SSIZE_T_MAX); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1006; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+ if (PyList_CheckExact(__pyx_t_8) || PyTuple_CheckExact(__pyx_t_8)) {
+ __pyx_t_9 = 0; __pyx_t_7 = __pyx_t_8; __Pyx_INCREF(__pyx_t_7);
+ } else {
+ __pyx_t_9 = -1; __pyx_t_7 = PyObject_GetIter(__pyx_t_8); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1006; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ }
+ __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
+ for (;;) {
+ if (likely(PyList_CheckExact(__pyx_t_7))) {
+ if (__pyx_t_9 >= PyList_GET_SIZE(__pyx_t_7)) break;
+ __pyx_t_8 = PyList_GET_ITEM(__pyx_t_7, __pyx_t_9); __Pyx_INCREF(__pyx_t_8); __pyx_t_9++;
+ } else if (likely(PyTuple_CheckExact(__pyx_t_7))) {
+ if (__pyx_t_9 >= PyTuple_GET_SIZE(__pyx_t_7)) break;
+ __pyx_t_8 = PyTuple_GET_ITEM(__pyx_t_7, __pyx_t_9); __Pyx_INCREF(__pyx_t_8); __pyx_t_9++;
+ } else {
+ __pyx_t_8 = PyIter_Next(__pyx_t_7);
+ if (!__pyx_t_8) {
+ if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1006; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ break;
+ }
+ __Pyx_GOTREF(__pyx_t_8);
+ }
+ __Pyx_DECREF(__pyx_v_field);
+ __pyx_v_field = __pyx_t_8;
+ __pyx_t_8 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1007
+ * x = {}
+ * for field in fields[1:]:
+ * key, value = field.split(":",1) # <<<<<<<<<<<<<<
+ * if key not in VALID_HEADER_FIELDS[record]:
+ * raise ValueError( "unknown field code '%s' in record '%s'" % (key, record) )
+ */
+ __pyx_t_8 = PyObject_GetAttr(__pyx_v_field, __pyx_n_s__split); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1007; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+ __pyx_t_6 = PyObject_Call(__pyx_t_8, ((PyObject *)__pyx_k_tuple_89), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1007; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
+ if (PyTuple_CheckExact(__pyx_t_6) && likely(PyTuple_GET_SIZE(__pyx_t_6) == 2)) {
+ PyObject* tuple = __pyx_t_6;
+ __pyx_t_8 = PyTuple_GET_ITEM(tuple, 0); __Pyx_INCREF(__pyx_t_8);
+ __pyx_t_1 = PyTuple_GET_ITEM(tuple, 1); __Pyx_INCREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __Pyx_DECREF(__pyx_v_key);
+ __pyx_v_key = __pyx_t_8;
+ __pyx_t_8 = 0;
+ __Pyx_DECREF(__pyx_v_value);
+ __pyx_v_value = __pyx_t_1;
+ __pyx_t_1 = 0;
+ } else {
+ __pyx_t_10 = PyObject_GetIter(__pyx_t_6); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1007; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_10);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_8 = __Pyx_UnpackItem(__pyx_t_10, 0); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1007; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+ __pyx_t_1 = __Pyx_UnpackItem(__pyx_t_10, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1007; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (__Pyx_EndUnpack(__pyx_t_10, 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1007; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_10); __pyx_t_10 = 0;
+ __Pyx_DECREF(__pyx_v_key);
+ __pyx_v_key = __pyx_t_8;
+ __pyx_t_8 = 0;
+ __Pyx_DECREF(__pyx_v_value);
+ __pyx_v_value = __pyx_t_1;
+ __pyx_t_1 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1008
+ * for field in fields[1:]:
+ * key, value = field.split(":",1)
+ * if key not in VALID_HEADER_FIELDS[record]: # <<<<<<<<<<<<<<
+ * raise ValueError( "unknown field code '%s' in record '%s'" % (key, record) )
+ * x[key] = VALID_HEADER_FIELDS[record][key](value)
+ */
+ __pyx_t_6 = __Pyx_GetName(__pyx_m, __pyx_n_s__VALID_HEADER_FIELDS); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1008; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_1 = PyObject_GetItem(__pyx_t_6, __pyx_v_record); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1008; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_3 = (__Pyx_NegateNonNeg(PySequence_Contains(__pyx_t_1, __pyx_v_key))); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1008; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1009
+ * key, value = field.split(":",1)
+ * if key not in VALID_HEADER_FIELDS[record]:
+ * raise ValueError( "unknown field code '%s' in record '%s'" % (key, record) ) # <<<<<<<<<<<<<<
+ * x[key] = VALID_HEADER_FIELDS[record][key](value)
+ *
+ */
+ __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1009; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_key);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_key);
+ __Pyx_GIVEREF(__pyx_v_key);
+ __Pyx_INCREF(__pyx_v_record);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_record);
+ __Pyx_GIVEREF(__pyx_v_record);
+ __pyx_t_6 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_90), ((PyObject *)__pyx_t_1)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1009; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __Pyx_DECREF(((PyObject *)__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 = 1009; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_t_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_6));
+ __pyx_t_6 = 0;
+ __pyx_t_6 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1009; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_Raise(__pyx_t_6, 0, 0);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1009; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L14;
+ }
+ __pyx_L14:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1010
+ * if key not in VALID_HEADER_FIELDS[record]:
+ * raise ValueError( "unknown field code '%s' in record '%s'" % (key, record) )
+ * x[key] = VALID_HEADER_FIELDS[record][key](value) # <<<<<<<<<<<<<<
+ *
+ * if VALID_HEADER_TYPES[record] == dict:
+ */
+ __pyx_t_6 = __Pyx_GetName(__pyx_m, __pyx_n_s__VALID_HEADER_FIELDS); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1010; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_1 = PyObject_GetItem(__pyx_t_6, __pyx_v_record); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1010; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_6 = PyObject_GetItem(__pyx_t_1, __pyx_v_key); if (!__pyx_t_6) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1010; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1010; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_value);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_value);
+ __Pyx_GIVEREF(__pyx_v_value);
+ __pyx_t_8 = PyObject_Call(__pyx_t_6, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1010; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ if (PyDict_SetItem(((PyObject *)__pyx_v_x), __pyx_v_key, __pyx_t_8) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1010; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
+ }
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1012
+ * x[key] = VALID_HEADER_FIELDS[record][key](value)
+ *
+ * if VALID_HEADER_TYPES[record] == dict: # <<<<<<<<<<<<<<
+ * if record in result:
+ * raise ValueError( "multiple '%s' lines are not permitted" % record )
+ */
+ __pyx_t_7 = __Pyx_GetName(__pyx_m, __pyx_n_s__VALID_HEADER_TYPES); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1012; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_8 = PyObject_GetItem(__pyx_t_7, __pyx_v_record); if (!__pyx_t_8) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1012; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __pyx_t_7 = PyObject_RichCompare(__pyx_t_8, ((PyObject *)((PyObject*)(&PyDict_Type))), Py_EQ); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1012; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_7); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1012; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1013
+ *
+ * if VALID_HEADER_TYPES[record] == dict:
+ * if record in result: # <<<<<<<<<<<<<<
+ * raise ValueError( "multiple '%s' lines are not permitted" % record )
+ * result[record] = x
+ */
+ if (unlikely(__pyx_v_result == Py_None)) {
+ PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1013; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_3 = ((PyDict_Contains(((PyObject *)__pyx_v_result), __pyx_v_record))); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1013; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1014
+ * if VALID_HEADER_TYPES[record] == dict:
+ * if record in result:
+ * raise ValueError( "multiple '%s' lines are not permitted" % record ) # <<<<<<<<<<<<<<
+ * result[record] = x
+ * elif VALID_HEADER_TYPES[record] == list:
+ */
+ __pyx_t_7 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_91), __pyx_v_record); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1014; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_7));
+ __pyx_t_8 = PyTuple_New(1); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1014; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ PyTuple_SET_ITEM(__pyx_t_8, 0, ((PyObject *)__pyx_t_7));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_7));
+ __pyx_t_7 = 0;
+ __pyx_t_7 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_8), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1014; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0;
+ __Pyx_Raise(__pyx_t_7, 0, 0);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1014; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L16;
+ }
+ __pyx_L16:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1015
+ * if record in result:
+ * raise ValueError( "multiple '%s' lines are not permitted" % record )
+ * result[record] = x # <<<<<<<<<<<<<<
+ * elif VALID_HEADER_TYPES[record] == list:
+ * if record not in result: result[record] = []
+ */
+ if (PyDict_SetItem(((PyObject *)__pyx_v_result), __pyx_v_record, ((PyObject *)__pyx_v_x)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1015; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L15;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1016
+ * raise ValueError( "multiple '%s' lines are not permitted" % record )
+ * result[record] = x
+ * elif VALID_HEADER_TYPES[record] == list: # <<<<<<<<<<<<<<
+ * if record not in result: result[record] = []
+ * result[record].append( x )
+ */
+ __pyx_t_7 = __Pyx_GetName(__pyx_m, __pyx_n_s__VALID_HEADER_TYPES); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1016; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_8 = PyObject_GetItem(__pyx_t_7, __pyx_v_record); if (!__pyx_t_8) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1016; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __pyx_t_7 = PyObject_RichCompare(__pyx_t_8, ((PyObject *)((PyObject*)(&PyList_Type))), Py_EQ); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1016; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_7); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1016; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1017
+ * result[record] = x
+ * elif VALID_HEADER_TYPES[record] == list:
+ * if record not in result: result[record] = [] # <<<<<<<<<<<<<<
+ * result[record].append( x )
+ *
+ */
+ if (unlikely(__pyx_v_result == Py_None)) {
+ PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1017; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_3 = (__Pyx_NegateNonNeg(PyDict_Contains(((PyObject *)__pyx_v_result), __pyx_v_record))); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1017; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_3) {
+ __pyx_t_7 = PyList_New(0); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1017; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_7));
+ if (PyDict_SetItem(((PyObject *)__pyx_v_result), __pyx_v_record, ((PyObject *)__pyx_t_7)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1017; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_7)); __pyx_t_7 = 0;
+ goto __pyx_L17;
+ }
+ __pyx_L17:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1018
+ * elif VALID_HEADER_TYPES[record] == list:
+ * if record not in result: result[record] = []
+ * result[record].append( x ) # <<<<<<<<<<<<<<
+ *
+ * return result
+ */
+ __pyx_t_7 = __Pyx_PyDict_GetItem(((PyObject *)__pyx_v_result), __pyx_v_record); if (!__pyx_t_7) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1018; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_8 = __Pyx_PyObject_Append(__pyx_t_7, ((PyObject *)__pyx_v_x)); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1018; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
+ goto __pyx_L15;
+ }
+ __pyx_L15:;
+ __pyx_L7_continue:;
+ }
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1020
+ * result[record].append( x )
+ *
+ * return result # <<<<<<<<<<<<<<
+ *
+ * def _buildLine( self, fields, record ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_v_result));
+ __pyx_r = ((PyObject *)__pyx_v_result);
+ 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_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_XDECREF(__pyx_t_8);
+ __Pyx_XDECREF(__pyx_t_10);
+ __Pyx_AddTraceback("csamtools.Samfile.header.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_result);
+ __Pyx_DECREF(__pyx_v_t);
+ __Pyx_DECREF(__pyx_v_line);
+ __Pyx_DECREF(__pyx_v_fields);
+ __Pyx_DECREF(__pyx_v_record);
+ __Pyx_DECREF(__pyx_v_x);
+ __Pyx_DECREF(__pyx_v_field);
+ __Pyx_DECREF(__pyx_v_key);
+ __Pyx_DECREF(__pyx_v_value);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1022
+ * return result
+ *
+ * def _buildLine( self, fields, record ): # <<<<<<<<<<<<<<
+ * '''build a header line from *fields* dictionary for *record*'''
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_18_buildLine(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_18_buildLine[] = "build a header line from *fields* dictionary for *record*";
+static PyObject *__pyx_pf_9csamtools_7Samfile_18_buildLine(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_fields = 0;
+ PyObject *__pyx_v_record = 0;
+ PyObject *__pyx_v_line;
+ PyObject *__pyx_v_key;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ Py_ssize_t __pyx_t_5;
+ PyObject *__pyx_t_6 = NULL;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__fields,&__pyx_n_s__record,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("_buildLine");
+ __Pyx_TraceCall("_buildLine", __pyx_f[0], 1022);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[2] = {0,0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__fields);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__record);
+ if (likely(values[1])) kw_args--;
+ else {
+ __Pyx_RaiseArgtupleInvalid("_buildLine", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1022; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "_buildLine") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1022; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_fields = values[0];
+ __pyx_v_record = values[1];
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 2) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_fields = PyTuple_GET_ITEM(__pyx_args, 0);
+ __pyx_v_record = PyTuple_GET_ITEM(__pyx_args, 1);
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("_buildLine", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1022; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Samfile._buildLine");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+ __pyx_v_line = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+ __pyx_v_key = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1026
+ *
+ * # TODO: add checking for field and sort order
+ * line = ["@%s" % record ] # <<<<<<<<<<<<<<
+ * if record == "CO":
+ * line.append( fields )
+ */
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_92), __pyx_v_record); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1026; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1026; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ PyList_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_t_1));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_1));
+ __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_v_line));
+ __pyx_v_line = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1027
+ * # TODO: add checking for field and sort order
+ * line = ["@%s" % record ]
+ * if record == "CO": # <<<<<<<<<<<<<<
+ * line.append( fields )
+ * else:
+ */
+ __pyx_t_2 = PyObject_RichCompare(__pyx_v_record, ((PyObject *)__pyx_n_s__CO), Py_EQ); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1027; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1027; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1028
+ * line = ["@%s" % record ]
+ * if record == "CO":
+ * line.append( fields ) # <<<<<<<<<<<<<<
+ * else:
+ * for key in VALID_HEADER_ORDER[record]:
+ */
+ if (unlikely(__pyx_v_line == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1028; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_4 = PyList_Append(__pyx_v_line, __pyx_v_fields); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1028; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1030
+ * line.append( fields )
+ * else:
+ * for key in VALID_HEADER_ORDER[record]: # <<<<<<<<<<<<<<
+ * if key in fields:
+ * line.append( "%s:%s" % (key, str(fields[key])))
+ */
+ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__VALID_HEADER_ORDER); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1030; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyObject_GetItem(__pyx_t_2, __pyx_v_record); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1030; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (PyList_CheckExact(__pyx_t_1) || PyTuple_CheckExact(__pyx_t_1)) {
+ __pyx_t_5 = 0; __pyx_t_2 = __pyx_t_1; __Pyx_INCREF(__pyx_t_2);
+ } else {
+ __pyx_t_5 = -1; __pyx_t_2 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1030; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ }
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ for (;;) {
+ if (likely(PyList_CheckExact(__pyx_t_2))) {
+ if (__pyx_t_5 >= PyList_GET_SIZE(__pyx_t_2)) break;
+ __pyx_t_1 = PyList_GET_ITEM(__pyx_t_2, __pyx_t_5); __Pyx_INCREF(__pyx_t_1); __pyx_t_5++;
+ } else if (likely(PyTuple_CheckExact(__pyx_t_2))) {
+ if (__pyx_t_5 >= PyTuple_GET_SIZE(__pyx_t_2)) break;
+ __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_2, __pyx_t_5); __Pyx_INCREF(__pyx_t_1); __pyx_t_5++;
+ } else {
+ __pyx_t_1 = PyIter_Next(__pyx_t_2);
+ if (!__pyx_t_1) {
+ if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1030; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ break;
+ }
+ __Pyx_GOTREF(__pyx_t_1);
+ }
+ __Pyx_DECREF(__pyx_v_key);
+ __pyx_v_key = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1031
+ * else:
+ * for key in VALID_HEADER_ORDER[record]:
+ * if key in fields: # <<<<<<<<<<<<<<
+ * line.append( "%s:%s" % (key, str(fields[key])))
+ * return "\t".join( line )
+ */
+ __pyx_t_3 = ((PySequence_Contains(__pyx_v_fields, __pyx_v_key))); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1031; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1032
+ * for key in VALID_HEADER_ORDER[record]:
+ * if key in fields:
+ * line.append( "%s:%s" % (key, str(fields[key]))) # <<<<<<<<<<<<<<
+ * return "\t".join( line )
+ *
+ */
+ if (unlikely(__pyx_v_line == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_1 = PyObject_GetItem(__pyx_v_fields, __pyx_v_key); if (!__pyx_t_1) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)(&PyString_Type))), ((PyObject *)__pyx_t_6), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
+ __pyx_t_6 = PyTuple_New(2); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __Pyx_INCREF(__pyx_v_key);
+ PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_v_key);
+ __Pyx_GIVEREF(__pyx_v_key);
+ PyTuple_SET_ITEM(__pyx_t_6, 1, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_93), ((PyObject *)__pyx_t_6)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
+ __pyx_t_4 = PyList_Append(__pyx_v_line, ((PyObject *)__pyx_t_1)); if (unlikely(__pyx_t_4 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ goto __pyx_L9;
+ }
+ __pyx_L9:;
+ }
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1033
+ * if key in fields:
+ * line.append( "%s:%s" % (key, str(fields[key])))
+ * return "\t".join( line ) # <<<<<<<<<<<<<<
+ *
+ * cdef bam_header_t * _buildHeader( self, new_header ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_1), __pyx_n_s__join); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1033; __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 = 1033; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(((PyObject *)__pyx_v_line));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_v_line));
+ __Pyx_GIVEREF(((PyObject *)__pyx_v_line));
+ __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 = 1033; __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_r = __pyx_t_6;
+ __pyx_t_6 = 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_XDECREF(__pyx_t_6);
+ __Pyx_AddTraceback("csamtools.Samfile._buildLine");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_line);
+ __Pyx_DECREF(__pyx_v_key);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1035
+ * return "\t".join( line )
+ *
+ * cdef bam_header_t * _buildHeader( self, new_header ): # <<<<<<<<<<<<<<
+ * '''return a new header built from a dictionary in *new_header*.
+ *
+ */
+
+static bam_header_t *__pyx_f_9csamtools_7Samfile__buildHeader(struct __pyx_obj_9csamtools_Samfile *__pyx_v_self, PyObject *__pyx_v_new_header) {
+ PyObject *__pyx_v_lines;
+ bam_header_t *__pyx_v_dest;
+ PyObject *__pyx_v_record;
+ PyObject *__pyx_v_ttype;
+ PyObject *__pyx_v_data;
+ PyObject *__pyx_v_fields;
+ PyObject *__pyx_v_text;
+ PyObject *__pyx_v_seqs;
+ long __pyx_v_x;
+ PyObject *__pyx_v_seqname;
+ PyObject *__pyx_v_seqlen;
+ bam_header_t *__pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ Py_ssize_t __pyx_t_2;
+ PyObject *__pyx_t_3 = NULL;
+ int __pyx_t_4;
+ PyObject *__pyx_t_5 = NULL;
+ PyObject *__pyx_t_6 = NULL;
+ int __pyx_t_7;
+ Py_ssize_t __pyx_t_8;
+ PyObject *__pyx_t_9 = NULL;
+ char *__pyx_t_10;
+ PyObject *__pyx_t_11 = NULL;
+ int32_t __pyx_t_12;
+ uint32_t __pyx_t_13;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("_buildHeader");
+ __Pyx_TraceCall("_buildHeader", __pyx_f[0], 1035);
+ __pyx_v_lines = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+ __pyx_v_record = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_ttype = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_data = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_fields = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_text = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_seqs = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+ __pyx_v_seqname = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_seqlen = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1041
+ * '''
+ *
+ * lines = [] # <<<<<<<<<<<<<<
+ *
+ * # check if hash exists
+ */
+ __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1041; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(((PyObject *)__pyx_v_lines));
+ __pyx_v_lines = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1048
+ * cdef bam_header_t * dest
+ *
+ * dest = bam_header_init() # <<<<<<<<<<<<<<
+ *
+ * for record in VALID_HEADERS:
+ */
+ __pyx_v_dest = bam_header_init();
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1050
+ * dest = bam_header_init()
+ *
+ * for record in VALID_HEADERS: # <<<<<<<<<<<<<<
+ * if record in new_header:
+ * ttype = VALID_HEADER_TYPES[record]
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__VALID_HEADERS); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1050; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyList_CheckExact(__pyx_t_1) || PyTuple_CheckExact(__pyx_t_1)) {
+ __pyx_t_2 = 0; __pyx_t_3 = __pyx_t_1; __Pyx_INCREF(__pyx_t_3);
+ } else {
+ __pyx_t_2 = -1; __pyx_t_3 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1050; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ }
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ for (;;) {
+ if (likely(PyList_CheckExact(__pyx_t_3))) {
+ if (__pyx_t_2 >= PyList_GET_SIZE(__pyx_t_3)) break;
+ __pyx_t_1 = PyList_GET_ITEM(__pyx_t_3, __pyx_t_2); __Pyx_INCREF(__pyx_t_1); __pyx_t_2++;
+ } else if (likely(PyTuple_CheckExact(__pyx_t_3))) {
+ if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_3)) break;
+ __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_3, __pyx_t_2); __Pyx_INCREF(__pyx_t_1); __pyx_t_2++;
+ } else {
+ __pyx_t_1 = PyIter_Next(__pyx_t_3);
+ if (!__pyx_t_1) {
+ if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1050; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ break;
+ }
+ __Pyx_GOTREF(__pyx_t_1);
+ }
+ __Pyx_DECREF(__pyx_v_record);
+ __pyx_v_record = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1051
+ *
+ * for record in VALID_HEADERS:
+ * if record in new_header: # <<<<<<<<<<<<<<
+ * ttype = VALID_HEADER_TYPES[record]
+ * data = new_header[record]
+ */
+ __pyx_t_4 = ((PySequence_Contains(__pyx_v_new_header, __pyx_v_record))); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1051; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1052
+ * for record in VALID_HEADERS:
+ * if record in new_header:
+ * ttype = VALID_HEADER_TYPES[record] # <<<<<<<<<<<<<<
+ * data = new_header[record]
+ * if type( data ) != type( ttype() ):
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__VALID_HEADER_TYPES); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1052; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = PyObject_GetItem(__pyx_t_1, __pyx_v_record); if (!__pyx_t_5) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1052; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_v_ttype);
+ __pyx_v_ttype = __pyx_t_5;
+ __pyx_t_5 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1053
+ * if record in new_header:
+ * ttype = VALID_HEADER_TYPES[record]
+ * data = new_header[record] # <<<<<<<<<<<<<<
+ * if type( data ) != type( ttype() ):
+ * raise ValueError( "invalid type for record %s: %s, expected %s" % (record, type(data), type(ttype()) ) )
+ */
+ __pyx_t_5 = PyObject_GetItem(__pyx_v_new_header, __pyx_v_record); if (!__pyx_t_5) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1053; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_v_data);
+ __pyx_v_data = __pyx_t_5;
+ __pyx_t_5 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1054
+ * ttype = VALID_HEADER_TYPES[record]
+ * data = new_header[record]
+ * if type( data ) != type( ttype() ): # <<<<<<<<<<<<<<
+ * raise ValueError( "invalid type for record %s: %s, expected %s" % (record, type(data), type(ttype()) ) )
+ * if type( data ) == types.DictType:
+ */
+ __pyx_t_5 = PyObject_Call(__pyx_v_ttype, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1054; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_1 = PyObject_RichCompare(((PyObject *)Py_TYPE(__pyx_v_data)), ((PyObject *)Py_TYPE(__pyx_t_5)), Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1054; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1054; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1055
+ * data = new_header[record]
+ * if type( data ) != type( ttype() ):
+ * raise ValueError( "invalid type for record %s: %s, expected %s" % (record, type(data), type(ttype()) ) ) # <<<<<<<<<<<<<<
+ * if type( data ) == types.DictType:
+ * lines.append( self._buildLine( data, record ) )
+ */
+ __pyx_t_1 = PyObject_Call(__pyx_v_ttype, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1055; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = PyTuple_New(3); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1055; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ __Pyx_INCREF(__pyx_v_record);
+ PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_v_record);
+ __Pyx_GIVEREF(__pyx_v_record);
+ __Pyx_INCREF(((PyObject *)Py_TYPE(__pyx_v_data)));
+ PyTuple_SET_ITEM(__pyx_t_5, 1, ((PyObject *)Py_TYPE(__pyx_v_data)));
+ __Pyx_GIVEREF(((PyObject *)Py_TYPE(__pyx_v_data)));
+ __Pyx_INCREF(((PyObject *)Py_TYPE(__pyx_t_1)));
+ PyTuple_SET_ITEM(__pyx_t_5, 2, ((PyObject *)Py_TYPE(__pyx_t_1)));
+ __Pyx_GIVEREF(((PyObject *)Py_TYPE(__pyx_t_1)));
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_94), ((PyObject *)__pyx_t_5)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1055; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1055; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_t_1));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_1));
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1055; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1055; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1056
+ * if type( data ) != type( ttype() ):
+ * raise ValueError( "invalid type for record %s: %s, expected %s" % (record, type(data), type(ttype()) ) )
+ * if type( data ) == types.DictType: # <<<<<<<<<<<<<<
+ * lines.append( self._buildLine( data, record ) )
+ * else:
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__types); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__DictType); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_RichCompare(((PyObject *)Py_TYPE(__pyx_v_data)), __pyx_t_5, Py_EQ); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1056; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1057
+ * raise ValueError( "invalid type for record %s: %s, expected %s" % (record, type(data), type(ttype()) ) )
+ * if type( data ) == types.DictType:
+ * lines.append( self._buildLine( data, record ) ) # <<<<<<<<<<<<<<
+ * else:
+ * for fields in new_header[record]:
+ */
+ if (unlikely(__pyx_v_lines == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1057; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_v_self), __pyx_n_s___buildLine); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1057; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1057; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ __Pyx_INCREF(__pyx_v_data);
+ PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_v_data);
+ __Pyx_GIVEREF(__pyx_v_data);
+ __Pyx_INCREF(__pyx_v_record);
+ PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_v_record);
+ __Pyx_GIVEREF(__pyx_v_record);
+ __pyx_t_6 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1057; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __pyx_t_7 = PyList_Append(__pyx_v_lines, __pyx_t_6); if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1057; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ goto __pyx_L7;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1059
+ * lines.append( self._buildLine( data, record ) )
+ * else:
+ * for fields in new_header[record]: # <<<<<<<<<<<<<<
+ * lines.append( self._buildLine( fields, record ) )
+ *
+ */
+ __pyx_t_6 = PyObject_GetItem(__pyx_v_new_header, __pyx_v_record); if (!__pyx_t_6) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1059; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ if (PyList_CheckExact(__pyx_t_6) || PyTuple_CheckExact(__pyx_t_6)) {
+ __pyx_t_8 = 0; __pyx_t_5 = __pyx_t_6; __Pyx_INCREF(__pyx_t_5);
+ } else {
+ __pyx_t_8 = -1; __pyx_t_5 = PyObject_GetIter(__pyx_t_6); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1059; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ }
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ for (;;) {
+ if (likely(PyList_CheckExact(__pyx_t_5))) {
+ if (__pyx_t_8 >= PyList_GET_SIZE(__pyx_t_5)) break;
+ __pyx_t_6 = PyList_GET_ITEM(__pyx_t_5, __pyx_t_8); __Pyx_INCREF(__pyx_t_6); __pyx_t_8++;
+ } else if (likely(PyTuple_CheckExact(__pyx_t_5))) {
+ if (__pyx_t_8 >= PyTuple_GET_SIZE(__pyx_t_5)) break;
+ __pyx_t_6 = PyTuple_GET_ITEM(__pyx_t_5, __pyx_t_8); __Pyx_INCREF(__pyx_t_6); __pyx_t_8++;
+ } else {
+ __pyx_t_6 = PyIter_Next(__pyx_t_5);
+ if (!__pyx_t_6) {
+ if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1059; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ break;
+ }
+ __Pyx_GOTREF(__pyx_t_6);
+ }
+ __Pyx_DECREF(__pyx_v_fields);
+ __pyx_v_fields = __pyx_t_6;
+ __pyx_t_6 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1060
+ * else:
+ * for fields in new_header[record]:
+ * lines.append( self._buildLine( fields, record ) ) # <<<<<<<<<<<<<<
+ *
+ * text = "\n".join(lines) + "\n"
+ */
+ if (unlikely(__pyx_v_lines == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1060; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_6 = PyObject_GetAttr(((PyObject *)__pyx_v_self), __pyx_n_s___buildLine); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1060; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1060; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_fields);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_fields);
+ __Pyx_GIVEREF(__pyx_v_fields);
+ __Pyx_INCREF(__pyx_v_record);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_record);
+ __Pyx_GIVEREF(__pyx_v_record);
+ __pyx_t_9 = PyObject_Call(__pyx_t_6, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1060; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __pyx_t_7 = PyList_Append(__pyx_v_lines, __pyx_t_9); if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1060; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
+ }
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ }
+ __pyx_L7:;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+ }
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1062
+ * lines.append( self._buildLine( fields, record ) )
+ *
+ * text = "\n".join(lines) + "\n" # <<<<<<<<<<<<<<
+ * if dest.text != NULL: free( dest.text )
+ * dest.text = <char*>calloc( len(text), sizeof(char))
+ */
+ __pyx_t_3 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_2), __pyx_n_s__join); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ __Pyx_INCREF(((PyObject *)__pyx_v_lines));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_v_lines));
+ __Pyx_GIVEREF(((PyObject *)__pyx_v_lines));
+ __pyx_t_9 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __pyx_t_5 = PyNumber_Add(__pyx_t_9, ((PyObject *)__pyx_kp_s_2)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1062; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
+ __Pyx_DECREF(__pyx_v_text);
+ __pyx_v_text = __pyx_t_5;
+ __pyx_t_5 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1063
+ *
+ * text = "\n".join(lines) + "\n"
+ * if dest.text != NULL: free( dest.text ) # <<<<<<<<<<<<<<
+ * dest.text = <char*>calloc( len(text), sizeof(char))
+ * dest.l_text = len(text)
+ */
+ __pyx_t_4 = (__pyx_v_dest->text != NULL);
+ if (__pyx_t_4) {
+ free(__pyx_v_dest->text);
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1064
+ * text = "\n".join(lines) + "\n"
+ * if dest.text != NULL: free( dest.text )
+ * dest.text = <char*>calloc( len(text), sizeof(char)) # <<<<<<<<<<<<<<
+ * dest.l_text = len(text)
+ * strncpy( dest.text, text, dest.l_text )
+ */
+ __pyx_t_2 = PyObject_Length(__pyx_v_text); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1064; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_dest->text = ((char *)calloc(__pyx_t_2, (sizeof(char))));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1065
+ * if dest.text != NULL: free( dest.text )
+ * dest.text = <char*>calloc( len(text), sizeof(char))
+ * dest.l_text = len(text) # <<<<<<<<<<<<<<
+ * strncpy( dest.text, text, dest.l_text )
+ *
+ */
+ __pyx_t_2 = PyObject_Length(__pyx_v_text); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1065; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_dest->l_text = __pyx_t_2;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1066
+ * dest.text = <char*>calloc( len(text), sizeof(char))
+ * dest.l_text = len(text)
+ * strncpy( dest.text, text, dest.l_text ) # <<<<<<<<<<<<<<
+ *
+ * # collect targets
+ */
+ __pyx_t_10 = PyBytes_AsString(__pyx_v_text); if (unlikely((!__pyx_t_10) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1066; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ strncpy(__pyx_v_dest->text, __pyx_t_10, __pyx_v_dest->l_text);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1069
+ *
+ * # collect targets
+ * if "SQ" in new_header: # <<<<<<<<<<<<<<
+ * seqs = []
+ * for fields in new_header["SQ"]:
+ */
+ __pyx_t_4 = ((PySequence_Contains(__pyx_v_new_header, ((PyObject *)__pyx_n_s__SQ)))); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1069; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1070
+ * # collect targets
+ * if "SQ" in new_header:
+ * seqs = [] # <<<<<<<<<<<<<<
+ * for fields in new_header["SQ"]:
+ * try:
+ */
+ __pyx_t_5 = PyList_New(0); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1070; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ __Pyx_DECREF(((PyObject *)__pyx_v_seqs));
+ __pyx_v_seqs = __pyx_t_5;
+ __pyx_t_5 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1071
+ * if "SQ" in new_header:
+ * seqs = []
+ * for fields in new_header["SQ"]: # <<<<<<<<<<<<<<
+ * try:
+ * seqs.append( (fields["SN"], fields["LN"] ) )
+ */
+ __pyx_t_5 = PyObject_GetItem(__pyx_v_new_header, ((PyObject *)__pyx_n_s__SQ)); if (!__pyx_t_5) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1071; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ if (PyList_CheckExact(__pyx_t_5) || PyTuple_CheckExact(__pyx_t_5)) {
+ __pyx_t_2 = 0; __pyx_t_9 = __pyx_t_5; __Pyx_INCREF(__pyx_t_9);
+ } else {
+ __pyx_t_2 = -1; __pyx_t_9 = PyObject_GetIter(__pyx_t_5); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1071; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+ }
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ for (;;) {
+ if (likely(PyList_CheckExact(__pyx_t_9))) {
+ if (__pyx_t_2 >= PyList_GET_SIZE(__pyx_t_9)) break;
+ __pyx_t_5 = PyList_GET_ITEM(__pyx_t_9, __pyx_t_2); __Pyx_INCREF(__pyx_t_5); __pyx_t_2++;
+ } else if (likely(PyTuple_CheckExact(__pyx_t_9))) {
+ if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_9)) break;
+ __pyx_t_5 = PyTuple_GET_ITEM(__pyx_t_9, __pyx_t_2); __Pyx_INCREF(__pyx_t_5); __pyx_t_2++;
+ } else {
+ __pyx_t_5 = PyIter_Next(__pyx_t_9);
+ if (!__pyx_t_5) {
+ if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1071; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ break;
+ }
+ __Pyx_GOTREF(__pyx_t_5);
+ }
+ __Pyx_DECREF(__pyx_v_fields);
+ __pyx_v_fields = __pyx_t_5;
+ __pyx_t_5 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1072
+ * seqs = []
+ * for fields in new_header["SQ"]:
+ * try: # <<<<<<<<<<<<<<
+ * seqs.append( (fields["SN"], fields["LN"] ) )
+ * except KeyError:
+ */
+ {
+ PyObject *__pyx_save_exc_type, *__pyx_save_exc_value, *__pyx_save_exc_tb;
+ __Pyx_ExceptionSave(&__pyx_save_exc_type, &__pyx_save_exc_value, &__pyx_save_exc_tb);
+ __Pyx_XGOTREF(__pyx_save_exc_type);
+ __Pyx_XGOTREF(__pyx_save_exc_value);
+ __Pyx_XGOTREF(__pyx_save_exc_tb);
+ /*try:*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1073
+ * for fields in new_header["SQ"]:
+ * try:
+ * seqs.append( (fields["SN"], fields["LN"] ) ) # <<<<<<<<<<<<<<
+ * except KeyError:
+ * raise KeyError( "incomplete sequence information in '%s'" % str(fields))
+ */
+ if (unlikely(__pyx_v_seqs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1073; __pyx_clineno = __LINE__; goto __pyx_L14_error;}
+ }
+ __pyx_t_5 = PyObject_GetItem(__pyx_v_fields, ((PyObject *)__pyx_n_s__SN)); if (!__pyx_t_5) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1073; __pyx_clineno = __LINE__; goto __pyx_L14_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_3 = PyObject_GetItem(__pyx_v_fields, ((PyObject *)__pyx_n_s__LN)); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1073; __pyx_clineno = __LINE__; goto __pyx_L14_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1073; __pyx_clineno = __LINE__; goto __pyx_L14_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ __pyx_t_5 = 0;
+ __pyx_t_3 = 0;
+ __pyx_t_7 = PyList_Append(__pyx_v_seqs, ((PyObject *)__pyx_t_1)); if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1073; __pyx_clineno = __LINE__; goto __pyx_L14_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ }
+ __Pyx_XDECREF(__pyx_save_exc_type); __pyx_save_exc_type = 0;
+ __Pyx_XDECREF(__pyx_save_exc_value); __pyx_save_exc_value = 0;
+ __Pyx_XDECREF(__pyx_save_exc_tb); __pyx_save_exc_tb = 0;
+ goto __pyx_L21_try_end;
+ __pyx_L14_error:;
+ __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1074
+ * try:
+ * seqs.append( (fields["SN"], fields["LN"] ) )
+ * except KeyError: # <<<<<<<<<<<<<<
+ * raise KeyError( "incomplete sequence information in '%s'" % str(fields))
+ *
+ */
+ __pyx_t_7 = PyErr_ExceptionMatches(__pyx_builtin_KeyError);
+ if (__pyx_t_7) {
+ __Pyx_AddTraceback("csamtools.Samfile._buildHeader");
+ if (__Pyx_GetException(&__pyx_t_1, &__pyx_t_3, &__pyx_t_5) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1074; __pyx_clineno = __LINE__; goto __pyx_L16_except_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_GOTREF(__pyx_t_5);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1075
+ * seqs.append( (fields["SN"], fields["LN"] ) )
+ * except KeyError:
+ * raise KeyError( "incomplete sequence information in '%s'" % str(fields)) # <<<<<<<<<<<<<<
+ *
+ * dest.n_targets = len(seqs)
+ */
+ __pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1075; __pyx_clineno = __LINE__; goto __pyx_L16_except_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __Pyx_INCREF(__pyx_v_fields);
+ PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_v_fields);
+ __Pyx_GIVEREF(__pyx_v_fields);
+ __pyx_t_11 = PyObject_Call(((PyObject *)((PyObject*)(&PyString_Type))), ((PyObject *)__pyx_t_6), NULL); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1075; __pyx_clineno = __LINE__; goto __pyx_L16_except_error;}
+ __Pyx_GOTREF(__pyx_t_11);
+ __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
+ __pyx_t_6 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_95), __pyx_t_11); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1075; __pyx_clineno = __LINE__; goto __pyx_L16_except_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __Pyx_DECREF(__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 = 1075; __pyx_clineno = __LINE__; goto __pyx_L16_except_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_11));
+ PyTuple_SET_ITEM(__pyx_t_11, 0, ((PyObject *)__pyx_t_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_6));
+ __pyx_t_6 = 0;
+ __pyx_t_6 = PyObject_Call(__pyx_builtin_KeyError, ((PyObject *)__pyx_t_11), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1075; __pyx_clineno = __LINE__; goto __pyx_L16_except_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(((PyObject *)__pyx_t_11)); __pyx_t_11 = 0;
+ __Pyx_Raise(__pyx_t_6, 0, 0);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1075; __pyx_clineno = __LINE__; goto __pyx_L16_except_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ goto __pyx_L15_exception_handled;
+ }
+ __pyx_L16_except_error:;
+ __Pyx_XGIVEREF(__pyx_save_exc_type);
+ __Pyx_XGIVEREF(__pyx_save_exc_value);
+ __Pyx_XGIVEREF(__pyx_save_exc_tb);
+ __Pyx_ExceptionReset(__pyx_save_exc_type, __pyx_save_exc_value, __pyx_save_exc_tb);
+ goto __pyx_L1_error;
+ __pyx_L15_exception_handled:;
+ __Pyx_XGIVEREF(__pyx_save_exc_type);
+ __Pyx_XGIVEREF(__pyx_save_exc_value);
+ __Pyx_XGIVEREF(__pyx_save_exc_tb);
+ __Pyx_ExceptionReset(__pyx_save_exc_type, __pyx_save_exc_value, __pyx_save_exc_tb);
+ __pyx_L21_try_end:;
+ }
+ }
+ __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1077
+ * raise KeyError( "incomplete sequence information in '%s'" % str(fields))
+ *
+ * dest.n_targets = len(seqs) # <<<<<<<<<<<<<<
+ * dest.target_name = <char**>calloc( dest.n_targets, sizeof(char*) )
+ * dest.target_len = <uint32_t*>calloc( dest.n_targets, sizeof(uint32_t) )
+ */
+ if (unlikely(__pyx_v_seqs == Py_None)) {
+ PyErr_SetString(PyExc_TypeError, "object of type 'NoneType' has no len()"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1077; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = PyList_GET_SIZE(((PyObject *)__pyx_v_seqs));
+ __pyx_v_dest->n_targets = __pyx_t_2;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1078
+ *
+ * dest.n_targets = len(seqs)
+ * dest.target_name = <char**>calloc( dest.n_targets, sizeof(char*) ) # <<<<<<<<<<<<<<
+ * dest.target_len = <uint32_t*>calloc( dest.n_targets, sizeof(uint32_t) )
+ *
+ */
+ __pyx_v_dest->target_name = ((char **)calloc(__pyx_v_dest->n_targets, (sizeof(char *))));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1079
+ * dest.n_targets = len(seqs)
+ * dest.target_name = <char**>calloc( dest.n_targets, sizeof(char*) )
+ * dest.target_len = <uint32_t*>calloc( dest.n_targets, sizeof(uint32_t) ) # <<<<<<<<<<<<<<
+ *
+ * for x from 0 <= x < dest.n_targets:
+ */
+ __pyx_v_dest->target_len = ((uint32_t *)calloc(__pyx_v_dest->n_targets, (sizeof(uint32_t))));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1081
+ * dest.target_len = <uint32_t*>calloc( dest.n_targets, sizeof(uint32_t) )
+ *
+ * for x from 0 <= x < dest.n_targets: # <<<<<<<<<<<<<<
+ * seqname, seqlen = seqs[x]
+ * dest.target_name[x] = <char*>calloc( len( seqname ) + 1, sizeof(char) )
+ */
+ __pyx_t_12 = __pyx_v_dest->n_targets;
+ for (__pyx_v_x = 0; __pyx_v_x < __pyx_t_12; __pyx_v_x++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1082
+ *
+ * for x from 0 <= x < dest.n_targets:
+ * seqname, seqlen = seqs[x] # <<<<<<<<<<<<<<
+ * dest.target_name[x] = <char*>calloc( len( seqname ) + 1, sizeof(char) )
+ * strncpy( dest.target_name[x], seqname, len(seqname) + 1 )
+ */
+ __pyx_t_9 = __Pyx_GetItemInt_List(((PyObject *)__pyx_v_seqs), __pyx_v_x, sizeof(long), PyInt_FromLong); if (!__pyx_t_9) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1082; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+ if (PyTuple_CheckExact(__pyx_t_9) && likely(PyTuple_GET_SIZE(__pyx_t_9) == 2)) {
+ PyObject* tuple = __pyx_t_9;
+ __pyx_t_5 = PyTuple_GET_ITEM(tuple, 0); __Pyx_INCREF(__pyx_t_5);
+ __pyx_t_3 = PyTuple_GET_ITEM(tuple, 1); __Pyx_INCREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
+ __Pyx_DECREF(__pyx_v_seqname);
+ __pyx_v_seqname = __pyx_t_5;
+ __pyx_t_5 = 0;
+ __Pyx_DECREF(__pyx_v_seqlen);
+ __pyx_v_seqlen = __pyx_t_3;
+ __pyx_t_3 = 0;
+ } else {
+ __pyx_t_1 = PyObject_GetIter(__pyx_t_9); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1082; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
+ __pyx_t_5 = __Pyx_UnpackItem(__pyx_t_1, 0); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1082; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_3 = __Pyx_UnpackItem(__pyx_t_1, 1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1082; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (__Pyx_EndUnpack(__pyx_t_1, 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1082; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_v_seqname);
+ __pyx_v_seqname = __pyx_t_5;
+ __pyx_t_5 = 0;
+ __Pyx_DECREF(__pyx_v_seqlen);
+ __pyx_v_seqlen = __pyx_t_3;
+ __pyx_t_3 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1083
+ * for x from 0 <= x < dest.n_targets:
+ * seqname, seqlen = seqs[x]
+ * dest.target_name[x] = <char*>calloc( len( seqname ) + 1, sizeof(char) ) # <<<<<<<<<<<<<<
+ * strncpy( dest.target_name[x], seqname, len(seqname) + 1 )
+ * dest.target_len[x] = seqlen
+ */
+ __pyx_t_2 = PyObject_Length(__pyx_v_seqname); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1083; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ (__pyx_v_dest->target_name[__pyx_v_x]) = ((char *)calloc((__pyx_t_2 + 1), (sizeof(char))));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1084
+ * seqname, seqlen = seqs[x]
+ * dest.target_name[x] = <char*>calloc( len( seqname ) + 1, sizeof(char) )
+ * strncpy( dest.target_name[x], seqname, len(seqname) + 1 ) # <<<<<<<<<<<<<<
+ * dest.target_len[x] = seqlen
+ *
+ */
+ __pyx_t_10 = PyBytes_AsString(__pyx_v_seqname); if (unlikely((!__pyx_t_10) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1084; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_2 = PyObject_Length(__pyx_v_seqname); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1084; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ strncpy((__pyx_v_dest->target_name[__pyx_v_x]), __pyx_t_10, (__pyx_t_2 + 1));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1085
+ * dest.target_name[x] = <char*>calloc( len( seqname ) + 1, sizeof(char) )
+ * strncpy( dest.target_name[x], seqname, len(seqname) + 1 )
+ * dest.target_len[x] = seqlen # <<<<<<<<<<<<<<
+ *
+ * return dest
+ */
+ __pyx_t_13 = __Pyx_PyInt_from_py_uint32_t(__pyx_v_seqlen); if (unlikely((__pyx_t_13 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1085; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ (__pyx_v_dest->target_len[__pyx_v_x]) = __pyx_t_13;
+ }
+ goto __pyx_L11;
+ }
+ __pyx_L11:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1087
+ * dest.target_len[x] = seqlen
+ *
+ * return dest # <<<<<<<<<<<<<<
+ *
+ * ###############################################################
+ */
+ __pyx_r = __pyx_v_dest;
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_9);
+ __Pyx_XDECREF(__pyx_t_11);
+ __Pyx_WriteUnraisable("csamtools.Samfile._buildHeader");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_lines);
+ __Pyx_DECREF(__pyx_v_record);
+ __Pyx_DECREF(__pyx_v_ttype);
+ __Pyx_DECREF(__pyx_v_data);
+ __Pyx_DECREF(__pyx_v_fields);
+ __Pyx_DECREF(__pyx_v_text);
+ __Pyx_DECREF(__pyx_v_seqs);
+ __Pyx_DECREF(__pyx_v_seqname);
+ __Pyx_DECREF(__pyx_v_seqlen);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1097
+ * ## Possible solutions: deprecate or open new file handle
+ * ###############################################################
+ * def __iter__(self): # <<<<<<<<<<<<<<
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * return self
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_19__iter__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7Samfile_19__iter__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__iter__");
+ __Pyx_TraceCall("__iter__", __pyx_f[0], 1097);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1098
+ * ###############################################################
+ * def __iter__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return self
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1098; __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 = 1098; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1098; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_96), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1098; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1098; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1099
+ * def __iter__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" )
+ * return self # <<<<<<<<<<<<<<
+ *
+ * cdef bam1_t * getCurrent( self ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_self);
+ __pyx_r = __pyx_v_self;
+ 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("csamtools.Samfile.__iter__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1101
+ * return self
+ *
+ * cdef bam1_t * getCurrent( self ): # <<<<<<<<<<<<<<
+ * return self.b
+ *
+ */
+
+static bam1_t *__pyx_f_9csamtools_7Samfile_getCurrent(struct __pyx_obj_9csamtools_Samfile *__pyx_v_self) {
+ bam1_t *__pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("getCurrent");
+ __Pyx_TraceCall("getCurrent", __pyx_f[0], 1101);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1102
+ *
+ * cdef bam1_t * getCurrent( self ):
+ * return self.b # <<<<<<<<<<<<<<
+ *
+ * cdef int cnext(self):
+ */
+ __pyx_r = __pyx_v_self->b;
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1104
+ * return self.b
+ *
+ * cdef int cnext(self): # <<<<<<<<<<<<<<
+ * '''
+ * cversion of iterator. Used by :class:`pysam.Samfile.IteratorColumn`.
+ */
+
+static int __pyx_f_9csamtools_7Samfile_cnext(struct __pyx_obj_9csamtools_Samfile *__pyx_v_self) {
+ int __pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("cnext");
+ __Pyx_TraceCall("cnext", __pyx_f[0], 1104);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1109
+ * '''
+ * cdef int ret
+ * return samread(self.samfile, self.b) # <<<<<<<<<<<<<<
+ *
+ * def __next__(self):
+ */
+ __pyx_r = samread(__pyx_v_self->samfile, __pyx_v_self->b);
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1111
+ * return samread(self.samfile, self.b)
+ *
+ * def __next__(self): # <<<<<<<<<<<<<<
+ * """
+ * python version of next().
+ */
+
+static PyObject *__pyx_pf_9csamtools_7Samfile_20__next__(PyObject *__pyx_v_self); /*proto*/
+static char __pyx_doc_9csamtools_7Samfile_20__next__[] = "\n python version of next().\n ";
+struct wrapperbase __pyx_wrapperbase_9csamtools_7Samfile_20__next__;
+static PyObject *__pyx_pf_9csamtools_7Samfile_20__next__(PyObject *__pyx_v_self) {
+ int __pyx_v_ret;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__next__");
+ __Pyx_TraceCall("__next__", __pyx_f[0], 1111);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1116
+ * """
+ * cdef int ret
+ * ret = samread(self.samfile, self.b) # <<<<<<<<<<<<<<
+ * if (ret > 0):
+ * return makeAlignedRead( self.b )
+ */
+ __pyx_v_ret = samread(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->samfile, ((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->b);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1117
+ * cdef int ret
+ * ret = samread(self.samfile, self.b)
+ * if (ret > 0): # <<<<<<<<<<<<<<
+ * return makeAlignedRead( self.b )
+ * else:
+ */
+ __pyx_t_1 = (__pyx_v_ret > 0);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1118
+ * ret = samread(self.samfile, self.b)
+ * if (ret > 0):
+ * return makeAlignedRead( self.b ) # <<<<<<<<<<<<<<
+ * else:
+ * raise StopIteration
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = __pyx_f_9csamtools_makeAlignedRead(((struct __pyx_obj_9csamtools_Samfile *)__pyx_v_self)->b); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1118; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_r = __pyx_t_2;
+ __pyx_t_2 = 0;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1120
+ * return makeAlignedRead( self.b )
+ * else:
+ * raise StopIteration # <<<<<<<<<<<<<<
+ *
+ * ##-------------------------------------------------------------------
+ */
+ __Pyx_Raise(__pyx_builtin_StopIteration, 0, 0);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_L5:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.Samfile.__next__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1170
+ * cdef samfile_t * fp
+ *
+ * def __cinit__(self, Samfile samfile, int tid, int beg, int end, int reopen = True ): # <<<<<<<<<<<<<<
+ *
+ * if not samfile._isOpen():
+ */
+
+static int __pyx_pf_9csamtools_17IteratorRowRegion_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_17IteratorRowRegion_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_Samfile *__pyx_v_samfile = 0;
+ int __pyx_v_tid;
+ int __pyx_v_beg;
+ int __pyx_v_end;
+ int __pyx_v_reopen;
+ PyObject *__pyx_v_mode;
+ PyObject *__pyx_v_store;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ char *__pyx_t_5;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__samfile,&__pyx_n_s__tid,&__pyx_n_s__beg,&__pyx_n_s__end,&__pyx_n_s__reopen,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 1170);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[5] = {0,0,0,0,0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ 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;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__samfile);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__tid);
+ if (likely(values[1])) kw_args--;
+ else {
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 4, 5, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ case 2:
+ values[2] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__beg);
+ if (likely(values[2])) kw_args--;
+ else {
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 4, 5, 2); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ case 3:
+ values[3] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__end);
+ if (likely(values[3])) kw_args--;
+ else {
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 4, 5, 3); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ case 4:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__reopen);
+ if (value) { values[4] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)values[0]);
+ __pyx_v_tid = __Pyx_PyInt_AsInt(values[1]); if (unlikely((__pyx_v_tid == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_v_beg = __Pyx_PyInt_AsInt(values[2]); if (unlikely((__pyx_v_beg == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_v_end = __Pyx_PyInt_AsInt(values[3]); if (unlikely((__pyx_v_end == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ if (values[4]) {
+ __pyx_v_reopen = __Pyx_PyInt_AsInt(values[4]); if (unlikely((__pyx_v_reopen == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ } else {
+ __pyx_v_reopen = ((int)1);
+ }
+ } else {
+ __pyx_v_reopen = ((int)1);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 5:
+ __pyx_v_reopen = __Pyx_PyInt_AsInt(PyTuple_GET_ITEM(__pyx_args, 4)); if (unlikely((__pyx_v_reopen == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ case 4:
+ __pyx_v_end = __Pyx_PyInt_AsInt(PyTuple_GET_ITEM(__pyx_args, 3)); if (unlikely((__pyx_v_end == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_v_beg = __Pyx_PyInt_AsInt(PyTuple_GET_ITEM(__pyx_args, 2)); if (unlikely((__pyx_v_beg == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_v_tid = __Pyx_PyInt_AsInt(PyTuple_GET_ITEM(__pyx_args, 1)); if (unlikely((__pyx_v_tid == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)PyTuple_GET_ITEM(__pyx_args, 0));
+ break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 4, 5, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.IteratorRowRegion.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ __pyx_v_mode = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_store = Py_None; __Pyx_INCREF(Py_None);
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_samfile), __pyx_ptype_9csamtools_Samfile, 1, "samfile", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1170; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1172
+ * def __cinit__(self, Samfile samfile, int tid, int beg, int end, int reopen = True ):
+ *
+ * if not samfile._isOpen(): # <<<<<<<<<<<<<<
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_v_samfile), __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1172; __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 = 1172; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1172; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1173
+ *
+ * if not samfile._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * if not samfile._hasIndex():
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_97), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1173; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1173; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1175
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ * if not samfile._hasIndex(): # <<<<<<<<<<<<<<
+ * raise ValueError( "no index available for iteration" )
+ *
+ */
+ __pyx_t_2 = PyObject_GetAttr(((PyObject *)__pyx_v_samfile), __pyx_n_s___hasIndex); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1175; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1175; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1175; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = (!__pyx_t_4);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1176
+ *
+ * if not samfile._hasIndex():
+ * raise ValueError( "no index available for iteration" ) # <<<<<<<<<<<<<<
+ *
+ * # makes sure that samfile stays alive as long as the
+ */
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_99), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1176; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1176; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1180
+ * # makes sure that samfile stays alive as long as the
+ * # iterator is alive
+ * self.samfile = samfile # <<<<<<<<<<<<<<
+ *
+ * if samfile.isbam: mode = "rb"
+ */
+ __Pyx_INCREF(((PyObject *)__pyx_v_samfile));
+ __Pyx_GIVEREF(((PyObject *)__pyx_v_samfile));
+ __Pyx_GOTREF(((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->samfile);
+ __Pyx_DECREF(((PyObject *)((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->samfile));
+ ((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->samfile = __pyx_v_samfile;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1182
+ * self.samfile = samfile
+ *
+ * if samfile.isbam: mode = "rb" # <<<<<<<<<<<<<<
+ * else: mode = "r"
+ *
+ */
+ if (__pyx_v_samfile->isbam) {
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__rb));
+ __Pyx_DECREF(__pyx_v_mode);
+ __pyx_v_mode = ((PyObject *)__pyx_n_s__rb);
+ goto __pyx_L8;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1183
+ *
+ * if samfile.isbam: mode = "rb"
+ * else: mode = "r" # <<<<<<<<<<<<<<
+ *
+ * # reopen the file - note that this makes the iterator
+ */
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__r));
+ __Pyx_DECREF(__pyx_v_mode);
+ __pyx_v_mode = ((PyObject *)__pyx_n_s__r);
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1187
+ * # reopen the file - note that this makes the iterator
+ * # slow and causes pileup to slow down significantly.
+ * if reopen: # <<<<<<<<<<<<<<
+ * store = StderrStore()
+ * self.fp = samopen( samfile._filename, mode, NULL )
+ */
+ if (__pyx_v_reopen) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1188
+ * # slow and causes pileup to slow down significantly.
+ * if reopen:
+ * store = StderrStore() # <<<<<<<<<<<<<<
+ * self.fp = samopen( samfile._filename, mode, NULL )
+ * store.release()
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__StderrStore); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1188; __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 = 1188; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_v_store);
+ __pyx_v_store = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1189
+ * if reopen:
+ * store = StderrStore()
+ * self.fp = samopen( samfile._filename, mode, NULL ) # <<<<<<<<<<<<<<
+ * store.release()
+ * assert self.fp != NULL
+ */
+ __pyx_t_5 = PyBytes_AsString(__pyx_v_mode); if (unlikely((!__pyx_t_5) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1189; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->fp = samopen(__pyx_v_samfile->_filename, __pyx_t_5, NULL);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1190
+ * store = StderrStore()
+ * self.fp = samopen( samfile._filename, mode, NULL )
+ * store.release() # <<<<<<<<<<<<<<
+ * assert self.fp != NULL
+ *
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_store, __pyx_n_s__release); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1190; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1190; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1191
+ * self.fp = samopen( samfile._filename, mode, NULL )
+ * store.release()
+ * assert self.fp != NULL # <<<<<<<<<<<<<<
+ *
+ * self.retval = 0
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ if (unlikely(!(((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->fp != NULL))) {
+ PyErr_SetNone(PyExc_AssertionError);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1191; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+ goto __pyx_L9;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1193
+ * assert self.fp != NULL
+ *
+ * self.retval = 0 # <<<<<<<<<<<<<<
+ *
+ * self.iter = bam_iter_query(self.samfile.index,
+ */
+ ((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->retval = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1195
+ * self.retval = 0
+ *
+ * self.iter = bam_iter_query(self.samfile.index, # <<<<<<<<<<<<<<
+ * tid,
+ * beg,
+ */
+ ((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->iter = bam_iter_query(((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->samfile->index, __pyx_v_tid, __pyx_v_beg, __pyx_v_end);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1199
+ * beg,
+ * end)
+ * self.b = bam_init1() # <<<<<<<<<<<<<<
+ *
+ * def __iter__(self):
+ */
+ ((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->b = bam_init1();
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.IteratorRowRegion.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_mode);
+ __Pyx_DECREF(__pyx_v_store);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1201
+ * self.b = bam_init1()
+ *
+ * def __iter__(self): # <<<<<<<<<<<<<<
+ * return self
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_17IteratorRowRegion_1__iter__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_17IteratorRowRegion_1__iter__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__iter__");
+ __Pyx_TraceCall("__iter__", __pyx_f[0], 1201);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1202
+ *
+ * def __iter__(self):
+ * return self # <<<<<<<<<<<<<<
+ *
+ * cdef bam1_t * getCurrent( self ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_self);
+ __pyx_r = __pyx_v_self;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1204
+ * return self
+ *
+ * cdef bam1_t * getCurrent( self ): # <<<<<<<<<<<<<<
+ * return self.b
+ *
+ */
+
+static bam1_t *__pyx_f_9csamtools_17IteratorRowRegion_getCurrent(struct __pyx_obj_9csamtools_IteratorRowRegion *__pyx_v_self) {
+ bam1_t *__pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("getCurrent");
+ __Pyx_TraceCall("getCurrent", __pyx_f[0], 1204);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1205
+ *
+ * cdef bam1_t * getCurrent( self ):
+ * return self.b # <<<<<<<<<<<<<<
+ *
+ * cdef int cnext(self):
+ */
+ __pyx_r = __pyx_v_self->b;
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1207
+ * return self.b
+ *
+ * cdef int cnext(self): # <<<<<<<<<<<<<<
+ * '''cversion of iterator. Used by IteratorColumn'''
+ * self.retval = bam_iter_read( self.fp.x.bam,
+ */
+
+static int __pyx_f_9csamtools_17IteratorRowRegion_cnext(struct __pyx_obj_9csamtools_IteratorRowRegion *__pyx_v_self) {
+ int __pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("cnext");
+ __Pyx_TraceCall("cnext", __pyx_f[0], 1207);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1209
+ * cdef int cnext(self):
+ * '''cversion of iterator. Used by IteratorColumn'''
+ * self.retval = bam_iter_read( self.fp.x.bam, # <<<<<<<<<<<<<<
+ * self.iter,
+ * self.b)
+ */
+ __pyx_v_self->retval = bam_iter_read(__pyx_v_self->fp->x.bam, __pyx_v_self->iter, __pyx_v_self->b);
+
+ __pyx_r = 0;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1213
+ * self.b)
+ *
+ * def __next__(self): # <<<<<<<<<<<<<<
+ * """python version of next().
+ * """
+ */
+
+static PyObject *__pyx_pf_9csamtools_17IteratorRowRegion_2__next__(PyObject *__pyx_v_self); /*proto*/
+static char __pyx_doc_9csamtools_17IteratorRowRegion_2__next__[] = "python version of next().\n ";
+struct wrapperbase __pyx_wrapperbase_9csamtools_17IteratorRowRegion_2__next__;
+static PyObject *__pyx_pf_9csamtools_17IteratorRowRegion_2__next__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__next__");
+ __Pyx_TraceCall("__next__", __pyx_f[0], 1213);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1216
+ * """python version of next().
+ * """
+ * self.cnext() # <<<<<<<<<<<<<<
+ * if self.retval < 0: raise StopIteration
+ * return makeAlignedRead( self.b )
+ */
+ ((struct __pyx_vtabstruct_9csamtools_IteratorRowRegion *)((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->__pyx_vtab)->cnext(((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1217
+ * """
+ * self.cnext()
+ * if self.retval < 0: raise StopIteration # <<<<<<<<<<<<<<
+ * return makeAlignedRead( self.b )
+ *
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->retval < 0);
+ if (__pyx_t_1) {
+ __Pyx_Raise(__pyx_builtin_StopIteration, 0, 0);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1217; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1218
+ * self.cnext()
+ * if self.retval < 0: raise StopIteration
+ * return makeAlignedRead( self.b ) # <<<<<<<<<<<<<<
+ *
+ * def __dealloc__(self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = __pyx_f_9csamtools_makeAlignedRead(((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->b); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1218; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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_2);
+ __Pyx_AddTraceback("csamtools.IteratorRowRegion.__next__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1220
+ * return makeAlignedRead( self.b )
+ *
+ * def __dealloc__(self): # <<<<<<<<<<<<<<
+ * bam_destroy1(self.b)
+ * samclose( self.fp )
+ */
+
+static void __pyx_pf_9csamtools_17IteratorRowRegion_3__dealloc__(PyObject *__pyx_v_self); /*proto*/
+static void __pyx_pf_9csamtools_17IteratorRowRegion_3__dealloc__(PyObject *__pyx_v_self) {
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__dealloc__");
+ __Pyx_TraceCall("__dealloc__", __pyx_f[0], 1220);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1221
+ *
+ * def __dealloc__(self):
+ * bam_destroy1(self.b) # <<<<<<<<<<<<<<
+ * samclose( self.fp )
+ *
+ */
+ bam_destroy1(((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->b);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1222
+ * def __dealloc__(self):
+ * bam_destroy1(self.b)
+ * samclose( self.fp ) # <<<<<<<<<<<<<<
+ *
+ * cdef class IteratorRowAll(IteratorRow):
+ */
+ samclose(((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_v_self)->fp);
+
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1237
+ * cdef samfile_t * fp
+ *
+ * def __cinit__(self, Samfile samfile, int reopen = True ): # <<<<<<<<<<<<<<
+ *
+ * if not samfile._isOpen():
+ */
+
+static int __pyx_pf_9csamtools_14IteratorRowAll_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_14IteratorRowAll_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_Samfile *__pyx_v_samfile = 0;
+ int __pyx_v_reopen;
+ PyObject *__pyx_v_mode;
+ PyObject *__pyx_v_store;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ char *__pyx_t_5;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__samfile,&__pyx_n_s__reopen,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 1237);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[2] = {0,0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__samfile);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__reopen);
+ if (value) { values[1] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1237; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)values[0]);
+ if (values[1]) {
+ __pyx_v_reopen = __Pyx_PyInt_AsInt(values[1]); if (unlikely((__pyx_v_reopen == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1237; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ } else {
+ __pyx_v_reopen = ((int)1);
+ }
+ } else {
+ __pyx_v_reopen = ((int)1);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: __pyx_v_reopen = __Pyx_PyInt_AsInt(PyTuple_GET_ITEM(__pyx_args, 1)); if (unlikely((__pyx_v_reopen == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1237; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ case 1: __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)PyTuple_GET_ITEM(__pyx_args, 0));
+ break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1237; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.IteratorRowAll.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ __pyx_v_mode = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_store = Py_None; __Pyx_INCREF(Py_None);
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_samfile), __pyx_ptype_9csamtools_Samfile, 1, "samfile", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1237; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1239
+ * def __cinit__(self, Samfile samfile, int reopen = True ):
+ *
+ * if not samfile._isOpen(): # <<<<<<<<<<<<<<
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_v_samfile), __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1239; __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 = 1239; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1239; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1240
+ *
+ * if not samfile._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * if samfile.isbam: mode = "rb"
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_100), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1240; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1240; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1242
+ * raise ValueError( "I/O operation on closed file" )
+ *
+ * if samfile.isbam: mode = "rb" # <<<<<<<<<<<<<<
+ * else: mode = "r"
+ *
+ */
+ if (__pyx_v_samfile->isbam) {
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__rb));
+ __Pyx_DECREF(__pyx_v_mode);
+ __pyx_v_mode = ((PyObject *)__pyx_n_s__rb);
+ goto __pyx_L7;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1243
+ *
+ * if samfile.isbam: mode = "rb"
+ * else: mode = "r" # <<<<<<<<<<<<<<
+ *
+ * # reopen the file to avoid iterator conflict
+ */
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__r));
+ __Pyx_DECREF(__pyx_v_mode);
+ __pyx_v_mode = ((PyObject *)__pyx_n_s__r);
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1246
+ *
+ * # reopen the file to avoid iterator conflict
+ * if reopen: # <<<<<<<<<<<<<<
+ * store = StderrStore()
+ * self.fp = samopen( samfile._filename, mode, NULL )
+ */
+ if (__pyx_v_reopen) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1247
+ * # reopen the file to avoid iterator conflict
+ * if reopen:
+ * store = StderrStore() # <<<<<<<<<<<<<<
+ * self.fp = samopen( samfile._filename, mode, NULL )
+ * store.release()
+ */
+ __pyx_t_2 = __Pyx_GetName(__pyx_m, __pyx_n_s__StderrStore); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1247; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1247; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_v_store);
+ __pyx_v_store = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1248
+ * if reopen:
+ * store = StderrStore()
+ * self.fp = samopen( samfile._filename, mode, NULL ) # <<<<<<<<<<<<<<
+ * store.release()
+ * assert self.fp != NULL
+ */
+ __pyx_t_5 = PyBytes_AsString(__pyx_v_mode); if (unlikely((!__pyx_t_5) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1248; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_IteratorRowAll *)__pyx_v_self)->fp = samopen(__pyx_v_samfile->_filename, __pyx_t_5, NULL);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1249
+ * store = StderrStore()
+ * self.fp = samopen( samfile._filename, mode, NULL )
+ * store.release() # <<<<<<<<<<<<<<
+ * assert self.fp != NULL
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_store, __pyx_n_s__release); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1249; __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 = 1249; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1250
+ * self.fp = samopen( samfile._filename, mode, NULL )
+ * store.release()
+ * assert self.fp != NULL # <<<<<<<<<<<<<<
+ *
+ * # allocate memory for alignment
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ if (unlikely(!(((struct __pyx_obj_9csamtools_IteratorRowAll *)__pyx_v_self)->fp != NULL))) {
+ PyErr_SetNone(PyExc_AssertionError);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1250; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1253
+ *
+ * # allocate memory for alignment
+ * self.b = <bam1_t*>calloc(1, sizeof(bam1_t)) # <<<<<<<<<<<<<<
+ *
+ * def __iter__(self):
+ */
+ ((struct __pyx_obj_9csamtools_IteratorRowAll *)__pyx_v_self)->b = ((bam1_t *)calloc(1, (sizeof(bam1_t))));
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.IteratorRowAll.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_mode);
+ __Pyx_DECREF(__pyx_v_store);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1255
+ * self.b = <bam1_t*>calloc(1, sizeof(bam1_t))
+ *
+ * def __iter__(self): # <<<<<<<<<<<<<<
+ * return self
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_14IteratorRowAll_1__iter__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_14IteratorRowAll_1__iter__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__iter__");
+ __Pyx_TraceCall("__iter__", __pyx_f[0], 1255);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1256
+ *
+ * def __iter__(self):
+ * return self # <<<<<<<<<<<<<<
+ *
+ * cdef bam1_t * getCurrent( self ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_self);
+ __pyx_r = __pyx_v_self;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1258
+ * return self
+ *
+ * cdef bam1_t * getCurrent( self ): # <<<<<<<<<<<<<<
+ * return self.b
+ *
+ */
+
+static bam1_t *__pyx_f_9csamtools_14IteratorRowAll_getCurrent(struct __pyx_obj_9csamtools_IteratorRowAll *__pyx_v_self) {
+ bam1_t *__pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("getCurrent");
+ __Pyx_TraceCall("getCurrent", __pyx_f[0], 1258);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1259
+ *
+ * cdef bam1_t * getCurrent( self ):
+ * return self.b # <<<<<<<<<<<<<<
+ *
+ * cdef int cnext(self):
+ */
+ __pyx_r = __pyx_v_self->b;
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1261
+ * return self.b
+ *
+ * cdef int cnext(self): # <<<<<<<<<<<<<<
+ * '''cversion of iterator. Used by IteratorColumn'''
+ * cdef int ret
+ */
+
+static int __pyx_f_9csamtools_14IteratorRowAll_cnext(struct __pyx_obj_9csamtools_IteratorRowAll *__pyx_v_self) {
+ int __pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("cnext");
+ __Pyx_TraceCall("cnext", __pyx_f[0], 1261);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1264
+ * '''cversion of iterator. Used by IteratorColumn'''
+ * cdef int ret
+ * return samread(self.fp, self.b) # <<<<<<<<<<<<<<
+ *
+ * def __next__(self):
+ */
+ __pyx_r = samread(__pyx_v_self->fp, __pyx_v_self->b);
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1266
+ * return samread(self.fp, self.b)
+ *
+ * def __next__(self): # <<<<<<<<<<<<<<
+ * """python version of next().
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_14IteratorRowAll_2__next__(PyObject *__pyx_v_self); /*proto*/
+static char __pyx_doc_9csamtools_14IteratorRowAll_2__next__[] = "python version of next().\n\n pyrex uses this non-standard name instead of next()\n ";
+struct wrapperbase __pyx_wrapperbase_9csamtools_14IteratorRowAll_2__next__;
+static PyObject *__pyx_pf_9csamtools_14IteratorRowAll_2__next__(PyObject *__pyx_v_self) {
+ int __pyx_v_ret;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__next__");
+ __Pyx_TraceCall("__next__", __pyx_f[0], 1266);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1272
+ * """
+ * cdef int ret
+ * ret = samread(self.fp, self.b) # <<<<<<<<<<<<<<
+ * if (ret > 0):
+ * return makeAlignedRead( self.b )
+ */
+ __pyx_v_ret = samread(((struct __pyx_obj_9csamtools_IteratorRowAll *)__pyx_v_self)->fp, ((struct __pyx_obj_9csamtools_IteratorRowAll *)__pyx_v_self)->b);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1273
+ * cdef int ret
+ * ret = samread(self.fp, self.b)
+ * if (ret > 0): # <<<<<<<<<<<<<<
+ * return makeAlignedRead( self.b )
+ * else:
+ */
+ __pyx_t_1 = (__pyx_v_ret > 0);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1274
+ * ret = samread(self.fp, self.b)
+ * if (ret > 0):
+ * return makeAlignedRead( self.b ) # <<<<<<<<<<<<<<
+ * else:
+ * raise StopIteration
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = __pyx_f_9csamtools_makeAlignedRead(((struct __pyx_obj_9csamtools_IteratorRowAll *)__pyx_v_self)->b); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1274; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_r = __pyx_t_2;
+ __pyx_t_2 = 0;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1276
+ * return makeAlignedRead( self.b )
+ * else:
+ * raise StopIteration # <<<<<<<<<<<<<<
+ *
+ * def __dealloc__(self):
+ */
+ __Pyx_Raise(__pyx_builtin_StopIteration, 0, 0);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1276; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_L5:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.IteratorRowAll.__next__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1278
+ * raise StopIteration
+ *
+ * def __dealloc__(self): # <<<<<<<<<<<<<<
+ * bam_destroy1(self.b)
+ * samclose( self.fp )
+ */
+
+static void __pyx_pf_9csamtools_14IteratorRowAll_3__dealloc__(PyObject *__pyx_v_self); /*proto*/
+static void __pyx_pf_9csamtools_14IteratorRowAll_3__dealloc__(PyObject *__pyx_v_self) {
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__dealloc__");
+ __Pyx_TraceCall("__dealloc__", __pyx_f[0], 1278);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1279
+ *
+ * def __dealloc__(self):
+ * bam_destroy1(self.b) # <<<<<<<<<<<<<<
+ * samclose( self.fp )
+ *
+ */
+ bam_destroy1(((struct __pyx_obj_9csamtools_IteratorRowAll *)__pyx_v_self)->b);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1280
+ * def __dealloc__(self):
+ * bam_destroy1(self.b)
+ * samclose( self.fp ) # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ samclose(((struct __pyx_obj_9csamtools_IteratorRowAll *)__pyx_v_self)->fp);
+
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1290
+ * cdef IteratorRowRegion rowiter
+ *
+ * def __cinit__(self, Samfile samfile): # <<<<<<<<<<<<<<
+ * assert samfile._isOpen()
+ * if not samfile._hasIndex(): raise ValueError("no index available for fetch")
+ */
+
+static int __pyx_pf_9csamtools_18IteratorRowAllRefs_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_18IteratorRowAllRefs_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_Samfile *__pyx_v_samfile = 0;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__samfile,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 1290);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[1] = {0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__samfile);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1290; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)values[0]);
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 1) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)PyTuple_GET_ITEM(__pyx_args, 0));
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1290; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.IteratorRowAllRefs.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_samfile), __pyx_ptype_9csamtools_Samfile, 1, "samfile", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1290; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1291
+ *
+ * def __cinit__(self, Samfile samfile):
+ * assert samfile._isOpen() # <<<<<<<<<<<<<<
+ * if not samfile._hasIndex(): raise ValueError("no index available for fetch")
+ * self.samfile = samfile
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_v_samfile), __pyx_n_s___isOpen); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1291; __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 = 1291; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1291; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (unlikely(!__pyx_t_3)) {
+ PyErr_SetNone(PyExc_AssertionError);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1291; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1292
+ * def __cinit__(self, Samfile samfile):
+ * assert samfile._isOpen()
+ * if not samfile._hasIndex(): raise ValueError("no index available for fetch") # <<<<<<<<<<<<<<
+ * self.samfile = samfile
+ * self.tid = -1
+ */
+ __pyx_t_2 = PyObject_GetAttr(((PyObject *)__pyx_v_samfile), __pyx_n_s___hasIndex); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1292; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1292; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1292; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_4 = (!__pyx_t_3);
+ if (__pyx_t_4) {
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_101), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1292; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1292; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1293
+ * assert samfile._isOpen()
+ * if not samfile._hasIndex(): raise ValueError("no index available for fetch")
+ * self.samfile = samfile # <<<<<<<<<<<<<<
+ * self.tid = -1
+ *
+ */
+ __Pyx_INCREF(((PyObject *)__pyx_v_samfile));
+ __Pyx_GIVEREF(((PyObject *)__pyx_v_samfile));
+ __Pyx_GOTREF(((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->samfile);
+ __Pyx_DECREF(((PyObject *)((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->samfile));
+ ((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->samfile = __pyx_v_samfile;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1294
+ * if not samfile._hasIndex(): raise ValueError("no index available for fetch")
+ * self.samfile = samfile
+ * self.tid = -1 # <<<<<<<<<<<<<<
+ *
+ * def nextiter(self):
+ */
+ ((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->tid = -1;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.IteratorRowAllRefs.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1296
+ * self.tid = -1
+ *
+ * def nextiter(self): # <<<<<<<<<<<<<<
+ * self.rowiter = IteratorRowRegion(self.samfile, self.tid, 0, 1<<29)
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_18IteratorRowAllRefs_1nextiter(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static PyObject *__pyx_pf_9csamtools_18IteratorRowAllRefs_1nextiter(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("nextiter");
+ __Pyx_TraceCall("nextiter", __pyx_f[0], 1296);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1297
+ *
+ * def nextiter(self):
+ * self.rowiter = IteratorRowRegion(self.samfile, self.tid, 0, 1<<29) # <<<<<<<<<<<<<<
+ *
+ * def __iter__(self):
+ */
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->tid); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1297; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyTuple_New(4); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1297; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(((PyObject *)((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->samfile));
+ PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->samfile));
+ __Pyx_GIVEREF(((PyObject *)((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->samfile));
+ PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __Pyx_INCREF(__pyx_int_0);
+ PyTuple_SET_ITEM(__pyx_t_2, 2, __pyx_int_0);
+ __Pyx_GIVEREF(__pyx_int_0);
+ __Pyx_INCREF(__pyx_int_536870912);
+ PyTuple_SET_ITEM(__pyx_t_2, 3, __pyx_int_536870912);
+ __Pyx_GIVEREF(__pyx_int_536870912);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_IteratorRowRegion)), ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1297; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_GIVEREF(__pyx_t_1);
+ __Pyx_GOTREF(((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->rowiter);
+ __Pyx_DECREF(((PyObject *)((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->rowiter));
+ ((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->rowiter = ((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.IteratorRowAllRefs.nextiter");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1299
+ * self.rowiter = IteratorRowRegion(self.samfile, self.tid, 0, 1<<29)
+ *
+ * def __iter__(self): # <<<<<<<<<<<<<<
+ * return self
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_18IteratorRowAllRefs_2__iter__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_18IteratorRowAllRefs_2__iter__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__iter__");
+ __Pyx_TraceCall("__iter__", __pyx_f[0], 1299);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1300
+ *
+ * def __iter__(self):
+ * return self # <<<<<<<<<<<<<<
+ *
+ * def __next__(self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_self);
+ __pyx_r = __pyx_v_self;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1302
+ * return self
+ *
+ * def __next__(self): # <<<<<<<<<<<<<<
+ * """python version of next().
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_18IteratorRowAllRefs_3__next__(PyObject *__pyx_v_self); /*proto*/
+static char __pyx_doc_9csamtools_18IteratorRowAllRefs_3__next__[] = "python version of next().\n\n pyrex uses this non-standard name instead of next()\n ";
+struct wrapperbase __pyx_wrapperbase_9csamtools_18IteratorRowAllRefs_3__next__;
+static PyObject *__pyx_pf_9csamtools_18IteratorRowAllRefs_3__next__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ PyObject *__pyx_t_4 = NULL;
+ PyObject *__pyx_t_5 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__next__");
+ __Pyx_TraceCall("__next__", __pyx_f[0], 1302);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1308
+ * """
+ * # Create an initial iterator
+ * if self.tid==-1: # <<<<<<<<<<<<<<
+ * if not self.samfile.nreferences:
+ * raise StopIteration
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->tid == -1);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1309
+ * # Create an initial iterator
+ * if self.tid==-1:
+ * if not self.samfile.nreferences: # <<<<<<<<<<<<<<
+ * raise StopIteration
+ * self.tid = 0
+ */
+ __pyx_t_2 = PyObject_GetAttr(((PyObject *)((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->samfile), __pyx_n_s__nreferences); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1309; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1309; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_3 = (!__pyx_t_1);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1310
+ * if self.tid==-1:
+ * if not self.samfile.nreferences:
+ * raise StopIteration # <<<<<<<<<<<<<<
+ * self.tid = 0
+ * self.nextiter()
+ */
+ __Pyx_Raise(__pyx_builtin_StopIteration, 0, 0);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1310; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1311
+ * if not self.samfile.nreferences:
+ * raise StopIteration
+ * self.tid = 0 # <<<<<<<<<<<<<<
+ * self.nextiter()
+ *
+ */
+ ((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->tid = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1312
+ * raise StopIteration
+ * self.tid = 0
+ * self.nextiter() # <<<<<<<<<<<<<<
+ *
+ * while 1:
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__nextiter); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1312; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_4 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1312; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1314
+ * self.nextiter()
+ *
+ * while 1: # <<<<<<<<<<<<<<
+ * self.rowiter.cnext()
+ *
+ */
+ while (1) {
+ if (!1) break;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1315
+ *
+ * while 1:
+ * self.rowiter.cnext() # <<<<<<<<<<<<<<
+ *
+ * # If current iterator is not exhausted, return aligned read
+ */
+ ((struct __pyx_vtabstruct_9csamtools_IteratorRowRegion *)((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->rowiter->__pyx_vtab)->cnext(((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->rowiter);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1318
+ *
+ * # If current iterator is not exhausted, return aligned read
+ * if self.rowiter.retval>0: # <<<<<<<<<<<<<<
+ * return makeAlignedRead(self.rowiter.b)
+ *
+ */
+ __pyx_t_3 = (((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->rowiter->retval > 0);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1319
+ * # If current iterator is not exhausted, return aligned read
+ * if self.rowiter.retval>0:
+ * return makeAlignedRead(self.rowiter.b) # <<<<<<<<<<<<<<
+ *
+ * self.tid += 1
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_4 = __pyx_f_9csamtools_makeAlignedRead(((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->rowiter->b); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1319; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_r = __pyx_t_4;
+ __pyx_t_4 = 0;
+ goto __pyx_L0;
+ goto __pyx_L9;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1321
+ * return makeAlignedRead(self.rowiter.b)
+ *
+ * self.tid += 1 # <<<<<<<<<<<<<<
+ *
+ * # Otherwise, proceed to next reference or stop
+ */
+ ((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->tid = (((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->tid + 1);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1324
+ *
+ * # Otherwise, proceed to next reference or stop
+ * if self.tid<self.samfile.nreferences: # <<<<<<<<<<<<<<
+ * self.nextiter()
+ * else:
+ */
+ __pyx_t_4 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->tid); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1324; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_2 = PyObject_GetAttr(((PyObject *)((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)__pyx_v_self)->samfile), __pyx_n_s__nreferences); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1324; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_5 = PyObject_RichCompare(__pyx_t_4, __pyx_t_2, Py_LT); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1324; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_5); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1324; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1325
+ * # Otherwise, proceed to next reference or stop
+ * if self.tid<self.samfile.nreferences:
+ * self.nextiter() # <<<<<<<<<<<<<<
+ * else:
+ * raise StopIteration
+ */
+ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__nextiter); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1325; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_2 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1325; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ goto __pyx_L10;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1327
+ * self.nextiter()
+ * else:
+ * raise StopIteration # <<<<<<<<<<<<<<
+ *
+ * ##-------------------------------------------------------------------
+ */
+ __Pyx_Raise(__pyx_builtin_StopIteration, 0, 0);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1327; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_L10:;
+ }
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_AddTraceback("csamtools.IteratorRowAllRefs.__next__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1340
+ * int seq_len
+ *
+ * cdef int __advance_all( void * data, bam1_t * b ): # <<<<<<<<<<<<<<
+ * '''advance without any read filtering.
+ * '''
+ */
+
+static int __pyx_f_9csamtools___advance_all(void *__pyx_v_data, bam1_t *__pyx_v_b) {
+ __pyx_t_9csamtools___iterdata *__pyx_v_d;
+ int __pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__advance_all");
+ __Pyx_TraceCall("__advance_all", __pyx_f[0], 1340);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1344
+ * '''
+ * cdef __iterdata * d
+ * d = <__iterdata*>data # <<<<<<<<<<<<<<
+ * return bam_iter_read( d.samfile.x.bam, d.iter, b )
+ *
+ */
+ __pyx_v_d = ((__pyx_t_9csamtools___iterdata *)__pyx_v_data);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1345
+ * cdef __iterdata * d
+ * d = <__iterdata*>data
+ * return bam_iter_read( d.samfile.x.bam, d.iter, b ) # <<<<<<<<<<<<<<
+ *
+ * cdef int __advance_snpcalls( void * data, bam1_t * b ):
+ */
+ __pyx_r = bam_iter_read(__pyx_v_d->samfile->x.bam, __pyx_v_d->iter, __pyx_v_b);
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1347
+ * return bam_iter_read( d.samfile.x.bam, d.iter, b )
+ *
+ * cdef int __advance_snpcalls( void * data, bam1_t * b ): # <<<<<<<<<<<<<<
+ * '''advance using same filter and read processing as in
+ * the samtools pileup.
+ */
+
+static int __pyx_f_9csamtools___advance_snpcalls(void *__pyx_v_data, bam1_t *__pyx_v_b) {
+ __pyx_t_9csamtools___iterdata *__pyx_v_d;
+ int __pyx_v_ret;
+ int __pyx_v_skip;
+ int __pyx_v_q;
+ int __pyx_v_is_cns;
+ int __pyx_v_is_nobaq;
+ int __pyx_v_capQ_thres;
+ int __pyx_r;
+ int __pyx_t_1;
+ int __pyx_t_2;
+ int __pyx_t_3;
+ PyObject *__pyx_t_4 = NULL;
+ PyObject *__pyx_t_5 = NULL;
+ PyObject *__pyx_t_6 = NULL;
+ long __pyx_t_7;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__advance_snpcalls");
+ __Pyx_TraceCall("__advance_snpcalls", __pyx_f[0], 1347);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1352
+ * '''
+ * cdef __iterdata * d
+ * d = <__iterdata*>data # <<<<<<<<<<<<<<
+ *
+ * cdef int ret = bam_iter_read( d.samfile.x.bam, d.iter, b )
+ */
+ __pyx_v_d = ((__pyx_t_9csamtools___iterdata *)__pyx_v_data);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1354
+ * d = <__iterdata*>data
+ *
+ * cdef int ret = bam_iter_read( d.samfile.x.bam, d.iter, b ) # <<<<<<<<<<<<<<
+ * cdef int skip = 0
+ * cdef int q
+ */
+ __pyx_v_ret = bam_iter_read(__pyx_v_d->samfile->x.bam, __pyx_v_d->iter, __pyx_v_b);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1355
+ *
+ * cdef int ret = bam_iter_read( d.samfile.x.bam, d.iter, b )
+ * cdef int skip = 0 # <<<<<<<<<<<<<<
+ * cdef int q
+ * cdef int is_cns = 1
+ */
+ __pyx_v_skip = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1357
+ * cdef int skip = 0
+ * cdef int q
+ * cdef int is_cns = 1 # <<<<<<<<<<<<<<
+ * cdef int is_nobaq = 0
+ * cdef int capQ_thres = 0
+ */
+ __pyx_v_is_cns = 1;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1358
+ * cdef int q
+ * cdef int is_cns = 1
+ * cdef int is_nobaq = 0 # <<<<<<<<<<<<<<
+ * cdef int capQ_thres = 0
+ *
+ */
+ __pyx_v_is_nobaq = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1359
+ * cdef int is_cns = 1
+ * cdef int is_nobaq = 0
+ * cdef int capQ_thres = 0 # <<<<<<<<<<<<<<
+ *
+ * # reload sequence
+ */
+ __pyx_v_capQ_thres = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1362
+ *
+ * # reload sequence
+ * if d.fastafile != NULL and b.core.tid != d.tid: # <<<<<<<<<<<<<<
+ * if d.seq != NULL: free(d.seq)
+ * d.tid = b.core.tid;
+ */
+ __pyx_t_1 = (__pyx_v_d->fastafile != NULL);
+ if (__pyx_t_1) {
+ __pyx_t_2 = (__pyx_v_b->core.tid != __pyx_v_d->tid);
+ __pyx_t_3 = __pyx_t_2;
+ } else {
+ __pyx_t_3 = __pyx_t_1;
+ }
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1363
+ * # reload sequence
+ * if d.fastafile != NULL and b.core.tid != d.tid:
+ * if d.seq != NULL: free(d.seq) # <<<<<<<<<<<<<<
+ * d.tid = b.core.tid;
+ * d.seq = faidx_fetch_seq(d.fastafile,
+ */
+ __pyx_t_3 = (__pyx_v_d->seq != NULL);
+ if (__pyx_t_3) {
+ free(__pyx_v_d->seq);
+ goto __pyx_L4;
+ }
+ __pyx_L4:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1364
+ * if d.fastafile != NULL and b.core.tid != d.tid:
+ * if d.seq != NULL: free(d.seq)
+ * d.tid = b.core.tid; # <<<<<<<<<<<<<<
+ * d.seq = faidx_fetch_seq(d.fastafile,
+ * d.samfile.header.target_name[d.tid],
+ */
+ __pyx_v_d->tid = __pyx_v_b->core.tid;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1365
+ * if d.seq != NULL: free(d.seq)
+ * d.tid = b.core.tid;
+ * d.seq = faidx_fetch_seq(d.fastafile, # <<<<<<<<<<<<<<
+ * d.samfile.header.target_name[d.tid],
+ * 0, max_pos,
+ */
+ __pyx_v_d->seq = faidx_fetch_seq(__pyx_v_d->fastafile, (__pyx_v_d->samfile->header->target_name[__pyx_v_d->tid]), 0, __pyx_v_9csamtools_max_pos, (&__pyx_v_d->seq_len));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1370
+ * &d.seq_len)
+ *
+ * if d.seq == NULL: # <<<<<<<<<<<<<<
+ * raise ValueError( "reference sequence for '%s' (tid=%i) not found" % \
+ * (d.samfile.header.target_name[d.tid],
+ */
+ __pyx_t_3 = (__pyx_v_d->seq == NULL);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1372
+ * if d.seq == NULL:
+ * raise ValueError( "reference sequence for '%s' (tid=%i) not found" % \
+ * (d.samfile.header.target_name[d.tid], # <<<<<<<<<<<<<<
+ * d.tid))
+ *
+ */
+ __pyx_t_4 = PyBytes_FromString((__pyx_v_d->samfile->header->target_name[__pyx_v_d->tid])); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1372; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1373
+ * raise ValueError( "reference sequence for '%s' (tid=%i) not found" % \
+ * (d.samfile.header.target_name[d.tid],
+ * d.tid)) # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ __pyx_t_5 = PyInt_FromLong(__pyx_v_d->tid); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1373; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_6 = PyTuple_New(2); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1372; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ PyTuple_SET_ITEM(__pyx_t_6, 0, ((PyObject *)__pyx_t_4));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_4));
+ PyTuple_SET_ITEM(__pyx_t_6, 1, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ __pyx_t_4 = 0;
+ __pyx_t_5 = 0;
+ __pyx_t_5 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_102), ((PyObject *)__pyx_t_6)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1371; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ __Pyx_DECREF(((PyObject *)__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 = 1371; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ PyTuple_SET_ITEM(__pyx_t_6, 0, ((PyObject *)__pyx_t_5));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_5));
+ __pyx_t_5 = 0;
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_6), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1371; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
+ __Pyx_Raise(__pyx_t_5, 0, 0);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1371; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+ goto __pyx_L3;
+ }
+ __pyx_L3:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1376
+ *
+ *
+ * while ret >= 0: # <<<<<<<<<<<<<<
+ *
+ * skip = 0
+ */
+ while (1) {
+ __pyx_t_3 = (__pyx_v_ret >= 0);
+ if (!__pyx_t_3) break;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1378
+ * while ret >= 0:
+ *
+ * skip = 0 # <<<<<<<<<<<<<<
+ *
+ * # realign read - changes base qualities
+ */
+ __pyx_v_skip = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1381
+ *
+ * # realign read - changes base qualities
+ * if d.seq != NULL and is_cns and not is_nobaq: bam_prob_realn( b, d.seq ) # <<<<<<<<<<<<<<
+ *
+ * if d.seq != NULL and capQ_thres > 10:
+ */
+ __pyx_t_3 = (__pyx_v_d->seq != NULL);
+ if (__pyx_t_3) {
+ if (__pyx_v_is_cns) {
+ __pyx_t_1 = (!__pyx_v_is_nobaq);
+ __pyx_t_2 = __pyx_t_1;
+ } else {
+ __pyx_t_2 = __pyx_v_is_cns;
+ }
+ __pyx_t_1 = __pyx_t_2;
+ } else {
+ __pyx_t_1 = __pyx_t_3;
+ }
+ if (__pyx_t_1) {
+ bam_prob_realn(__pyx_v_b, __pyx_v_d->seq);
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1383
+ * if d.seq != NULL and is_cns and not is_nobaq: bam_prob_realn( b, d.seq )
+ *
+ * if d.seq != NULL and capQ_thres > 10: # <<<<<<<<<<<<<<
+ * q = bam_cap_mapQ(b, d.seq, capQ_thres)
+ * if q < 0: skip = 1
+ */
+ __pyx_t_1 = (__pyx_v_d->seq != NULL);
+ if (__pyx_t_1) {
+ __pyx_t_3 = (__pyx_v_capQ_thres > 10);
+ __pyx_t_2 = __pyx_t_3;
+ } else {
+ __pyx_t_2 = __pyx_t_1;
+ }
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1384
+ *
+ * if d.seq != NULL and capQ_thres > 10:
+ * q = bam_cap_mapQ(b, d.seq, capQ_thres) # <<<<<<<<<<<<<<
+ * if q < 0: skip = 1
+ * elif b.core.qual > q: b.core.qual = q
+ */
+ __pyx_v_q = bam_cap_mapQ(__pyx_v_b, __pyx_v_d->seq, __pyx_v_capQ_thres);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1385
+ * if d.seq != NULL and capQ_thres > 10:
+ * q = bam_cap_mapQ(b, d.seq, capQ_thres)
+ * if q < 0: skip = 1 # <<<<<<<<<<<<<<
+ * elif b.core.qual > q: b.core.qual = q
+ * if b.core.flag & BAM_FUNMAP: skip = 1
+ */
+ __pyx_t_2 = (__pyx_v_q < 0);
+ if (__pyx_t_2) {
+ __pyx_v_skip = 1;
+ goto __pyx_L10;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1386
+ * q = bam_cap_mapQ(b, d.seq, capQ_thres)
+ * if q < 0: skip = 1
+ * elif b.core.qual > q: b.core.qual = q # <<<<<<<<<<<<<<
+ * if b.core.flag & BAM_FUNMAP: skip = 1
+ * elif b.core.flag & 1 and not b.core.flag & 2: skip = 1
+ */
+ __pyx_t_2 = (__pyx_v_b->core.qual > __pyx_v_q);
+ if (__pyx_t_2) {
+ __pyx_v_b->core.qual = __pyx_v_q;
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+ goto __pyx_L9;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1387
+ * if q < 0: skip = 1
+ * elif b.core.qual > q: b.core.qual = q
+ * if b.core.flag & BAM_FUNMAP: skip = 1 # <<<<<<<<<<<<<<
+ * elif b.core.flag & 1 and not b.core.flag & 2: skip = 1
+ *
+ */
+ __pyx_t_7 = (__pyx_v_b->core.flag & 4);
+ if (__pyx_t_7) {
+ __pyx_v_skip = 1;
+ goto __pyx_L11;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1388
+ * elif b.core.qual > q: b.core.qual = q
+ * if b.core.flag & BAM_FUNMAP: skip = 1
+ * elif b.core.flag & 1 and not b.core.flag & 2: skip = 1 # <<<<<<<<<<<<<<
+ *
+ * if not skip: break
+ */
+ if ((__pyx_v_b->core.flag & 1)) {
+ __pyx_t_2 = (!(__pyx_v_b->core.flag & 2));
+ __pyx_t_1 = __pyx_t_2;
+ } else {
+ __pyx_t_1 = (__pyx_v_b->core.flag & 1);
+ }
+ if (__pyx_t_1) {
+ __pyx_v_skip = 1;
+ goto __pyx_L11;
+ }
+ __pyx_L11:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1390
+ * elif b.core.flag & 1 and not b.core.flag & 2: skip = 1
+ *
+ * if not skip: break # <<<<<<<<<<<<<<
+ * # additional filters
+ *
+ */
+ __pyx_t_1 = (!__pyx_v_skip);
+ if (__pyx_t_1) {
+ goto __pyx_L7_break;
+ goto __pyx_L12;
+ }
+ __pyx_L12:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1393
+ * # additional filters
+ *
+ * ret = bam_iter_read( d.samfile.x.bam, d.iter, b ) # <<<<<<<<<<<<<<
+ *
+ * return ret
+ */
+ __pyx_v_ret = bam_iter_read(__pyx_v_d->samfile->x.bam, __pyx_v_d->iter, __pyx_v_b);
+ }
+ __pyx_L7_break:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1395
+ * ret = bam_iter_read( d.samfile.x.bam, d.iter, b )
+ *
+ * return ret # <<<<<<<<<<<<<<
+ *
+ * cdef class IteratorColumn:
+ */
+ __pyx_r = __pyx_v_ret;
+ goto __pyx_L0;
+
+ __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_WriteUnraisable("csamtools.__advance_snpcalls");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1454
+ * cdef stepper
+ *
+ * def __cinit__( self, Samfile samfile, **kwargs ): # <<<<<<<<<<<<<<
+ * self.samfile = samfile
+ * self.mask = kwargs.get("mask", BAM_DEF_MASK )
+ */
+
+static int __pyx_pf_9csamtools_14IteratorColumn_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_14IteratorColumn_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_Samfile *__pyx_v_samfile = 0;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__samfile,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 1454);
+ __pyx_v_kwargs = PyDict_New(); if (unlikely(!__pyx_v_kwargs)) return -1;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[1] = {0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__samfile);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_kwargs, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1454; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)values[0]);
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 1) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)PyTuple_GET_ITEM(__pyx_args, 0));
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1454; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_AddTraceback("csamtools.IteratorColumn.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_samfile), __pyx_ptype_9csamtools_Samfile, 1, "samfile", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1454; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1455
+ *
+ * def __cinit__( self, Samfile samfile, **kwargs ):
+ * self.samfile = samfile # <<<<<<<<<<<<<<
+ * self.mask = kwargs.get("mask", BAM_DEF_MASK )
+ * self.fastafile = kwargs.get( "fastafile", None )
+ */
+ __Pyx_INCREF(((PyObject *)__pyx_v_samfile));
+ __Pyx_GIVEREF(((PyObject *)__pyx_v_samfile));
+ __Pyx_GOTREF(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->samfile);
+ __Pyx_DECREF(((PyObject *)((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->samfile));
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->samfile = __pyx_v_samfile;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1456
+ * def __cinit__( self, Samfile samfile, **kwargs ):
+ * self.samfile = samfile
+ * self.mask = kwargs.get("mask", BAM_DEF_MASK ) # <<<<<<<<<<<<<<
+ * self.fastafile = kwargs.get( "fastafile", None )
+ * self.stepper = kwargs.get( "stepper", None )
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1456; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_1 = PyInt_FromLong(BAM_DEF_MASK); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1456; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__mask), __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1456; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __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 = 1456; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->mask = __pyx_t_3;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1457
+ * self.samfile = samfile
+ * self.mask = kwargs.get("mask", BAM_DEF_MASK )
+ * self.fastafile = kwargs.get( "fastafile", None ) # <<<<<<<<<<<<<<
+ * self.stepper = kwargs.get( "stepper", None )
+ * self.iterdata.seq = NULL
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1457; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__fastafile), Py_None); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1457; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ if (!(likely(((__pyx_t_2) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_2, __pyx_ptype_9csamtools_Fastafile))))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1457; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GIVEREF(__pyx_t_2);
+ __Pyx_GOTREF(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->fastafile);
+ __Pyx_DECREF(((PyObject *)((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->fastafile));
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->fastafile = ((struct __pyx_obj_9csamtools_Fastafile *)__pyx_t_2);
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1458
+ * self.mask = kwargs.get("mask", BAM_DEF_MASK )
+ * self.fastafile = kwargs.get( "fastafile", None )
+ * self.stepper = kwargs.get( "stepper", None ) # <<<<<<<<<<<<<<
+ * self.iterdata.seq = NULL
+ * self.tid = 0
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1458; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__stepper), Py_None); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1458; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ __Pyx_GOTREF(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->stepper);
+ __Pyx_DECREF(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->stepper);
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->stepper = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1459
+ * self.fastafile = kwargs.get( "fastafile", None )
+ * self.stepper = kwargs.get( "stepper", None )
+ * self.iterdata.seq = NULL # <<<<<<<<<<<<<<
+ * self.tid = 0
+ * self.pos = 0
+ */
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->iterdata.seq = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1460
+ * self.stepper = kwargs.get( "stepper", None )
+ * self.iterdata.seq = NULL
+ * self.tid = 0 # <<<<<<<<<<<<<<
+ * self.pos = 0
+ * self.n_plp = 0
+ */
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->tid = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1461
+ * self.iterdata.seq = NULL
+ * self.tid = 0
+ * self.pos = 0 # <<<<<<<<<<<<<<
+ * self.n_plp = 0
+ * self.plp = NULL
+ */
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->pos = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1462
+ * self.tid = 0
+ * self.pos = 0
+ * self.n_plp = 0 # <<<<<<<<<<<<<<
+ * self.plp = NULL
+ * self.pileup_iter = <bam_plp_t>NULL
+ */
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->n_plp = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1463
+ * self.pos = 0
+ * self.n_plp = 0
+ * self.plp = NULL # <<<<<<<<<<<<<<
+ * self.pileup_iter = <bam_plp_t>NULL
+ *
+ */
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->plp = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1464
+ * self.n_plp = 0
+ * self.plp = NULL
+ * self.pileup_iter = <bam_plp_t>NULL # <<<<<<<<<<<<<<
+ *
+ * def __iter__(self):
+ */
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->pileup_iter = ((bam_plp_t)NULL);
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.IteratorColumn.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1466
+ * self.pileup_iter = <bam_plp_t>NULL
+ *
+ * def __iter__(self): # <<<<<<<<<<<<<<
+ * return self
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_14IteratorColumn_1__iter__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_14IteratorColumn_1__iter__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__iter__");
+ __Pyx_TraceCall("__iter__", __pyx_f[0], 1466);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1467
+ *
+ * def __iter__(self):
+ * return self # <<<<<<<<<<<<<<
+ *
+ * cdef int cnext(self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_self);
+ __pyx_r = __pyx_v_self;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1469
+ * return self
+ *
+ * cdef int cnext(self): # <<<<<<<<<<<<<<
+ * '''perform next iteration.
+ *
+ */
+
+static int __pyx_f_9csamtools_14IteratorColumn_cnext(struct __pyx_obj_9csamtools_IteratorColumn *__pyx_v_self) {
+ int __pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("cnext");
+ __Pyx_TraceCall("cnext", __pyx_f[0], 1469);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1475
+ * It has been re-implemented to permit for filtering.
+ * '''
+ * self.plp = bam_plp_auto( self.pileup_iter, # <<<<<<<<<<<<<<
+ * &self.tid,
+ * &self.pos,
+ */
+ __pyx_v_self->plp = bam_plp_auto(__pyx_v_self->pileup_iter, (&__pyx_v_self->tid), (&__pyx_v_self->pos), (&__pyx_v_self->n_plp));
+
+ __pyx_r = 0;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1480
+ * &self.n_plp )
+ *
+ * cdef char * getSequence( self ): # <<<<<<<<<<<<<<
+ * '''return current reference sequence underlying the iterator.
+ * '''
+ */
+
+static char *__pyx_f_9csamtools_14IteratorColumn_getSequence(struct __pyx_obj_9csamtools_IteratorColumn *__pyx_v_self) {
+ char *__pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("getSequence");
+ __Pyx_TraceCall("getSequence", __pyx_f[0], 1480);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1483
+ * '''return current reference sequence underlying the iterator.
+ * '''
+ * return self.iterdata.seq # <<<<<<<<<<<<<<
+ *
+ * property seq_len:
+ */
+ __pyx_r = __pyx_v_self->iterdata.seq;
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1487
+ * property seq_len:
+ * '''current sequence length.'''
+ * def __get__(self): return self.iterdata.seq_len # <<<<<<<<<<<<<<
+ *
+ * def addReference( self, Fastafile fastafile ):
+ */
+
+static PyObject *__pyx_pf_9csamtools_14IteratorColumn_7seq_len_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_14IteratorColumn_7seq_len_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 1487);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->iterdata.seq_len); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1487; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IteratorColumn.seq_len.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1489
+ * def __get__(self): return self.iterdata.seq_len
+ *
+ * def addReference( self, Fastafile fastafile ): # <<<<<<<<<<<<<<
+ * '''
+ * add reference sequences in *fastafile* to iterator.'''
+ */
+
+static PyObject *__pyx_pf_9csamtools_14IteratorColumn_2addReference(PyObject *__pyx_v_self, PyObject *__pyx_v_fastafile); /*proto*/
+static char __pyx_doc_9csamtools_14IteratorColumn_2addReference[] = "\n add reference sequences in *fastafile* to iterator.";
+static PyObject *__pyx_pf_9csamtools_14IteratorColumn_2addReference(PyObject *__pyx_v_self, PyObject *__pyx_v_fastafile) {
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("addReference");
+ __Pyx_TraceCall("addReference", __pyx_f[0], 1489);
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_fastafile), __pyx_ptype_9csamtools_Fastafile, 1, "fastafile", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1489; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1492
+ * '''
+ * add reference sequences in *fastafile* to iterator.'''
+ * self.fastafile = fastafile # <<<<<<<<<<<<<<
+ * if self.iterdata.seq != NULL: free(self.iterdata.seq)
+ * self.iterdata.tid = -1
+ */
+ __Pyx_INCREF(__pyx_v_fastafile);
+ __Pyx_GIVEREF(__pyx_v_fastafile);
+ __Pyx_GOTREF(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->fastafile);
+ __Pyx_DECREF(((PyObject *)((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->fastafile));
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->fastafile = ((struct __pyx_obj_9csamtools_Fastafile *)__pyx_v_fastafile);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1493
+ * add reference sequences in *fastafile* to iterator.'''
+ * self.fastafile = fastafile
+ * if self.iterdata.seq != NULL: free(self.iterdata.seq) # <<<<<<<<<<<<<<
+ * self.iterdata.tid = -1
+ * self.iterdata.fastafile = self.fastafile.fastafile
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->iterdata.seq != NULL);
+ if (__pyx_t_1) {
+ free(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->iterdata.seq);
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1494
+ * self.fastafile = fastafile
+ * if self.iterdata.seq != NULL: free(self.iterdata.seq)
+ * self.iterdata.tid = -1 # <<<<<<<<<<<<<<
+ * self.iterdata.fastafile = self.fastafile.fastafile
+ *
+ */
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->iterdata.tid = -1;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1495
+ * if self.iterdata.seq != NULL: free(self.iterdata.seq)
+ * self.iterdata.tid = -1
+ * self.iterdata.fastafile = self.fastafile.fastafile # <<<<<<<<<<<<<<
+ *
+ * def hasReference( self ):
+ */
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->iterdata.fastafile = ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->fastafile->fastafile;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.IteratorColumn.addReference");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1497
+ * self.iterdata.fastafile = self.fastafile.fastafile
+ *
+ * def hasReference( self ): # <<<<<<<<<<<<<<
+ * '''
+ * return true if iterator is associated with a reference'''
+ */
+
+static PyObject *__pyx_pf_9csamtools_14IteratorColumn_3hasReference(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static char __pyx_doc_9csamtools_14IteratorColumn_3hasReference[] = "\n return true if iterator is associated with a reference";
+static PyObject *__pyx_pf_9csamtools_14IteratorColumn_3hasReference(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
+ PyObject *__pyx_r = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("hasReference");
+ __Pyx_TraceCall("hasReference", __pyx_f[0], 1497);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1500
+ * '''
+ * return true if iterator is associated with a reference'''
+ * return self.fastafile # <<<<<<<<<<<<<<
+ *
+ * cdef setMask( self, mask ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->fastafile));
+ __pyx_r = ((PyObject *)((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->fastafile);
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1502
+ * return self.fastafile
+ *
+ * cdef setMask( self, mask ): # <<<<<<<<<<<<<<
+ * '''set masking flag in iterator.
+ *
+ */
+
+static PyObject *__pyx_f_9csamtools_14IteratorColumn_setMask(struct __pyx_obj_9csamtools_IteratorColumn *__pyx_v_self, PyObject *__pyx_v_mask) {
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("setMask");
+ __Pyx_TraceCall("setMask", __pyx_f[0], 1502);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1507
+ * reads with bits set in *mask* will be skipped.
+ * '''
+ * self.mask = mask # <<<<<<<<<<<<<<
+ * bam_plp_set_mask( self.pileup_iter, self.mask )
+ *
+ */
+ __pyx_t_1 = __Pyx_PyInt_AsInt(__pyx_v_mask); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1507; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_self->mask = __pyx_t_1;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1508
+ * '''
+ * self.mask = mask
+ * bam_plp_set_mask( self.pileup_iter, self.mask ) # <<<<<<<<<<<<<<
+ *
+ * cdef setupIteratorData( self,
+ */
+ bam_plp_set_mask(__pyx_v_self->pileup_iter, __pyx_v_self->mask);
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.IteratorColumn.setMask");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1510
+ * bam_plp_set_mask( self.pileup_iter, self.mask )
+ *
+ * cdef setupIteratorData( self, # <<<<<<<<<<<<<<
+ * int tid,
+ * int start,
+ */
+
+static PyObject *__pyx_f_9csamtools_14IteratorColumn_setupIteratorData(struct __pyx_obj_9csamtools_IteratorColumn *__pyx_v_self, int __pyx_v_tid, int __pyx_v_start, int __pyx_v_end, struct __pyx_opt_args_9csamtools_14IteratorColumn_setupIteratorData *__pyx_optional_args) {
+ int __pyx_v_reopen = ((int)0);
+ PyObject *__pyx_r = NULL;
+ 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;
+ int __pyx_t_6;
+ int __pyx_t_7;
+ int __pyx_t_8;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("setupIteratorData");
+ __Pyx_TraceCall("setupIteratorData", __pyx_f[0], 1510);
+ if (__pyx_optional_args) {
+ if (__pyx_optional_args->__pyx_n > 0) {
+ __pyx_v_reopen = __pyx_optional_args->reopen;
+ }
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1517
+ * '''setup the iterator structure'''
+ *
+ * self.iter = IteratorRowRegion( self.samfile, tid, start, end, reopen ) # <<<<<<<<<<<<<<
+ * self.iterdata.samfile = self.samfile.samfile
+ * self.iterdata.iter = self.iter.iter
+ */
+ __pyx_t_1 = PyInt_FromLong(__pyx_v_tid); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1517; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyInt_FromLong(__pyx_v_start); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1517; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyInt_FromLong(__pyx_v_end); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1517; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyInt_FromLong(__pyx_v_reopen); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1517; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_5 = PyTuple_New(5); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1517; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ __Pyx_INCREF(((PyObject *)__pyx_v_self->samfile));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_v_self->samfile));
+ __Pyx_GIVEREF(((PyObject *)__pyx_v_self->samfile));
+ PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ PyTuple_SET_ITEM(__pyx_t_5, 2, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ PyTuple_SET_ITEM(__pyx_t_5, 3, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ PyTuple_SET_ITEM(__pyx_t_5, 4, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ __pyx_t_1 = 0;
+ __pyx_t_2 = 0;
+ __pyx_t_3 = 0;
+ __pyx_t_4 = 0;
+ __pyx_t_4 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_IteratorRowRegion)), ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1517; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __Pyx_GIVEREF(__pyx_t_4);
+ __Pyx_GOTREF(__pyx_v_self->iter);
+ __Pyx_DECREF(((PyObject *)__pyx_v_self->iter));
+ __pyx_v_self->iter = ((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_t_4);
+ __pyx_t_4 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1518
+ *
+ * self.iter = IteratorRowRegion( self.samfile, tid, start, end, reopen )
+ * self.iterdata.samfile = self.samfile.samfile # <<<<<<<<<<<<<<
+ * self.iterdata.iter = self.iter.iter
+ * self.iterdata.seq = NULL
+ */
+ __pyx_v_self->iterdata.samfile = __pyx_v_self->samfile->samfile;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1519
+ * self.iter = IteratorRowRegion( self.samfile, tid, start, end, reopen )
+ * self.iterdata.samfile = self.samfile.samfile
+ * self.iterdata.iter = self.iter.iter # <<<<<<<<<<<<<<
+ * self.iterdata.seq = NULL
+ * self.iterdata.tid = -1
+ */
+ __pyx_v_self->iterdata.iter = __pyx_v_self->iter->iter;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1520
+ * self.iterdata.samfile = self.samfile.samfile
+ * self.iterdata.iter = self.iter.iter
+ * self.iterdata.seq = NULL # <<<<<<<<<<<<<<
+ * self.iterdata.tid = -1
+ *
+ */
+ __pyx_v_self->iterdata.seq = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1521
+ * self.iterdata.iter = self.iter.iter
+ * self.iterdata.seq = NULL
+ * self.iterdata.tid = -1 # <<<<<<<<<<<<<<
+ *
+ * if self.fastafile != None:
+ */
+ __pyx_v_self->iterdata.tid = -1;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1523
+ * self.iterdata.tid = -1
+ *
+ * if self.fastafile != None: # <<<<<<<<<<<<<<
+ * self.iterdata.fastafile = self.fastafile.fastafile
+ * else:
+ */
+ __pyx_t_4 = PyObject_RichCompare(((PyObject *)__pyx_v_self->fastafile), Py_None, Py_NE); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1523; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1523; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ if (__pyx_t_6) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1524
+ *
+ * if self.fastafile != None:
+ * self.iterdata.fastafile = self.fastafile.fastafile # <<<<<<<<<<<<<<
+ * else:
+ * self.iterdata.fastafile = NULL
+ */
+ __pyx_v_self->iterdata.fastafile = __pyx_v_self->fastafile->fastafile;
+ goto __pyx_L3;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1526
+ * self.iterdata.fastafile = self.fastafile.fastafile
+ * else:
+ * self.iterdata.fastafile = NULL # <<<<<<<<<<<<<<
+ *
+ * if self.stepper == None or self.stepper == "all":
+ */
+ __pyx_v_self->iterdata.fastafile = NULL;
+ }
+ __pyx_L3:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1528
+ * self.iterdata.fastafile = NULL
+ *
+ * if self.stepper == None or self.stepper == "all": # <<<<<<<<<<<<<<
+ * self.pileup_iter = bam_plp_init( &__advance_all, &self.iterdata )
+ * elif self.stepper == "samtools":
+ */
+ __pyx_t_4 = PyObject_RichCompare(__pyx_v_self->stepper, Py_None, Py_EQ); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1528; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1528; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ if (!__pyx_t_6) {
+ __pyx_t_4 = PyObject_RichCompare(__pyx_v_self->stepper, ((PyObject *)__pyx_n_s__all), Py_EQ); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1528; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_7 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_7 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1528; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __pyx_t_8 = __pyx_t_7;
+ } else {
+ __pyx_t_8 = __pyx_t_6;
+ }
+ if (__pyx_t_8) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1529
+ *
+ * if self.stepper == None or self.stepper == "all":
+ * self.pileup_iter = bam_plp_init( &__advance_all, &self.iterdata ) # <<<<<<<<<<<<<<
+ * elif self.stepper == "samtools":
+ * self.pileup_iter = bam_plp_init( &__advance_snpcalls, &self.iterdata )
+ */
+ __pyx_v_self->pileup_iter = bam_plp_init((&__pyx_f_9csamtools___advance_all), (&__pyx_v_self->iterdata));
+ goto __pyx_L4;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1530
+ * if self.stepper == None or self.stepper == "all":
+ * self.pileup_iter = bam_plp_init( &__advance_all, &self.iterdata )
+ * elif self.stepper == "samtools": # <<<<<<<<<<<<<<
+ * self.pileup_iter = bam_plp_init( &__advance_snpcalls, &self.iterdata )
+ * else:
+ */
+ __pyx_t_4 = PyObject_RichCompare(__pyx_v_self->stepper, ((PyObject *)__pyx_n_s__samtools), Py_EQ); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1530; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_8 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_8 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1530; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ if (__pyx_t_8) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1531
+ * self.pileup_iter = bam_plp_init( &__advance_all, &self.iterdata )
+ * elif self.stepper == "samtools":
+ * self.pileup_iter = bam_plp_init( &__advance_snpcalls, &self.iterdata ) # <<<<<<<<<<<<<<
+ * else:
+ * raise ValueError( "unknown stepper option `%s` in IteratorColumn" % self.stepper)
+ */
+ __pyx_v_self->pileup_iter = bam_plp_init((&__pyx_f_9csamtools___advance_snpcalls), (&__pyx_v_self->iterdata));
+ goto __pyx_L4;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1533
+ * self.pileup_iter = bam_plp_init( &__advance_snpcalls, &self.iterdata )
+ * else:
+ * raise ValueError( "unknown stepper option `%s` in IteratorColumn" % self.stepper) # <<<<<<<<<<<<<<
+ *
+ * bam_plp_set_mask( self.pileup_iter, self.mask )
+ */
+ __pyx_t_4 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_103), __pyx_v_self->stepper); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1533; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1533; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_t_4));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_4));
+ __pyx_t_4 = 0;
+ __pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1533; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __Pyx_Raise(__pyx_t_4, 0, 0);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1533; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_L4:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1535
+ * raise ValueError( "unknown stepper option `%s` in IteratorColumn" % self.stepper)
+ *
+ * bam_plp_set_mask( self.pileup_iter, self.mask ) # <<<<<<<<<<<<<<
+ *
+ * cdef reset( self, tid, start, end ):
+ */
+ bam_plp_set_mask(__pyx_v_self->pileup_iter, __pyx_v_self->mask);
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_AddTraceback("csamtools.IteratorColumn.setupIteratorData");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1537
+ * bam_plp_set_mask( self.pileup_iter, self.mask )
+ *
+ * cdef reset( self, tid, start, end ): # <<<<<<<<<<<<<<
+ * '''reset iterator position.
+ *
+ */
+
+static PyObject *__pyx_f_9csamtools_14IteratorColumn_reset(struct __pyx_obj_9csamtools_IteratorColumn *__pyx_v_self, PyObject *__pyx_v_tid, PyObject *__pyx_v_start, PyObject *__pyx_v_end) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("reset");
+ __Pyx_TraceCall("reset", __pyx_f[0], 1537);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1543
+ * having to incur the full set-up costs.
+ * '''
+ * self.iter = IteratorRowRegion( self.samfile, tid, start, end, reopen = 0 ) # <<<<<<<<<<<<<<
+ * self.iterdata.iter = self.iter.iter
+ *
+ */
+ __pyx_t_1 = PyTuple_New(4); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1543; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(((PyObject *)__pyx_v_self->samfile));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_v_self->samfile));
+ __Pyx_GIVEREF(((PyObject *)__pyx_v_self->samfile));
+ __Pyx_INCREF(__pyx_v_tid);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_tid);
+ __Pyx_GIVEREF(__pyx_v_tid);
+ __Pyx_INCREF(__pyx_v_start);
+ PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_v_start);
+ __Pyx_GIVEREF(__pyx_v_start);
+ __Pyx_INCREF(__pyx_v_end);
+ PyTuple_SET_ITEM(__pyx_t_1, 3, __pyx_v_end);
+ __Pyx_GIVEREF(__pyx_v_end);
+ __pyx_t_2 = PyDict_New(); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1543; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ if (PyDict_SetItem(__pyx_t_2, ((PyObject *)__pyx_n_s__reopen), __pyx_int_0) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1543; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_3 = PyEval_CallObjectWithKeywords(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_IteratorRowRegion)), ((PyObject *)__pyx_t_1), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1543; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_GIVEREF(__pyx_t_3);
+ __Pyx_GOTREF(__pyx_v_self->iter);
+ __Pyx_DECREF(((PyObject *)__pyx_v_self->iter));
+ __pyx_v_self->iter = ((struct __pyx_obj_9csamtools_IteratorRowRegion *)__pyx_t_3);
+ __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1544
+ * '''
+ * self.iter = IteratorRowRegion( self.samfile, tid, start, end, reopen = 0 )
+ * self.iterdata.iter = self.iter.iter # <<<<<<<<<<<<<<
+ *
+ * # invalidate sequence if different tid
+ */
+ __pyx_v_self->iterdata.iter = __pyx_v_self->iter->iter;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1547
+ *
+ * # invalidate sequence if different tid
+ * if self.tid != tid: # <<<<<<<<<<<<<<
+ * if self.iterdata.seq != NULL: free( self.iterdata.seq )
+ * self.iterdata.seq = NULL
+ */
+ __pyx_t_3 = PyInt_FromLong(__pyx_v_self->tid); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1547; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_2 = PyObject_RichCompare(__pyx_t_3, __pyx_v_tid, Py_NE); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1547; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1547; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1548
+ * # invalidate sequence if different tid
+ * if self.tid != tid:
+ * if self.iterdata.seq != NULL: free( self.iterdata.seq ) # <<<<<<<<<<<<<<
+ * self.iterdata.seq = NULL
+ * self.iterdata.tid = -1
+ */
+ __pyx_t_4 = (__pyx_v_self->iterdata.seq != NULL);
+ if (__pyx_t_4) {
+ free(__pyx_v_self->iterdata.seq);
+ goto __pyx_L4;
+ }
+ __pyx_L4:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1549
+ * if self.tid != tid:
+ * if self.iterdata.seq != NULL: free( self.iterdata.seq )
+ * self.iterdata.seq = NULL # <<<<<<<<<<<<<<
+ * self.iterdata.tid = -1
+ *
+ */
+ __pyx_v_self->iterdata.seq = NULL;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1550
+ * if self.iterdata.seq != NULL: free( self.iterdata.seq )
+ * self.iterdata.seq = NULL
+ * self.iterdata.tid = -1 # <<<<<<<<<<<<<<
+ *
+ * # self.pileup_iter = bam_plp_init( &__advancepileup, &self.iterdata )
+ */
+ __pyx_v_self->iterdata.tid = -1;
+ goto __pyx_L3;
+ }
+ __pyx_L3:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1553
+ *
+ * # self.pileup_iter = bam_plp_init( &__advancepileup, &self.iterdata )
+ * bam_plp_reset(self.pileup_iter) # <<<<<<<<<<<<<<
+ *
+ * def __dealloc__(self):
+ */
+ bam_plp_reset(__pyx_v_self->pileup_iter);
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.IteratorColumn.reset");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1555
+ * bam_plp_reset(self.pileup_iter)
+ *
+ * def __dealloc__(self): # <<<<<<<<<<<<<<
+ * # reset in order to avoid memory leak messages for iterators that have
+ * # not been fully consumed
+ */
+
+static void __pyx_pf_9csamtools_14IteratorColumn_4__dealloc__(PyObject *__pyx_v_self); /*proto*/
+static void __pyx_pf_9csamtools_14IteratorColumn_4__dealloc__(PyObject *__pyx_v_self) {
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__dealloc__");
+ __Pyx_TraceCall("__dealloc__", __pyx_f[0], 1555);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1558
+ * # reset in order to avoid memory leak messages for iterators that have
+ * # not been fully consumed
+ * if self.pileup_iter != <bam_plp_t>NULL: # <<<<<<<<<<<<<<
+ * bam_plp_reset(self.pileup_iter)
+ * bam_plp_destroy(self.pileup_iter)
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->pileup_iter != ((bam_plp_t)NULL));
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1559
+ * # not been fully consumed
+ * if self.pileup_iter != <bam_plp_t>NULL:
+ * bam_plp_reset(self.pileup_iter) # <<<<<<<<<<<<<<
+ * bam_plp_destroy(self.pileup_iter)
+ * self.pileup_iter = <bam_plp_t>NULL
+ */
+ bam_plp_reset(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->pileup_iter);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1560
+ * if self.pileup_iter != <bam_plp_t>NULL:
+ * bam_plp_reset(self.pileup_iter)
+ * bam_plp_destroy(self.pileup_iter) # <<<<<<<<<<<<<<
+ * self.pileup_iter = <bam_plp_t>NULL
+ *
+ */
+ bam_plp_destroy(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->pileup_iter);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1561
+ * bam_plp_reset(self.pileup_iter)
+ * bam_plp_destroy(self.pileup_iter)
+ * self.pileup_iter = <bam_plp_t>NULL # <<<<<<<<<<<<<<
+ *
+ * if self.iterdata.seq != NULL:
+ */
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->pileup_iter = ((bam_plp_t)NULL);
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1563
+ * self.pileup_iter = <bam_plp_t>NULL
+ *
+ * if self.iterdata.seq != NULL: # <<<<<<<<<<<<<<
+ * free(self.iterdata.seq)
+ * self.iterdata.seq = NULL
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->iterdata.seq != NULL);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1564
+ *
+ * if self.iterdata.seq != NULL:
+ * free(self.iterdata.seq) # <<<<<<<<<<<<<<
+ * self.iterdata.seq = NULL
+ *
+ */
+ free(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->iterdata.seq);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1565
+ * if self.iterdata.seq != NULL:
+ * free(self.iterdata.seq)
+ * self.iterdata.seq = NULL # <<<<<<<<<<<<<<
+ *
+ * cdef class IteratorColumnRegion(IteratorColumn):
+ */
+ ((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self)->iterdata.seq = NULL;
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1570
+ * '''iterates over a region only.
+ * '''
+ * def __cinit__(self, Samfile samfile, # <<<<<<<<<<<<<<
+ * int tid = 0,
+ * int start = 0,
+ */
+
+static int __pyx_pf_9csamtools_20IteratorColumnRegion_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_20IteratorColumnRegion_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_Samfile *__pyx_v_samfile = 0;
+ int __pyx_v_tid;
+ int __pyx_v_start;
+ int __pyx_v_end;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ struct __pyx_opt_args_9csamtools_14IteratorColumn_setupIteratorData __pyx_t_2;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__samfile,&__pyx_n_s__tid,&__pyx_n_s__start,&__pyx_n_s__end,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 1570);
+ __pyx_v_kwargs = PyDict_New(); if (unlikely(!__pyx_v_kwargs)) return -1;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[4] = {0,0,0,0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ 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;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__samfile);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__tid);
+ if (value) { values[1] = value; kw_args--; }
+ }
+ case 2:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__start);
+ if (value) { values[2] = value; kw_args--; }
+ }
+ case 3:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__end);
+ if (value) { values[3] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_kwargs, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1570; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)values[0]);
+ if (values[1]) {
+ __pyx_v_tid = __Pyx_PyInt_AsInt(values[1]); if (unlikely((__pyx_v_tid == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1571; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ } else {
+ __pyx_v_tid = ((int)0);
+ }
+ if (values[2]) {
+ __pyx_v_start = __Pyx_PyInt_AsInt(values[2]); if (unlikely((__pyx_v_start == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1572; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ } else {
+ __pyx_v_start = ((int)0);
+ }
+ if (values[3]) {
+ __pyx_v_end = __Pyx_PyInt_AsInt(values[3]); if (unlikely((__pyx_v_end == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1573; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ } else {
+ __pyx_v_end = __pyx_k_104;
+ }
+ } else {
+ __pyx_v_tid = ((int)0);
+ __pyx_v_start = ((int)0);
+ __pyx_v_end = __pyx_k_104;
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 4: __pyx_v_end = __Pyx_PyInt_AsInt(PyTuple_GET_ITEM(__pyx_args, 3)); if (unlikely((__pyx_v_end == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1573; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ case 3: __pyx_v_start = __Pyx_PyInt_AsInt(PyTuple_GET_ITEM(__pyx_args, 2)); if (unlikely((__pyx_v_start == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1572; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ case 2: __pyx_v_tid = __Pyx_PyInt_AsInt(PyTuple_GET_ITEM(__pyx_args, 1)); if (unlikely((__pyx_v_tid == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1571; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ case 1: __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)PyTuple_GET_ITEM(__pyx_args, 0));
+ break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 0, 1, 4, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1570; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_AddTraceback("csamtools.IteratorColumnRegion.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_samfile), __pyx_ptype_9csamtools_Samfile, 1, "samfile", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1577
+ *
+ * # initialize iterator
+ * self.setupIteratorData( tid, start, end, 1 ) # <<<<<<<<<<<<<<
+ *
+ * def __next__(self):
+ */
+ __pyx_t_2.__pyx_n = 1;
+ __pyx_t_2.reopen = 1;
+ __pyx_t_1 = ((struct __pyx_vtabstruct_9csamtools_IteratorColumnRegion *)((struct __pyx_obj_9csamtools_IteratorColumnRegion *)__pyx_v_self)->__pyx_base.__pyx_vtab)->__pyx_base.setupIteratorData(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self), __pyx_v_tid, __pyx_v_start, __pyx_v_end, &__pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1577; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IteratorColumnRegion.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1579
+ * self.setupIteratorData( tid, start, end, 1 )
+ *
+ * def __next__(self): # <<<<<<<<<<<<<<
+ * """python version of next().
+ * """
+ */
+
+static PyObject *__pyx_pf_9csamtools_20IteratorColumnRegion_1__next__(PyObject *__pyx_v_self); /*proto*/
+static char __pyx_doc_9csamtools_20IteratorColumnRegion_1__next__[] = "python version of next().\n ";
+struct wrapperbase __pyx_wrapperbase_9csamtools_20IteratorColumnRegion_1__next__;
+static PyObject *__pyx_pf_9csamtools_20IteratorColumnRegion_1__next__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__next__");
+ __Pyx_TraceCall("__next__", __pyx_f[0], 1579);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1583
+ * """
+ *
+ * while 1: # <<<<<<<<<<<<<<
+ * self.cnext()
+ * if self.n_plp < 0:
+ */
+ while (1) {
+ if (!1) break;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1584
+ *
+ * while 1:
+ * self.cnext() # <<<<<<<<<<<<<<
+ * if self.n_plp < 0:
+ * raise ValueError("error during iteration" )
+ */
+ ((struct __pyx_vtabstruct_9csamtools_IteratorColumnRegion *)((struct __pyx_obj_9csamtools_IteratorColumnRegion *)__pyx_v_self)->__pyx_base.__pyx_vtab)->__pyx_base.cnext(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1585
+ * while 1:
+ * self.cnext()
+ * if self.n_plp < 0: # <<<<<<<<<<<<<<
+ * raise ValueError("error during iteration" )
+ *
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorColumnRegion *)__pyx_v_self)->__pyx_base.n_plp < 0);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1586
+ * self.cnext()
+ * if self.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * if self.plp == NULL:
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_106), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1586; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1586; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1588
+ * raise ValueError("error during iteration" )
+ *
+ * if self.plp == NULL: # <<<<<<<<<<<<<<
+ * raise StopIteration
+ *
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorColumnRegion *)__pyx_v_self)->__pyx_base.plp == NULL);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1589
+ *
+ * if self.plp == NULL:
+ * raise StopIteration # <<<<<<<<<<<<<<
+ *
+ * return makePileupProxy( <bam_pileup1_t*>self.plp,
+ */
+ __Pyx_Raise(__pyx_builtin_StopIteration, 0, 0);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1589; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1591
+ * raise StopIteration
+ *
+ * return makePileupProxy( <bam_pileup1_t*>self.plp, # <<<<<<<<<<<<<<
+ * self.tid,
+ * self.pos,
+ */
+ __Pyx_XDECREF(__pyx_r);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1594
+ * self.tid,
+ * self.pos,
+ * self.n_plp ) # <<<<<<<<<<<<<<
+ *
+ * cdef class IteratorColumnAllRefs(IteratorColumn):
+ */
+ __pyx_t_2 = __pyx_f_9csamtools_makePileupProxy(((bam_pileup1_t *)((struct __pyx_obj_9csamtools_IteratorColumnRegion *)__pyx_v_self)->__pyx_base.plp), ((struct __pyx_obj_9csamtools_IteratorColumnRegion *)__pyx_v_self)->__pyx_base.tid, ((struct __pyx_obj_9csamtools_IteratorColumnRegion *)__pyx_v_self)->__pyx_base.pos, ((struct __pyx_obj_9csamtools_IteratorColumnRegion *)__pyx_v_self)->__pyx_base.n_plp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1591; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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_2);
+ __Pyx_AddTraceback("csamtools.IteratorColumnRegion.__next__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1600
+ * """
+ *
+ * def __cinit__(self, # <<<<<<<<<<<<<<
+ * Samfile samfile,
+ * **kwargs ):
+ */
+
+static int __pyx_pf_9csamtools_21IteratorColumnAllRefs_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_21IteratorColumnAllRefs_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_Samfile *__pyx_v_samfile = 0;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ int __pyx_t_3;
+ struct __pyx_opt_args_9csamtools_14IteratorColumn_setupIteratorData __pyx_t_4;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__samfile,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 1600);
+ __pyx_v_kwargs = PyDict_New(); if (unlikely(!__pyx_v_kwargs)) return -1;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[1] = {0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__samfile);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_kwargs, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1600; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)values[0]);
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 1) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_samfile = ((struct __pyx_obj_9csamtools_Samfile *)PyTuple_GET_ITEM(__pyx_args, 0));
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1600; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_AddTraceback("csamtools.IteratorColumnAllRefs.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_samfile), __pyx_ptype_9csamtools_Samfile, 1, "samfile", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1601; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1605
+ *
+ * # no iteration over empty files
+ * if not samfile.nreferences: raise StopIteration # <<<<<<<<<<<<<<
+ *
+ * # initialize iterator
+ */
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_v_samfile), __pyx_n_s__nreferences); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1605; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1605; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = (!__pyx_t_2);
+ if (__pyx_t_3) {
+ __Pyx_Raise(__pyx_builtin_StopIteration, 0, 0);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1605; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1608
+ *
+ * # initialize iterator
+ * self.setupIteratorData( self.tid, 0, max_pos, 1 ) # <<<<<<<<<<<<<<
+ *
+ * def __next__(self):
+ */
+ __pyx_t_4.__pyx_n = 1;
+ __pyx_t_4.reopen = 1;
+ __pyx_t_1 = ((struct __pyx_vtabstruct_9csamtools_IteratorColumnAllRefs *)((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.__pyx_vtab)->__pyx_base.setupIteratorData(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self), ((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.tid, 0, __pyx_v_9csamtools_max_pos, &__pyx_t_4); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1608; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IteratorColumnAllRefs.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1610
+ * self.setupIteratorData( self.tid, 0, max_pos, 1 )
+ *
+ * def __next__(self): # <<<<<<<<<<<<<<
+ * """python version of next().
+ * """
+ */
+
+static PyObject *__pyx_pf_9csamtools_21IteratorColumnAllRefs_1__next__(PyObject *__pyx_v_self); /*proto*/
+static char __pyx_doc_9csamtools_21IteratorColumnAllRefs_1__next__[] = "python version of next().\n ";
+struct wrapperbase __pyx_wrapperbase_9csamtools_21IteratorColumnAllRefs_1__next__;
+static PyObject *__pyx_pf_9csamtools_21IteratorColumnAllRefs_1__next__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ PyObject *__pyx_t_4 = NULL;
+ struct __pyx_opt_args_9csamtools_14IteratorColumn_setupIteratorData __pyx_t_5;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__next__");
+ __Pyx_TraceCall("__next__", __pyx_f[0], 1610);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1614
+ * """
+ *
+ * while 1: # <<<<<<<<<<<<<<
+ * self.cnext()
+ *
+ */
+ while (1) {
+ if (!1) break;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1615
+ *
+ * while 1:
+ * self.cnext() # <<<<<<<<<<<<<<
+ *
+ * if self.n_plp < 0:
+ */
+ ((struct __pyx_vtabstruct_9csamtools_IteratorColumnAllRefs *)((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.__pyx_vtab)->__pyx_base.cnext(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1617
+ * self.cnext()
+ *
+ * if self.n_plp < 0: # <<<<<<<<<<<<<<
+ * raise ValueError("error during iteration" )
+ *
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.n_plp < 0);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1618
+ *
+ * if self.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * # return result, if within same reference
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_107), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1618; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1618; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1621
+ *
+ * # return result, if within same reference
+ * if self.plp != NULL: # <<<<<<<<<<<<<<
+ * return makePileupProxy( <bam_pileup1_t*>self.plp,
+ * self.tid,
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.plp != NULL);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1622
+ * # return result, if within same reference
+ * if self.plp != NULL:
+ * return makePileupProxy( <bam_pileup1_t*>self.plp, # <<<<<<<<<<<<<<
+ * self.tid,
+ * self.pos,
+ */
+ __Pyx_XDECREF(__pyx_r);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1625
+ * self.tid,
+ * self.pos,
+ * self.n_plp ) # <<<<<<<<<<<<<<
+ *
+ * # otherwise, proceed to next reference or stop
+ */
+ __pyx_t_2 = __pyx_f_9csamtools_makePileupProxy(((bam_pileup1_t *)((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.plp), ((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.tid, ((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.pos, ((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.n_plp); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1622; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_r = __pyx_t_2;
+ __pyx_t_2 = 0;
+ goto __pyx_L0;
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1628
+ *
+ * # otherwise, proceed to next reference or stop
+ * self.tid += 1 # <<<<<<<<<<<<<<
+ * if self.tid < self.samfile.nreferences:
+ * self.setupIteratorData( self.tid, 0, max_pos, 0 )
+ */
+ ((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.tid = (((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.tid + 1);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1629
+ * # otherwise, proceed to next reference or stop
+ * self.tid += 1
+ * if self.tid < self.samfile.nreferences: # <<<<<<<<<<<<<<
+ * self.setupIteratorData( self.tid, 0, max_pos, 0 )
+ * else:
+ */
+ __pyx_t_2 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.tid); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1629; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyObject_GetAttr(((PyObject *)((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.samfile), __pyx_n_s__nreferences); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1629; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyObject_RichCompare(__pyx_t_2, __pyx_t_3, Py_LT); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1629; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1629; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1630
+ * self.tid += 1
+ * if self.tid < self.samfile.nreferences:
+ * self.setupIteratorData( self.tid, 0, max_pos, 0 ) # <<<<<<<<<<<<<<
+ * else:
+ * raise StopIteration
+ */
+ __pyx_t_5.__pyx_n = 1;
+ __pyx_t_5.reopen = 0;
+ __pyx_t_4 = ((struct __pyx_vtabstruct_9csamtools_IteratorColumnAllRefs *)((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.__pyx_vtab)->__pyx_base.setupIteratorData(((struct __pyx_obj_9csamtools_IteratorColumn *)__pyx_v_self), ((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)__pyx_v_self)->__pyx_base.tid, 0, __pyx_v_9csamtools_max_pos, &__pyx_t_5); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1630; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ goto __pyx_L9;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1632
+ * self.setupIteratorData( self.tid, 0, max_pos, 0 )
+ * else:
+ * raise StopIteration # <<<<<<<<<<<<<<
+ *
+ * ##-------------------------------------------------------------------
+ */
+ __Pyx_Raise(__pyx_builtin_StopIteration, 0, 0);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1632; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_L9:;
+ }
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_AddTraceback("csamtools.IteratorColumnAllRefs.__next__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1637
+ * ##-------------------------------------------------------------------
+ * ##-------------------------------------------------------------------
+ * cdef inline int32_t query_start(bam1_t *src) except -1: # <<<<<<<<<<<<<<
+ * cdef uint32_t * cigar_p, op
+ * cdef uint32_t k
+ */
+
+static CYTHON_INLINE int32_t __pyx_f_9csamtools_query_start(bam1_t *__pyx_v_src) {
+ uint32_t *__pyx_v_cigar_p;
+ uint32_t __pyx_v_op;
+ uint32_t __pyx_v_k;
+ uint32_t __pyx_v_start_offset;
+ int32_t __pyx_r;
+ uint32_t __pyx_t_1;
+ int __pyx_t_2;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("query_start");
+ __Pyx_TraceCall("query_start", __pyx_f[0], 1637);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1640
+ * cdef uint32_t * cigar_p, op
+ * cdef uint32_t k
+ * cdef uint32_t start_offset = 0 # <<<<<<<<<<<<<<
+ *
+ * if src.core.n_cigar:
+ */
+ __pyx_v_start_offset = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1642
+ * cdef uint32_t start_offset = 0
+ *
+ * if src.core.n_cigar: # <<<<<<<<<<<<<<
+ * cigar_p = bam1_cigar(src);
+ * for k from 0 <= k < src.core.n_cigar:
+ */
+ if (__pyx_v_src->core.n_cigar) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1643
+ *
+ * if src.core.n_cigar:
+ * cigar_p = bam1_cigar(src); # <<<<<<<<<<<<<<
+ * for k from 0 <= k < src.core.n_cigar:
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ */
+ __pyx_v_cigar_p = bam1_cigar(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1644
+ * if src.core.n_cigar:
+ * cigar_p = bam1_cigar(src);
+ * for k from 0 <= k < src.core.n_cigar: # <<<<<<<<<<<<<<
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ * if op==BAM_CHARD_CLIP:
+ */
+ __pyx_t_1 = __pyx_v_src->core.n_cigar;
+ for (__pyx_v_k = 0; __pyx_v_k < __pyx_t_1; __pyx_v_k++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1645
+ * cigar_p = bam1_cigar(src);
+ * for k from 0 <= k < src.core.n_cigar:
+ * op = cigar_p[k] & BAM_CIGAR_MASK # <<<<<<<<<<<<<<
+ * if op==BAM_CHARD_CLIP:
+ * if start_offset!=0 and start_offset!=src.core.l_qseq:
+ */
+ __pyx_v_op = ((__pyx_v_cigar_p[__pyx_v_k]) & 15);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1650
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string')
+ * return -1
+ * elif op==BAM_CSOFT_CLIP: # <<<<<<<<<<<<<<
+ * start_offset += cigar_p[k] >> BAM_CIGAR_SHIFT
+ * else:
+ */
+ switch (__pyx_v_op) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1646
+ * for k from 0 <= k < src.core.n_cigar:
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ * if op==BAM_CHARD_CLIP: # <<<<<<<<<<<<<<
+ * if start_offset!=0 and start_offset!=src.core.l_qseq:
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string')
+ */
+ case 5:
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1647
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ * if op==BAM_CHARD_CLIP:
+ * if start_offset!=0 and start_offset!=src.core.l_qseq: # <<<<<<<<<<<<<<
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string')
+ * return -1
+ */
+ __pyx_t_2 = (__pyx_v_start_offset != 0);
+ if (__pyx_t_2) {
+ __pyx_t_3 = (__pyx_v_start_offset != __pyx_v_src->core.l_qseq);
+ __pyx_t_4 = __pyx_t_3;
+ } else {
+ __pyx_t_4 = __pyx_t_2;
+ }
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1648
+ * if op==BAM_CHARD_CLIP:
+ * if start_offset!=0 and start_offset!=src.core.l_qseq:
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string') # <<<<<<<<<<<<<<
+ * return -1
+ * elif op==BAM_CSOFT_CLIP:
+ */
+ PyErr_SetString(__pyx_builtin_ValueError, __pyx_k_108);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1649
+ * if start_offset!=0 and start_offset!=src.core.l_qseq:
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string')
+ * return -1 # <<<<<<<<<<<<<<
+ * elif op==BAM_CSOFT_CLIP:
+ * start_offset += cigar_p[k] >> BAM_CIGAR_SHIFT
+ */
+ __pyx_r = -1;
+ goto __pyx_L0;
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+ break;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1650
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string')
+ * return -1
+ * elif op==BAM_CSOFT_CLIP: # <<<<<<<<<<<<<<
+ * start_offset += cigar_p[k] >> BAM_CIGAR_SHIFT
+ * else:
+ */
+ case 4:
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1651
+ * return -1
+ * elif op==BAM_CSOFT_CLIP:
+ * start_offset += cigar_p[k] >> BAM_CIGAR_SHIFT # <<<<<<<<<<<<<<
+ * else:
+ * break
+ */
+ __pyx_v_start_offset = (__pyx_v_start_offset + ((__pyx_v_cigar_p[__pyx_v_k]) >> 4));
+ break;
+ default:
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1653
+ * start_offset += cigar_p[k] >> BAM_CIGAR_SHIFT
+ * else:
+ * break # <<<<<<<<<<<<<<
+ *
+ * return start_offset
+ */
+ goto __pyx_L5_break;
+ break;
+ }
+ }
+ __pyx_L5_break:;
+ goto __pyx_L3;
+ }
+ __pyx_L3:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1655
+ * break
+ *
+ * return start_offset # <<<<<<<<<<<<<<
+ *
+ * ##-------------------------------------------------------------------
+ */
+ __pyx_r = __pyx_v_start_offset;
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1660
+ * ##-------------------------------------------------------------------
+ * ##-------------------------------------------------------------------
+ * cdef inline int32_t query_end(bam1_t *src) except -1: # <<<<<<<<<<<<<<
+ * cdef uint32_t * cigar_p, op
+ * cdef uint32_t k
+ */
+
+static CYTHON_INLINE int32_t __pyx_f_9csamtools_query_end(bam1_t *__pyx_v_src) {
+ uint32_t *__pyx_v_cigar_p;
+ uint32_t __pyx_v_op;
+ uint32_t __pyx_v_k;
+ uint32_t __pyx_v_end_offset;
+ int32_t __pyx_r;
+ int __pyx_t_1;
+ int __pyx_t_2;
+ int __pyx_t_3;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("query_end");
+ __Pyx_TraceCall("query_end", __pyx_f[0], 1660);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1663
+ * cdef uint32_t * cigar_p, op
+ * cdef uint32_t k
+ * cdef uint32_t end_offset = src.core.l_qseq # <<<<<<<<<<<<<<
+ *
+ * if src.core.n_cigar>1:
+ */
+ __pyx_v_end_offset = __pyx_v_src->core.l_qseq;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1665
+ * cdef uint32_t end_offset = src.core.l_qseq
+ *
+ * if src.core.n_cigar>1: # <<<<<<<<<<<<<<
+ * cigar_p = bam1_cigar(src);
+ * for k from src.core.n_cigar > k >= 1:
+ */
+ __pyx_t_1 = (__pyx_v_src->core.n_cigar > 1);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1666
+ *
+ * if src.core.n_cigar>1:
+ * cigar_p = bam1_cigar(src); # <<<<<<<<<<<<<<
+ * for k from src.core.n_cigar > k >= 1:
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ */
+ __pyx_v_cigar_p = bam1_cigar(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1667
+ * if src.core.n_cigar>1:
+ * cigar_p = bam1_cigar(src);
+ * for k from src.core.n_cigar > k >= 1: # <<<<<<<<<<<<<<
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ * if op==BAM_CHARD_CLIP:
+ */
+ for (__pyx_v_k = __pyx_v_src->core.n_cigar-1; __pyx_v_k >= 1; __pyx_v_k--) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1668
+ * cigar_p = bam1_cigar(src);
+ * for k from src.core.n_cigar > k >= 1:
+ * op = cigar_p[k] & BAM_CIGAR_MASK # <<<<<<<<<<<<<<
+ * if op==BAM_CHARD_CLIP:
+ * if end_offset!=0 and end_offset!=src.core.l_qseq:
+ */
+ __pyx_v_op = ((__pyx_v_cigar_p[__pyx_v_k]) & 15);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1673
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string')
+ * return -1
+ * elif op==BAM_CSOFT_CLIP: # <<<<<<<<<<<<<<
+ * end_offset -= cigar_p[k] >> BAM_CIGAR_SHIFT
+ * else:
+ */
+ switch (__pyx_v_op) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1669
+ * for k from src.core.n_cigar > k >= 1:
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ * if op==BAM_CHARD_CLIP: # <<<<<<<<<<<<<<
+ * if end_offset!=0 and end_offset!=src.core.l_qseq:
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string')
+ */
+ case 5:
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1670
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ * if op==BAM_CHARD_CLIP:
+ * if end_offset!=0 and end_offset!=src.core.l_qseq: # <<<<<<<<<<<<<<
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string')
+ * return -1
+ */
+ __pyx_t_1 = (__pyx_v_end_offset != 0);
+ if (__pyx_t_1) {
+ __pyx_t_2 = (__pyx_v_end_offset != __pyx_v_src->core.l_qseq);
+ __pyx_t_3 = __pyx_t_2;
+ } else {
+ __pyx_t_3 = __pyx_t_1;
+ }
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1671
+ * if op==BAM_CHARD_CLIP:
+ * if end_offset!=0 and end_offset!=src.core.l_qseq:
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string') # <<<<<<<<<<<<<<
+ * return -1
+ * elif op==BAM_CSOFT_CLIP:
+ */
+ PyErr_SetString(__pyx_builtin_ValueError, __pyx_k_108);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1672
+ * if end_offset!=0 and end_offset!=src.core.l_qseq:
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string')
+ * return -1 # <<<<<<<<<<<<<<
+ * elif op==BAM_CSOFT_CLIP:
+ * end_offset -= cigar_p[k] >> BAM_CIGAR_SHIFT
+ */
+ __pyx_r = -1;
+ goto __pyx_L0;
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+ break;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1673
+ * PyErr_SetString(ValueError, 'Invalid clipping in CIGAR string')
+ * return -1
+ * elif op==BAM_CSOFT_CLIP: # <<<<<<<<<<<<<<
+ * end_offset -= cigar_p[k] >> BAM_CIGAR_SHIFT
+ * else:
+ */
+ case 4:
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1674
+ * return -1
+ * elif op==BAM_CSOFT_CLIP:
+ * end_offset -= cigar_p[k] >> BAM_CIGAR_SHIFT # <<<<<<<<<<<<<<
+ * else:
+ * break
+ */
+ __pyx_v_end_offset = (__pyx_v_end_offset - ((__pyx_v_cigar_p[__pyx_v_k]) >> 4));
+ break;
+ default:
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1676
+ * end_offset -= cigar_p[k] >> BAM_CIGAR_SHIFT
+ * else:
+ * break # <<<<<<<<<<<<<<
+ *
+ * if end_offset==0:
+ */
+ goto __pyx_L5_break;
+ break;
+ }
+ }
+ __pyx_L5_break:;
+ goto __pyx_L3;
+ }
+ __pyx_L3:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1678
+ * break
+ *
+ * if end_offset==0: # <<<<<<<<<<<<<<
+ * end_offset = src.core.l_qseq
+ *
+ */
+ __pyx_t_3 = (__pyx_v_end_offset == 0);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1679
+ *
+ * if end_offset==0:
+ * end_offset = src.core.l_qseq # <<<<<<<<<<<<<<
+ *
+ * return end_offset
+ */
+ __pyx_v_end_offset = __pyx_v_src->core.l_qseq;
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1681
+ * end_offset = src.core.l_qseq
+ *
+ * return end_offset # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ __pyx_r = __pyx_v_end_offset;
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1684
+ *
+ *
+ * cdef inline object get_seq_range(bam1_t *src, uint32_t start, uint32_t end): # <<<<<<<<<<<<<<
+ * cdef uint8_t * p
+ * cdef uint32_t k
+ */
+
+static CYTHON_INLINE PyObject *__pyx_f_9csamtools_get_seq_range(bam1_t *__pyx_v_src, uint32_t __pyx_v_start, uint32_t __pyx_v_end) {
+ uint8_t *__pyx_v_p;
+ uint32_t __pyx_v_k;
+ char *__pyx_v_s;
+ PyObject *__pyx_v_seq;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ uint32_t __pyx_t_3;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("get_seq_range");
+ __Pyx_TraceCall("get_seq_range", __pyx_f[0], 1684);
+ __pyx_v_seq = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1689
+ * cdef char * s
+ *
+ * if not src.core.l_qseq: # <<<<<<<<<<<<<<
+ * return None
+ *
+ */
+ __pyx_t_1 = (!__pyx_v_src->core.l_qseq);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1690
+ *
+ * if not src.core.l_qseq:
+ * return None # <<<<<<<<<<<<<<
+ *
+ * seq = PyString_FromStringAndSize(NULL, end-start)
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L3;
+ }
+ __pyx_L3:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1692
+ * return None
+ *
+ * seq = PyString_FromStringAndSize(NULL, end-start) # <<<<<<<<<<<<<<
+ * s = PyString_AS_STRING(seq)
+ * p = bam1_seq(src)
+ */
+ __pyx_t_2 = PyString_FromStringAndSize(NULL, (__pyx_v_end - __pyx_v_start)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1692; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_seq);
+ __pyx_v_seq = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1693
+ *
+ * seq = PyString_FromStringAndSize(NULL, end-start)
+ * s = PyString_AS_STRING(seq) # <<<<<<<<<<<<<<
+ * p = bam1_seq(src)
+ *
+ */
+ __pyx_v_s = PyString_AS_STRING(__pyx_v_seq);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1694
+ * seq = PyString_FromStringAndSize(NULL, end-start)
+ * s = PyString_AS_STRING(seq)
+ * p = bam1_seq(src) # <<<<<<<<<<<<<<
+ *
+ * for k from start <= k < end:
+ */
+ __pyx_v_p = bam1_seq(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1696
+ * p = bam1_seq(src)
+ *
+ * for k from start <= k < end: # <<<<<<<<<<<<<<
+ * # equivalent to bam_nt16_rev_table[bam1_seqi(s, i)] (see bam.c)
+ * # note: do not use string literal as it will be a python string
+ */
+ __pyx_t_3 = __pyx_v_end;
+ for (__pyx_v_k = __pyx_v_start; __pyx_v_k < __pyx_t_3; __pyx_v_k++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1699
+ * # equivalent to bam_nt16_rev_table[bam1_seqi(s, i)] (see bam.c)
+ * # note: do not use string literal as it will be a python string
+ * s[k-start] = bam_nt16_rev_table[p[k/2] >> 4 * (1 - k%2) & 0xf] # <<<<<<<<<<<<<<
+ *
+ * return seq
+ */
+ (__pyx_v_s[(__pyx_v_k - __pyx_v_start)]) = (__pyx_v_9csamtools_bam_nt16_rev_table[(((__pyx_v_p[__Pyx_div_long(__pyx_v_k, 2)]) >> (4 * (1 - __Pyx_mod_long(__pyx_v_k, 2)))) & 0xf)]);
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1701
+ * s[k-start] = bam_nt16_rev_table[p[k/2] >> 4 * (1 - k%2) & 0xf]
+ *
+ * return seq # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_seq);
+ __pyx_r = __pyx_v_seq;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.get_seq_range");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_seq);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1704
+ *
+ *
+ * cdef inline object get_qual_range(bam1_t *src, uint32_t start, uint32_t end): # <<<<<<<<<<<<<<
+ * cdef uint8_t * p
+ * cdef uint32_t k
+ */
+
+static CYTHON_INLINE PyObject *__pyx_f_9csamtools_get_qual_range(bam1_t *__pyx_v_src, uint32_t __pyx_v_start, uint32_t __pyx_v_end) {
+ uint8_t *__pyx_v_p;
+ uint32_t __pyx_v_k;
+ char *__pyx_v_q;
+ PyObject *__pyx_v_qual;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ uint32_t __pyx_t_3;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("get_qual_range");
+ __Pyx_TraceCall("get_qual_range", __pyx_f[0], 1704);
+ __pyx_v_qual = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1709
+ * cdef char * q
+ *
+ * p = bam1_qual(src) # <<<<<<<<<<<<<<
+ * if p[0] == 0xff:
+ * return None
+ */
+ __pyx_v_p = bam1_qual(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1710
+ *
+ * p = bam1_qual(src)
+ * if p[0] == 0xff: # <<<<<<<<<<<<<<
+ * return None
+ *
+ */
+ __pyx_t_1 = ((__pyx_v_p[0]) == 0xff);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1711
+ * p = bam1_qual(src)
+ * if p[0] == 0xff:
+ * return None # <<<<<<<<<<<<<<
+ *
+ * qual = PyString_FromStringAndSize(NULL, end-start)
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L3;
+ }
+ __pyx_L3:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1713
+ * return None
+ *
+ * qual = PyString_FromStringAndSize(NULL, end-start) # <<<<<<<<<<<<<<
+ * q = PyString_AS_STRING(qual)
+ *
+ */
+ __pyx_t_2 = PyString_FromStringAndSize(NULL, (__pyx_v_end - __pyx_v_start)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1713; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_qual);
+ __pyx_v_qual = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1714
+ *
+ * qual = PyString_FromStringAndSize(NULL, end-start)
+ * q = PyString_AS_STRING(qual) # <<<<<<<<<<<<<<
+ *
+ * for k from start <= k < end:
+ */
+ __pyx_v_q = PyString_AS_STRING(__pyx_v_qual);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1716
+ * q = PyString_AS_STRING(qual)
+ *
+ * for k from start <= k < end: # <<<<<<<<<<<<<<
+ * ## equivalent to t[i] + 33 (see bam.c)
+ * q[k-start] = p[k] + 33
+ */
+ __pyx_t_3 = __pyx_v_end;
+ for (__pyx_v_k = __pyx_v_start; __pyx_v_k < __pyx_t_3; __pyx_v_k++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1718
+ * for k from start <= k < end:
+ * ## equivalent to t[i] + 33 (see bam.c)
+ * q[k-start] = p[k] + 33 # <<<<<<<<<<<<<<
+ *
+ * return qual
+ */
+ (__pyx_v_q[(__pyx_v_k - __pyx_v_start)]) = ((__pyx_v_p[__pyx_v_k]) + 33);
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1720
+ * q[k-start] = p[k] + 33
+ *
+ * return qual # <<<<<<<<<<<<<<
+ *
+ * cdef class AlignedRead:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_qual);
+ __pyx_r = __pyx_v_qual;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.get_qual_range");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_qual);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1746
+ *
+ * # Now only called when instances are created from Python
+ * def __init__(self): # <<<<<<<<<<<<<<
+ * # see bam_init1
+ * self._delegate = <bam1_t*>calloc( 1, sizeof( bam1_t) )
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_0__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_0__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ int __pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__init__");
+ __Pyx_TraceCall("__init__", __pyx_f[0], 1746);
+ if (unlikely(PyTuple_GET_SIZE(__pyx_args) > 0)) {
+ __Pyx_RaiseArgtupleInvalid("__init__", 1, 0, 0, PyTuple_GET_SIZE(__pyx_args)); return -1;}
+ if (unlikely(__pyx_kwds) && unlikely(PyDict_Size(__pyx_kwds) > 0) && unlikely(!__Pyx_CheckKeywordStrings(__pyx_kwds, "__init__", 0))) return -1;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1748
+ * def __init__(self):
+ * # see bam_init1
+ * self._delegate = <bam1_t*>calloc( 1, sizeof( bam1_t) ) # <<<<<<<<<<<<<<
+ * # allocate some memory
+ * # If size is 0, calloc does not return a pointer that can be passed to free()
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate = ((bam1_t *)calloc(1, (sizeof(bam1_t))));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1752
+ * # If size is 0, calloc does not return a pointer that can be passed to free()
+ * # so allocate 40 bytes for a new read
+ * self._delegate.m_data = 40 # <<<<<<<<<<<<<<
+ * self._delegate.data = <uint8_t *>calloc( self._delegate.m_data, 1 )
+ * self._delegate.data_len = 0
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->m_data = 40;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1753
+ * # so allocate 40 bytes for a new read
+ * self._delegate.m_data = 40
+ * self._delegate.data = <uint8_t *>calloc( self._delegate.m_data, 1 ) # <<<<<<<<<<<<<<
+ * self._delegate.data_len = 0
+ *
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->data = ((uint8_t *)calloc(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->m_data, 1));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1754
+ * self._delegate.m_data = 40
+ * self._delegate.data = <uint8_t *>calloc( self._delegate.m_data, 1 )
+ * self._delegate.data_len = 0 # <<<<<<<<<<<<<<
+ *
+ * def __dealloc__(self):
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->data_len = 0;
+
+ __pyx_r = 0;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1756
+ * self._delegate.data_len = 0
+ *
+ * def __dealloc__(self): # <<<<<<<<<<<<<<
+ * bam_destroy1(self._delegate)
+ *
+ */
+
+static void __pyx_pf_9csamtools_11AlignedRead_1__dealloc__(PyObject *__pyx_v_self); /*proto*/
+static void __pyx_pf_9csamtools_11AlignedRead_1__dealloc__(PyObject *__pyx_v_self) {
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__dealloc__");
+ __Pyx_TraceCall("__dealloc__", __pyx_f[0], 1756);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1757
+ *
+ * def __dealloc__(self):
+ * bam_destroy1(self._delegate) # <<<<<<<<<<<<<<
+ *
+ * def __str__(self):
+ */
+ bam_destroy1(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate);
+
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1759
+ * bam_destroy1(self._delegate)
+ *
+ * def __str__(self): # <<<<<<<<<<<<<<
+ * """todo"""
+ * return "\t".join(map(str, (self.qname,
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_2__str__(PyObject *__pyx_v_self); /*proto*/
+static char __pyx_doc_9csamtools_11AlignedRead_2__str__[] = "todo";
+struct wrapperbase __pyx_wrapperbase_9csamtools_11AlignedRead_2__str__;
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_2__str__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ 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;
+ PyObject *__pyx_t_7 = NULL;
+ PyObject *__pyx_t_8 = NULL;
+ PyObject *__pyx_t_9 = NULL;
+ PyObject *__pyx_t_10 = NULL;
+ PyObject *__pyx_t_11 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__str__");
+ __Pyx_TraceCall("__str__", __pyx_f[0], 1759);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1761
+ * def __str__(self):
+ * """todo"""
+ * return "\t".join(map(str, (self.qname, # <<<<<<<<<<<<<<
+ * self.rname,
+ * self.pos,
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_1), __pyx_n_s__join); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__qname); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1762
+ * """todo"""
+ * return "\t".join(map(str, (self.qname,
+ * self.rname, # <<<<<<<<<<<<<<
+ * self.pos,
+ * self.cigar,
+ */
+ __pyx_t_3 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__rname); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1762; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1763
+ * return "\t".join(map(str, (self.qname,
+ * self.rname,
+ * self.pos, # <<<<<<<<<<<<<<
+ * self.cigar,
+ * self.qual,
+ */
+ __pyx_t_4 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__pos); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1763; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1764
+ * self.rname,
+ * self.pos,
+ * self.cigar, # <<<<<<<<<<<<<<
+ * self.qual,
+ * self.flag,
+ */
+ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__cigar); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1764; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1765
+ * self.pos,
+ * self.cigar,
+ * self.qual, # <<<<<<<<<<<<<<
+ * self.flag,
+ * self.seq,
+ */
+ __pyx_t_6 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__qual); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1765; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1766
+ * self.cigar,
+ * self.qual,
+ * self.flag, # <<<<<<<<<<<<<<
+ * self.seq,
+ * self.mapq,
+ */
+ __pyx_t_7 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1767
+ * self.qual,
+ * self.flag,
+ * self.seq, # <<<<<<<<<<<<<<
+ * self.mapq,
+ * self.tags)))
+ */
+ __pyx_t_8 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__seq); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1767; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1768
+ * self.flag,
+ * self.seq,
+ * self.mapq, # <<<<<<<<<<<<<<
+ * self.tags)))
+ *
+ */
+ __pyx_t_9 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__mapq); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1768; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1769
+ * self.seq,
+ * self.mapq,
+ * self.tags))) # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ __pyx_t_10 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__tags); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1769; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_10);
+ __pyx_t_11 = PyTuple_New(9); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_11));
+ PyTuple_SET_ITEM(__pyx_t_11, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ PyTuple_SET_ITEM(__pyx_t_11, 1, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ PyTuple_SET_ITEM(__pyx_t_11, 2, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ PyTuple_SET_ITEM(__pyx_t_11, 3, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ PyTuple_SET_ITEM(__pyx_t_11, 4, __pyx_t_6);
+ __Pyx_GIVEREF(__pyx_t_6);
+ PyTuple_SET_ITEM(__pyx_t_11, 5, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ PyTuple_SET_ITEM(__pyx_t_11, 6, __pyx_t_8);
+ __Pyx_GIVEREF(__pyx_t_8);
+ PyTuple_SET_ITEM(__pyx_t_11, 7, __pyx_t_9);
+ __Pyx_GIVEREF(__pyx_t_9);
+ PyTuple_SET_ITEM(__pyx_t_11, 8, __pyx_t_10);
+ __Pyx_GIVEREF(__pyx_t_10);
+ __pyx_t_2 = 0;
+ __pyx_t_3 = 0;
+ __pyx_t_4 = 0;
+ __pyx_t_5 = 0;
+ __pyx_t_6 = 0;
+ __pyx_t_7 = 0;
+ __pyx_t_8 = 0;
+ __pyx_t_9 = 0;
+ __pyx_t_10 = 0;
+ __pyx_t_10 = PyTuple_New(2); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_10));
+ __Pyx_INCREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_10, 0, ((PyObject *)((PyObject*)(&PyString_Type))));
+ __Pyx_GIVEREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_10, 1, ((PyObject *)__pyx_t_11));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_11));
+ __pyx_t_11 = 0;
+ __pyx_t_11 = PyObject_Call(__pyx_builtin_map, ((PyObject *)__pyx_t_10), NULL); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_11);
+ __Pyx_DECREF(((PyObject *)__pyx_t_10)); __pyx_t_10 = 0;
+ __pyx_t_10 = PyTuple_New(1); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_10));
+ PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_11);
+ __Pyx_GIVEREF(__pyx_t_11);
+ __pyx_t_11 = 0;
+ __pyx_t_11 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_10), NULL); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1761; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_11);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_10)); __pyx_t_10 = 0;
+ __pyx_r = __pyx_t_11;
+ __pyx_t_11 = 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_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_XDECREF(__pyx_t_8);
+ __Pyx_XDECREF(__pyx_t_9);
+ __Pyx_XDECREF(__pyx_t_10);
+ __Pyx_XDECREF(__pyx_t_11);
+ __Pyx_AddTraceback("csamtools.AlignedRead.__str__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1772
+ *
+ *
+ * def compare(self, AlignedRead other): # <<<<<<<<<<<<<<
+ * '''return -1,0,1, if contents in this are binary <,=,> to *other*'''
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_3compare(PyObject *__pyx_v_self, PyObject *__pyx_v_other); /*proto*/
+static char __pyx_doc_9csamtools_11AlignedRead_3compare[] = "return -1,0,1, if contents in this are binary <,=,> to *other*";
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_3compare(PyObject *__pyx_v_self, PyObject *__pyx_v_other) {
+ int __pyx_v_retval;
+ bam1_t *__pyx_v_t;
+ bam1_t *__pyx_v_o;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ PyObject *__pyx_t_4 = NULL;
+ int __pyx_t_5;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("compare");
+ __Pyx_TraceCall("compare", __pyx_f[0], 1772);
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_other), __pyx_ptype_9csamtools_AlignedRead, 1, "other", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1772; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1778
+ * cdef bam1_t *t, *o
+ *
+ * t = self._delegate # <<<<<<<<<<<<<<
+ * o = other._delegate
+ *
+ */
+ __pyx_v_t = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1779
+ *
+ * t = self._delegate
+ * o = other._delegate # <<<<<<<<<<<<<<
+ *
+ * # uncomment for debugging purposes
+ */
+ __pyx_v_o = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_other)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1791
+ *
+ * # Fast-path test for object identity
+ * if t==o: # <<<<<<<<<<<<<<
+ * return 0
+ *
+ */
+ __pyx_t_1 = (__pyx_v_t == __pyx_v_o);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1792
+ * # Fast-path test for object identity
+ * if t==o:
+ * return 0 # <<<<<<<<<<<<<<
+ *
+ * retval = memcmp(&t.core, &o.core, sizeof(bam1_core_t))
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_int_0);
+ __pyx_r = __pyx_int_0;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1794
+ * return 0
+ *
+ * retval = memcmp(&t.core, &o.core, sizeof(bam1_core_t)) # <<<<<<<<<<<<<<
+ *
+ * if retval: return retval
+ */
+ __pyx_v_retval = memcmp((&__pyx_v_t->core), (&__pyx_v_o->core), (sizeof(bam1_core_t)));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1796
+ * retval = memcmp(&t.core, &o.core, sizeof(bam1_core_t))
+ *
+ * if retval: return retval # <<<<<<<<<<<<<<
+ * retval = cmp(t.data_len, o.data_len)
+ * if retval: return retval
+ */
+ if (__pyx_v_retval) {
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = PyInt_FromLong(__pyx_v_retval); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1796; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_r = __pyx_t_2;
+ __pyx_t_2 = 0;
+ goto __pyx_L0;
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1797
+ *
+ * if retval: return retval
+ * retval = cmp(t.data_len, o.data_len) # <<<<<<<<<<<<<<
+ * if retval: return retval
+ * return memcmp(t.data, o.data, t.data_len)
+ */
+ __pyx_t_2 = PyInt_FromLong(__pyx_v_t->data_len); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyInt_FromLong(__pyx_v_o->data_len); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ __pyx_t_2 = 0;
+ __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_Call(__pyx_builtin_cmp, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __pyx_t_5 = __Pyx_PyInt_AsInt(__pyx_t_3); if (unlikely((__pyx_t_5 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_v_retval = __pyx_t_5;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1798
+ * if retval: return retval
+ * retval = cmp(t.data_len, o.data_len)
+ * if retval: return retval # <<<<<<<<<<<<<<
+ * return memcmp(t.data, o.data, t.data_len)
+ *
+ */
+ if (__pyx_v_retval) {
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_3 = PyInt_FromLong(__pyx_v_retval); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1798; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 0;
+ goto __pyx_L0;
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1799
+ * retval = cmp(t.data_len, o.data_len)
+ * if retval: return retval
+ * return memcmp(t.data, o.data, t.data_len) # <<<<<<<<<<<<<<
+ *
+ * # Disabled so long as __cmp__ is a special method
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_3 = PyInt_FromLong(memcmp(__pyx_v_t->data, __pyx_v_o->data, __pyx_v_t->data_len)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1799; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_AddTraceback("csamtools.AlignedRead.compare");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1802
+ *
+ * # Disabled so long as __cmp__ is a special method
+ * def __hash__(self): # <<<<<<<<<<<<<<
+ * return _Py_HashPointer(<void *>self)
+ *
+ */
+
+static long __pyx_pf_9csamtools_11AlignedRead_4__hash__(PyObject *__pyx_v_self); /*proto*/
+static long __pyx_pf_9csamtools_11AlignedRead_4__hash__(PyObject *__pyx_v_self) {
+ long __pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__hash__");
+ __Pyx_TraceCall("__hash__", __pyx_f[0], 1802);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1803
+ * # Disabled so long as __cmp__ is a special method
+ * def __hash__(self):
+ * return _Py_HashPointer(<void *>self) # <<<<<<<<<<<<<<
+ *
+ * property qname:
+ */
+ __pyx_r = _Py_HashPointer(((void *)__pyx_v_self));
+ goto __pyx_L0;
+
+ __pyx_r = 0;
+ __pyx_L0:;
+ if (unlikely(__pyx_r == -1) && !PyErr_Occurred()) __pyx_r = -2;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1807
+ * property qname:
+ * """the query name (None if not present)"""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * cdef bam1_t * src
+ * src = self._delegate
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5qname_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5qname_0__get__(PyObject *__pyx_v_self) {
+ bam1_t *__pyx_v_src;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 1807);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1809
+ * def __get__(self):
+ * cdef bam1_t * src
+ * src = self._delegate # <<<<<<<<<<<<<<
+ * if src.core.l_qname == 0: return None
+ * return <char *>bam1_qname( src )
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1810
+ * cdef bam1_t * src
+ * src = self._delegate
+ * if src.core.l_qname == 0: return None # <<<<<<<<<<<<<<
+ * return <char *>bam1_qname( src )
+ *
+ */
+ __pyx_t_1 = (__pyx_v_src->core.l_qname == 0);
+ if (__pyx_t_1) {
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1811
+ * src = self._delegate
+ * if src.core.l_qname == 0: return None
+ * return <char *>bam1_qname( src ) # <<<<<<<<<<<<<<
+ *
+ * def __set__(self, qname ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = PyBytes_FromString(bam1_qname(__pyx_v_src)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1811; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __pyx_r = ((PyObject *)__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_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.qname.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1813
+ * return <char *>bam1_qname( src )
+ *
+ * def __set__(self, qname ): # <<<<<<<<<<<<<<
+ * if qname == None or len(qname) == 0: return
+ * cdef bam1_t * src
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_5qname_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_qname); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_5qname_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_qname) {
+ bam1_t *__pyx_v_src;
+ int __pyx_v_l;
+ char *__pyx_v_p;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ Py_ssize_t __pyx_t_3;
+ int __pyx_t_4;
+ int __pyx_t_5;
+ char *__pyx_t_6;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 1813);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1814
+ *
+ * def __set__(self, qname ):
+ * if qname == None or len(qname) == 0: return # <<<<<<<<<<<<<<
+ * cdef bam1_t * src
+ * cdef int l
+ */
+ __pyx_t_1 = PyObject_RichCompare(__pyx_v_qname, Py_None, Py_EQ); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1814; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1814; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (!__pyx_t_2) {
+ __pyx_t_3 = PyObject_Length(__pyx_v_qname); if (unlikely(__pyx_t_3 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1814; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_4 = (__pyx_t_3 == 0);
+ __pyx_t_5 = __pyx_t_4;
+ } else {
+ __pyx_t_5 = __pyx_t_2;
+ }
+ if (__pyx_t_5) {
+ __pyx_r = 0;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1819
+ * cdef char * p
+ *
+ * src = self._delegate # <<<<<<<<<<<<<<
+ * p = bam1_qname( src )
+ *
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1820
+ *
+ * src = self._delegate
+ * p = bam1_qname( src ) # <<<<<<<<<<<<<<
+ *
+ * # the qname is \0 terminated
+ */
+ __pyx_v_p = bam1_qname(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1823
+ *
+ * # the qname is \0 terminated
+ * l = len(qname) + 1 # <<<<<<<<<<<<<<
+ * pysam_bam_update( src,
+ * src.core.l_qname,
+ */
+ __pyx_t_3 = PyObject_Length(__pyx_v_qname); if (unlikely(__pyx_t_3 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1823; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_l = (__pyx_t_3 + 1);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1827
+ * src.core.l_qname,
+ * l,
+ * <uint8_t*>p ) # <<<<<<<<<<<<<<
+ *
+ * src.core.l_qname = l
+ */
+ pysam_bam_update(__pyx_v_src, __pyx_v_src->core.l_qname, __pyx_v_l, ((uint8_t *)__pyx_v_p));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1829
+ * <uint8_t*>p )
+ *
+ * src.core.l_qname = l # <<<<<<<<<<<<<<
+ *
+ * # re-acquire pointer to location in memory
+ */
+ __pyx_v_src->core.l_qname = __pyx_v_l;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1833
+ * # re-acquire pointer to location in memory
+ * # as it might have moved
+ * p = bam1_qname(src) # <<<<<<<<<<<<<<
+ *
+ * strncpy( p, qname, l )
+ */
+ __pyx_v_p = bam1_qname(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1835
+ * p = bam1_qname(src)
+ *
+ * strncpy( p, qname, l ) # <<<<<<<<<<<<<<
+ *
+ * property cigar:
+ */
+ __pyx_t_6 = PyBytes_AsString(__pyx_v_qname); if (unlikely((!__pyx_t_6) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1835; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ strncpy(__pyx_v_p, __pyx_t_6, __pyx_v_l);
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.qname.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1840
+ * """the :term:`cigar` alignment (None if not present).
+ * """
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * cdef uint32_t * cigar_p
+ * cdef bam1_t * src
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5cigar_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5cigar_0__get__(PyObject *__pyx_v_self) {
+ uint32_t *__pyx_v_cigar_p;
+ bam1_t *__pyx_v_src;
+ PyObject *__pyx_v_op;
+ PyObject *__pyx_v_l;
+ PyObject *__pyx_v_cigar;
+ int __pyx_v_k;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ uint32_t __pyx_t_3;
+ PyObject *__pyx_t_4 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 1840);
+ __pyx_v_op = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_l = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_cigar = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1846
+ * cdef int k
+ *
+ * src = self._delegate # <<<<<<<<<<<<<<
+ * if src.core.n_cigar == 0: return None
+ *
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1847
+ *
+ * src = self._delegate
+ * if src.core.n_cigar == 0: return None # <<<<<<<<<<<<<<
+ *
+ * cigar = []
+ */
+ __pyx_t_1 = (__pyx_v_src->core.n_cigar == 0);
+ if (__pyx_t_1) {
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1849
+ * if src.core.n_cigar == 0: return None
+ *
+ * cigar = [] # <<<<<<<<<<<<<<
+ * cigar_p = bam1_cigar(src);
+ * for k from 0 <= k < src.core.n_cigar:
+ */
+ __pyx_t_2 = PyList_New(0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1849; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_DECREF(__pyx_v_cigar);
+ __pyx_v_cigar = ((PyObject *)__pyx_t_2);
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1850
+ *
+ * cigar = []
+ * cigar_p = bam1_cigar(src); # <<<<<<<<<<<<<<
+ * for k from 0 <= k < src.core.n_cigar:
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ */
+ __pyx_v_cigar_p = bam1_cigar(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1851
+ * cigar = []
+ * cigar_p = bam1_cigar(src);
+ * for k from 0 <= k < src.core.n_cigar: # <<<<<<<<<<<<<<
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ * l = cigar_p[k] >> BAM_CIGAR_SHIFT
+ */
+ __pyx_t_3 = __pyx_v_src->core.n_cigar;
+ for (__pyx_v_k = 0; __pyx_v_k < __pyx_t_3; __pyx_v_k++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1852
+ * cigar_p = bam1_cigar(src);
+ * for k from 0 <= k < src.core.n_cigar:
+ * op = cigar_p[k] & BAM_CIGAR_MASK # <<<<<<<<<<<<<<
+ * l = cigar_p[k] >> BAM_CIGAR_SHIFT
+ * cigar.append((op, l))
+ */
+ __pyx_t_2 = PyInt_FromLong(((__pyx_v_cigar_p[__pyx_v_k]) & 15)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1852; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_op);
+ __pyx_v_op = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1853
+ * for k from 0 <= k < src.core.n_cigar:
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ * l = cigar_p[k] >> BAM_CIGAR_SHIFT # <<<<<<<<<<<<<<
+ * cigar.append((op, l))
+ * return cigar
+ */
+ __pyx_t_2 = PyInt_FromLong(((__pyx_v_cigar_p[__pyx_v_k]) >> 4)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1853; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_l);
+ __pyx_v_l = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1854
+ * op = cigar_p[k] & BAM_CIGAR_MASK
+ * l = cigar_p[k] >> BAM_CIGAR_SHIFT
+ * cigar.append((op, l)) # <<<<<<<<<<<<<<
+ * return cigar
+ *
+ */
+ __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1854; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(__pyx_v_op);
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_op);
+ __Pyx_GIVEREF(__pyx_v_op);
+ __Pyx_INCREF(__pyx_v_l);
+ PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_v_l);
+ __Pyx_GIVEREF(__pyx_v_l);
+ __pyx_t_4 = __Pyx_PyObject_Append(__pyx_v_cigar, ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1854; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1855
+ * l = cigar_p[k] >> BAM_CIGAR_SHIFT
+ * cigar.append((op, l))
+ * return cigar # <<<<<<<<<<<<<<
+ *
+ * def __set__(self, values ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_cigar);
+ __pyx_r = __pyx_v_cigar;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_AddTraceback("csamtools.AlignedRead.cigar.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_op);
+ __Pyx_DECREF(__pyx_v_l);
+ __Pyx_DECREF(__pyx_v_cigar);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1857
+ * return cigar
+ *
+ * def __set__(self, values ): # <<<<<<<<<<<<<<
+ * if values == None or len(values) == 0: return
+ * cdef uint32_t * p
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_5cigar_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_values); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_5cigar_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_values) {
+ uint32_t *__pyx_v_p;
+ bam1_t *__pyx_v_src;
+ PyObject *__pyx_v_op;
+ PyObject *__pyx_v_l;
+ int __pyx_v_k;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ Py_ssize_t __pyx_t_3;
+ int __pyx_t_4;
+ int __pyx_t_5;
+ PyObject *__pyx_t_6 = NULL;
+ PyObject *__pyx_t_7 = NULL;
+ PyObject *__pyx_t_8 = NULL;
+ PyObject *__pyx_t_9 = NULL;
+ uint32_t __pyx_t_10;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 1857);
+ __pyx_v_op = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_l = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1858
+ *
+ * def __set__(self, values ):
+ * if values == None or len(values) == 0: return # <<<<<<<<<<<<<<
+ * cdef uint32_t * p
+ * cdef bam1_t * src
+ */
+ __pyx_t_1 = PyObject_RichCompare(__pyx_v_values, Py_None, Py_EQ); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1858; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1858; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (!__pyx_t_2) {
+ __pyx_t_3 = PyObject_Length(__pyx_v_values); if (unlikely(__pyx_t_3 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1858; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_4 = (__pyx_t_3 == 0);
+ __pyx_t_5 = __pyx_t_4;
+ } else {
+ __pyx_t_5 = __pyx_t_2;
+ }
+ if (__pyx_t_5) {
+ __pyx_r = 0;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1864
+ * cdef int k
+ *
+ * k = 0 # <<<<<<<<<<<<<<
+ *
+ * src = self._delegate
+ */
+ __pyx_v_k = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1866
+ * k = 0
+ *
+ * src = self._delegate # <<<<<<<<<<<<<<
+ *
+ * # get location of cigar string
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1869
+ *
+ * # get location of cigar string
+ * p = bam1_cigar(src) # <<<<<<<<<<<<<<
+ *
+ * # create space for cigar data within src.data
+ */
+ __pyx_v_p = bam1_cigar(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1874
+ * pysam_bam_update( src,
+ * src.core.n_cigar * 4,
+ * len(values) * 4, # <<<<<<<<<<<<<<
+ * <uint8_t*>p )
+ *
+ */
+ __pyx_t_3 = PyObject_Length(__pyx_v_values); if (unlikely(__pyx_t_3 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1874; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1875
+ * src.core.n_cigar * 4,
+ * len(values) * 4,
+ * <uint8_t*>p ) # <<<<<<<<<<<<<<
+ *
+ * # length is number of cigar operations, not bytes
+ */
+ pysam_bam_update(__pyx_v_src, (__pyx_v_src->core.n_cigar * 4), (__pyx_t_3 * 4), ((uint8_t *)__pyx_v_p));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1878
+ *
+ * # length is number of cigar operations, not bytes
+ * src.core.n_cigar = len(values) # <<<<<<<<<<<<<<
+ *
+ * # re-acquire pointer to location in memory
+ */
+ __pyx_t_3 = PyObject_Length(__pyx_v_values); if (unlikely(__pyx_t_3 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1878; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_src->core.n_cigar = __pyx_t_3;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1882
+ * # re-acquire pointer to location in memory
+ * # as it might have moved
+ * p = bam1_cigar(src) # <<<<<<<<<<<<<<
+ *
+ * # insert cigar operations
+ */
+ __pyx_v_p = bam1_cigar(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1885
+ *
+ * # insert cigar operations
+ * for op, l in values: # <<<<<<<<<<<<<<
+ * p[k] = l << BAM_CIGAR_SHIFT | op
+ * k += 1
+ */
+ if (PyList_CheckExact(__pyx_v_values) || PyTuple_CheckExact(__pyx_v_values)) {
+ __pyx_t_3 = 0; __pyx_t_1 = __pyx_v_values; __Pyx_INCREF(__pyx_t_1);
+ } else {
+ __pyx_t_3 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_v_values); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1885; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ }
+ for (;;) {
+ if (likely(PyList_CheckExact(__pyx_t_1))) {
+ if (__pyx_t_3 >= PyList_GET_SIZE(__pyx_t_1)) break;
+ __pyx_t_6 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_3); __Pyx_INCREF(__pyx_t_6); __pyx_t_3++;
+ } else if (likely(PyTuple_CheckExact(__pyx_t_1))) {
+ if (__pyx_t_3 >= PyTuple_GET_SIZE(__pyx_t_1)) break;
+ __pyx_t_6 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_3); __Pyx_INCREF(__pyx_t_6); __pyx_t_3++;
+ } else {
+ __pyx_t_6 = PyIter_Next(__pyx_t_1);
+ if (!__pyx_t_6) {
+ if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1885; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ break;
+ }
+ __Pyx_GOTREF(__pyx_t_6);
+ }
+ if (PyTuple_CheckExact(__pyx_t_6) && likely(PyTuple_GET_SIZE(__pyx_t_6) == 2)) {
+ PyObject* tuple = __pyx_t_6;
+ __pyx_t_7 = PyTuple_GET_ITEM(tuple, 0); __Pyx_INCREF(__pyx_t_7);
+ __pyx_t_8 = PyTuple_GET_ITEM(tuple, 1); __Pyx_INCREF(__pyx_t_8);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __Pyx_DECREF(__pyx_v_op);
+ __pyx_v_op = __pyx_t_7;
+ __pyx_t_7 = 0;
+ __Pyx_DECREF(__pyx_v_l);
+ __pyx_v_l = __pyx_t_8;
+ __pyx_t_8 = 0;
+ } else {
+ __pyx_t_9 = PyObject_GetIter(__pyx_t_6); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1885; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_7 = __Pyx_UnpackItem(__pyx_t_9, 0); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1885; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_8 = __Pyx_UnpackItem(__pyx_t_9, 1); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1885; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+ if (__Pyx_EndUnpack(__pyx_t_9, 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1885; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
+ __Pyx_DECREF(__pyx_v_op);
+ __pyx_v_op = __pyx_t_7;
+ __pyx_t_7 = 0;
+ __Pyx_DECREF(__pyx_v_l);
+ __pyx_v_l = __pyx_t_8;
+ __pyx_t_8 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1886
+ * # insert cigar operations
+ * for op, l in values:
+ * p[k] = l << BAM_CIGAR_SHIFT | op # <<<<<<<<<<<<<<
+ * k += 1
+ *
+ */
+ __pyx_t_6 = PyNumber_Lshift(__pyx_v_l, __pyx_int_4); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1886; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_8 = PyNumber_Or(__pyx_t_6, __pyx_v_op); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1886; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_10 = __Pyx_PyInt_from_py_uint32_t(__pyx_t_8); if (unlikely((__pyx_t_10 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1886; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0;
+ (__pyx_v_p[__pyx_v_k]) = __pyx_t_10;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1887
+ * for op, l in values:
+ * p[k] = l << BAM_CIGAR_SHIFT | op
+ * k += 1 # <<<<<<<<<<<<<<
+ *
+ * ## setting the cigar string also updates the "bin" attribute
+ */
+ __pyx_v_k = (__pyx_v_k + 1);
+ }
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1890
+ *
+ * ## setting the cigar string also updates the "bin" attribute
+ * src.core.bin = bam_reg2bin( src.core.pos, bam_calend( &src.core, p)) # <<<<<<<<<<<<<<
+ *
+ * property seq:
+ */
+ __pyx_v_src->core.bin = bam_reg2bin(__pyx_v_src->core.pos, bam_calend((&__pyx_v_src->core), __pyx_v_p));
+
+ __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_8);
+ __Pyx_XDECREF(__pyx_t_9);
+ __Pyx_AddTraceback("csamtools.AlignedRead.cigar.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_op);
+ __Pyx_DECREF(__pyx_v_l);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1894
+ * property seq:
+ * """read sequence bases, including :term:`soft clipped` bases (None if not present)"""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * cdef bam1_t * src
+ * cdef char * s
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_3seq_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_3seq_0__get__(PyObject *__pyx_v_self) {
+ bam1_t *__pyx_v_src;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 1894);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1897
+ * cdef bam1_t * src
+ * cdef char * s
+ * src = self._delegate # <<<<<<<<<<<<<<
+ *
+ * if src.core.l_qseq == 0: return None
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1899
+ * src = self._delegate
+ *
+ * if src.core.l_qseq == 0: return None # <<<<<<<<<<<<<<
+ *
+ * return get_seq_range(src, 0, src.core.l_qseq)
+ */
+ __pyx_t_1 = (__pyx_v_src->core.l_qseq == 0);
+ if (__pyx_t_1) {
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1901
+ * if src.core.l_qseq == 0: return None
+ *
+ * return get_seq_range(src, 0, src.core.l_qseq) # <<<<<<<<<<<<<<
+ *
+ * def __set__(self,seq):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = __pyx_f_9csamtools_get_seq_range(__pyx_v_src, 0, __pyx_v_src->core.l_qseq); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1901; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.seq.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1903
+ * return get_seq_range(src, 0, src.core.l_qseq)
+ *
+ * def __set__(self,seq): # <<<<<<<<<<<<<<
+ * # samtools manages sequence and quality length memory together
+ * # if no quality information is present, the first byte says 0xff.
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_3seq_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_seq); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_3seq_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_seq) {
+ bam1_t *__pyx_v_src;
+ uint8_t *__pyx_v_p;
+ char *__pyx_v_s;
+ int __pyx_v_l;
+ int __pyx_v_k;
+ int __pyx_v_nbytes_new;
+ int __pyx_v_nbytes_old;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ Py_ssize_t __pyx_t_3;
+ int __pyx_t_4;
+ int __pyx_t_5;
+ int __pyx_t_6;
+ char *__pyx_t_7;
+ long __pyx_t_8;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 1903);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1907
+ * # if no quality information is present, the first byte says 0xff.
+ *
+ * if seq == None or len(seq) == 0: return # <<<<<<<<<<<<<<
+ * cdef bam1_t * src
+ * cdef uint8_t * p
+ */
+ __pyx_t_1 = PyObject_RichCompare(__pyx_v_seq, Py_None, Py_EQ); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1907; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1907; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (!__pyx_t_2) {
+ __pyx_t_3 = PyObject_Length(__pyx_v_seq); if (unlikely(__pyx_t_3 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1907; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_4 = (__pyx_t_3 == 0);
+ __pyx_t_5 = __pyx_t_4;
+ } else {
+ __pyx_t_5 = __pyx_t_2;
+ }
+ if (__pyx_t_5) {
+ __pyx_r = 0;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1913
+ * cdef int l, k, nbytes_new, nbytes_old
+ *
+ * src = self._delegate # <<<<<<<<<<<<<<
+ *
+ * l = len(seq)
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1915
+ * src = self._delegate
+ *
+ * l = len(seq) # <<<<<<<<<<<<<<
+ *
+ * # as the sequence is stored in half-bytes, the total length (sequence
+ */
+ __pyx_t_3 = PyObject_Length(__pyx_v_seq); if (unlikely(__pyx_t_3 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1915; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_l = __pyx_t_3;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1919
+ * # as the sequence is stored in half-bytes, the total length (sequence
+ * # plus quality scores) is (l+1)/2 + l
+ * nbytes_new = (l+1)/2 + l # <<<<<<<<<<<<<<
+ * nbytes_old = (src.core.l_qseq+1)/2 + src.core.l_qseq
+ * # acquire pointer to location in memory
+ */
+ __pyx_v_nbytes_new = (__Pyx_div_long((__pyx_v_l + 1), 2) + __pyx_v_l);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1920
+ * # plus quality scores) is (l+1)/2 + l
+ * nbytes_new = (l+1)/2 + l
+ * nbytes_old = (src.core.l_qseq+1)/2 + src.core.l_qseq # <<<<<<<<<<<<<<
+ * # acquire pointer to location in memory
+ * p = bam1_seq( src )
+ */
+ __pyx_v_nbytes_old = (__Pyx_div_long((__pyx_v_src->core.l_qseq + 1), 2) + __pyx_v_src->core.l_qseq);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1922
+ * nbytes_old = (src.core.l_qseq+1)/2 + src.core.l_qseq
+ * # acquire pointer to location in memory
+ * p = bam1_seq( src ) # <<<<<<<<<<<<<<
+ * src.core.l_qseq = l
+ *
+ */
+ __pyx_v_p = bam1_seq(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1923
+ * # acquire pointer to location in memory
+ * p = bam1_seq( src )
+ * src.core.l_qseq = l # <<<<<<<<<<<<<<
+ *
+ * pysam_bam_update( src,
+ */
+ __pyx_v_src->core.l_qseq = __pyx_v_l;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1928
+ * nbytes_old,
+ * nbytes_new,
+ * p) # <<<<<<<<<<<<<<
+ * # re-acquire pointer to location in memory
+ * # as it might have moved
+ */
+ pysam_bam_update(__pyx_v_src, __pyx_v_nbytes_old, __pyx_v_nbytes_new, __pyx_v_p);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1931
+ * # re-acquire pointer to location in memory
+ * # as it might have moved
+ * p = bam1_seq( src ) # <<<<<<<<<<<<<<
+ * for k from 0 <= k < nbytes_new: p[k] = 0
+ * # convert to C string
+ */
+ __pyx_v_p = bam1_seq(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1932
+ * # as it might have moved
+ * p = bam1_seq( src )
+ * for k from 0 <= k < nbytes_new: p[k] = 0 # <<<<<<<<<<<<<<
+ * # convert to C string
+ * s = seq
+ */
+ __pyx_t_6 = __pyx_v_nbytes_new;
+ for (__pyx_v_k = 0; __pyx_v_k < __pyx_t_6; __pyx_v_k++) {
+ (__pyx_v_p[__pyx_v_k]) = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1934
+ * for k from 0 <= k < nbytes_new: p[k] = 0
+ * # convert to C string
+ * s = seq # <<<<<<<<<<<<<<
+ * for k from 0 <= k < l:
+ * p[k/2] |= pysam_translate_sequence(s[k]) << 4 * (1 - k % 2)
+ */
+ __pyx_t_7 = PyBytes_AsString(__pyx_v_seq); if (unlikely((!__pyx_t_7) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1934; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_s = __pyx_t_7;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1935
+ * # convert to C string
+ * s = seq
+ * for k from 0 <= k < l: # <<<<<<<<<<<<<<
+ * p[k/2] |= pysam_translate_sequence(s[k]) << 4 * (1 - k % 2)
+ *
+ */
+ __pyx_t_6 = __pyx_v_l;
+ for (__pyx_v_k = 0; __pyx_v_k < __pyx_t_6; __pyx_v_k++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1936
+ * s = seq
+ * for k from 0 <= k < l:
+ * p[k/2] |= pysam_translate_sequence(s[k]) << 4 * (1 - k % 2) # <<<<<<<<<<<<<<
+ *
+ * # erase qualities
+ */
+ __pyx_t_8 = __Pyx_div_long(__pyx_v_k, 2);
+ (__pyx_v_p[__pyx_t_8]) = ((__pyx_v_p[__pyx_t_8]) | (pysam_translate_sequence((__pyx_v_s[__pyx_v_k])) << (4 * (1 - __Pyx_mod_long(__pyx_v_k, 2)))));
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1939
+ *
+ * # erase qualities
+ * p = bam1_qual( src ) # <<<<<<<<<<<<<<
+ * p[0] = 0xff
+ *
+ */
+ __pyx_v_p = bam1_qual(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1940
+ * # erase qualities
+ * p = bam1_qual( src )
+ * p[0] = 0xff # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ (__pyx_v_p[0]) = 0xff;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.seq.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1945
+ * property qual:
+ * """read sequence base qualities, including :term:`soft clipped` bases (None if not present)"""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ *
+ * cdef bam1_t * src
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4qual_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4qual_0__get__(PyObject *__pyx_v_self) {
+ bam1_t *__pyx_v_src;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 1945);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1950
+ * cdef char * q
+ *
+ * src = self._delegate # <<<<<<<<<<<<<<
+ *
+ * if src.core.l_qseq == 0: return None
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1952
+ * src = self._delegate
+ *
+ * if src.core.l_qseq == 0: return None # <<<<<<<<<<<<<<
+ *
+ * return get_qual_range(src, 0, src.core.l_qseq)
+ */
+ __pyx_t_1 = (__pyx_v_src->core.l_qseq == 0);
+ if (__pyx_t_1) {
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1954
+ * if src.core.l_qseq == 0: return None
+ *
+ * return get_qual_range(src, 0, src.core.l_qseq) # <<<<<<<<<<<<<<
+ *
+ * def __set__(self,qual):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = __pyx_f_9csamtools_get_qual_range(__pyx_v_src, 0, __pyx_v_src->core.l_qseq); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1954; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.qual.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1956
+ * return get_qual_range(src, 0, src.core.l_qseq)
+ *
+ * def __set__(self,qual): # <<<<<<<<<<<<<<
+ * # note that space is already allocated via the sequences
+ * cdef bam1_t * src
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_4qual_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_qual); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_4qual_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_qual) {
+ bam1_t *__pyx_v_src;
+ uint8_t *__pyx_v_p;
+ char *__pyx_v_q;
+ int __pyx_v_k;
+ int __pyx_v_l;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ Py_ssize_t __pyx_t_3;
+ int __pyx_t_4;
+ int __pyx_t_5;
+ char *__pyx_t_6;
+ PyObject *__pyx_t_7 = NULL;
+ PyObject *__pyx_t_8 = NULL;
+ int __pyx_t_9;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 1956);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1963
+ * cdef int k
+ *
+ * src = self._delegate # <<<<<<<<<<<<<<
+ * p = bam1_qual( src )
+ * if qual == None or len(qual) == 0:
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1964
+ *
+ * src = self._delegate
+ * p = bam1_qual( src ) # <<<<<<<<<<<<<<
+ * if qual == None or len(qual) == 0:
+ * # if absent - set to 0xff
+ */
+ __pyx_v_p = bam1_qual(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1965
+ * src = self._delegate
+ * p = bam1_qual( src )
+ * if qual == None or len(qual) == 0: # <<<<<<<<<<<<<<
+ * # if absent - set to 0xff
+ * p[0] = 0xff
+ */
+ __pyx_t_1 = PyObject_RichCompare(__pyx_v_qual, Py_None, Py_EQ); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1965; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1965; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (!__pyx_t_2) {
+ __pyx_t_3 = PyObject_Length(__pyx_v_qual); if (unlikely(__pyx_t_3 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1965; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_4 = (__pyx_t_3 == 0);
+ __pyx_t_5 = __pyx_t_4;
+ } else {
+ __pyx_t_5 = __pyx_t_2;
+ }
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1967
+ * if qual == None or len(qual) == 0:
+ * # if absent - set to 0xff
+ * p[0] = 0xff # <<<<<<<<<<<<<<
+ * return
+ * cdef int l
+ */
+ (__pyx_v_p[0]) = 0xff;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1968
+ * # if absent - set to 0xff
+ * p[0] = 0xff
+ * return # <<<<<<<<<<<<<<
+ * cdef int l
+ * # convert to C string
+ */
+ __pyx_r = 0;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1971
+ * cdef int l
+ * # convert to C string
+ * q = qual # <<<<<<<<<<<<<<
+ * l = len(qual)
+ * if src.core.l_qseq != l:
+ */
+ __pyx_t_6 = PyBytes_AsString(__pyx_v_qual); if (unlikely((!__pyx_t_6) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1971; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_q = __pyx_t_6;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1972
+ * # convert to C string
+ * q = qual
+ * l = len(qual) # <<<<<<<<<<<<<<
+ * if src.core.l_qseq != l:
+ * raise ValueError("quality and sequence mismatch: %i != %i" % (l, src.core.l_qseq))
+ */
+ __pyx_t_3 = PyObject_Length(__pyx_v_qual); if (unlikely(__pyx_t_3 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1972; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_l = __pyx_t_3;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1973
+ * q = qual
+ * l = len(qual)
+ * if src.core.l_qseq != l: # <<<<<<<<<<<<<<
+ * raise ValueError("quality and sequence mismatch: %i != %i" % (l, src.core.l_qseq))
+ * assert src.core.l_qseq == l
+ */
+ __pyx_t_5 = (__pyx_v_src->core.l_qseq != __pyx_v_l);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1974
+ * l = len(qual)
+ * if src.core.l_qseq != l:
+ * raise ValueError("quality and sequence mismatch: %i != %i" % (l, src.core.l_qseq)) # <<<<<<<<<<<<<<
+ * assert src.core.l_qseq == l
+ * for k from 0 <= k < l:
+ */
+ __pyx_t_1 = PyInt_FromLong(__pyx_v_l); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1974; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_7 = __Pyx_PyInt_to_py_int32_t(__pyx_v_src->core.l_qseq); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1974; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_8 = PyTuple_New(2); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1974; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ PyTuple_SET_ITEM(__pyx_t_8, 1, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ __pyx_t_1 = 0;
+ __pyx_t_7 = 0;
+ __pyx_t_7 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_109), ((PyObject *)__pyx_t_8)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1974; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_7));
+ __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0;
+ __pyx_t_8 = PyTuple_New(1); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1974; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ PyTuple_SET_ITEM(__pyx_t_8, 0, ((PyObject *)__pyx_t_7));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_7));
+ __pyx_t_7 = 0;
+ __pyx_t_7 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_8), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1974; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0;
+ __Pyx_Raise(__pyx_t_7, 0, 0);
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1974; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1975
+ * if src.core.l_qseq != l:
+ * raise ValueError("quality and sequence mismatch: %i != %i" % (l, src.core.l_qseq))
+ * assert src.core.l_qseq == l # <<<<<<<<<<<<<<
+ * for k from 0 <= k < l:
+ * p[k] = <uint8_t>q[k] - 33
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ if (unlikely(!(__pyx_v_src->core.l_qseq == __pyx_v_l))) {
+ PyErr_SetNone(PyExc_AssertionError);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1975; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1976
+ * raise ValueError("quality and sequence mismatch: %i != %i" % (l, src.core.l_qseq))
+ * assert src.core.l_qseq == l
+ * for k from 0 <= k < l: # <<<<<<<<<<<<<<
+ * p[k] = <uint8_t>q[k] - 33
+ *
+ */
+ __pyx_t_9 = __pyx_v_l;
+ for (__pyx_v_k = 0; __pyx_v_k < __pyx_t_9; __pyx_v_k++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1977
+ * assert src.core.l_qseq == l
+ * for k from 0 <= k < l:
+ * p[k] = <uint8_t>q[k] - 33 # <<<<<<<<<<<<<<
+ *
+ * property query:
+ */
+ (__pyx_v_p[__pyx_v_k]) = (((uint8_t)(__pyx_v_q[__pyx_v_k])) - 33);
+ }
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_XDECREF(__pyx_t_8);
+ __Pyx_AddTraceback("csamtools.AlignedRead.qual.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1989
+ * were not considered for alignment may have been retained."""
+ *
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * cdef bam1_t * src
+ * cdef uint32_t start, end
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5query_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5query_0__get__(PyObject *__pyx_v_self) {
+ bam1_t *__pyx_v_src;
+ uint32_t __pyx_v_start;
+ uint32_t __pyx_v_end;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ int32_t __pyx_t_2;
+ PyObject *__pyx_t_3 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 1989);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1994
+ * cdef char * s
+ *
+ * src = self._delegate # <<<<<<<<<<<<<<
+ *
+ * if src.core.l_qseq == 0: return None
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1996
+ * src = self._delegate
+ *
+ * if src.core.l_qseq == 0: return None # <<<<<<<<<<<<<<
+ *
+ * start = query_start(src)
+ */
+ __pyx_t_1 = (__pyx_v_src->core.l_qseq == 0);
+ if (__pyx_t_1) {
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1998
+ * if src.core.l_qseq == 0: return None
+ *
+ * start = query_start(src) # <<<<<<<<<<<<<<
+ * end = query_end(src)
+ *
+ */
+ __pyx_t_2 = __pyx_f_9csamtools_query_start(__pyx_v_src); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1998; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_start = __pyx_t_2;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1999
+ *
+ * start = query_start(src)
+ * end = query_end(src) # <<<<<<<<<<<<<<
+ *
+ * return get_seq_range(src, start, end)
+ */
+ __pyx_t_2 = __pyx_f_9csamtools_query_end(__pyx_v_src); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1999; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_end = __pyx_t_2;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2001
+ * end = query_end(src)
+ *
+ * return get_seq_range(src, start, end) # <<<<<<<<<<<<<<
+ *
+ * property qqual:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_3 = __pyx_f_9csamtools_get_seq_range(__pyx_v_src, __pyx_v_start, __pyx_v_end); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2001; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.AlignedRead.query.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2005
+ * property qqual:
+ * """aligned query sequence quality values (None if not present)"""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * cdef bam1_t * src
+ * cdef uint32_t start, end
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5qqual_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5qqual_0__get__(PyObject *__pyx_v_self) {
+ bam1_t *__pyx_v_src;
+ uint32_t __pyx_v_start;
+ uint32_t __pyx_v_end;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ int32_t __pyx_t_2;
+ PyObject *__pyx_t_3 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2005);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2010
+ * cdef char * q
+ *
+ * src = self._delegate # <<<<<<<<<<<<<<
+ *
+ * if src.core.l_qseq == 0: return None
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2012
+ * src = self._delegate
+ *
+ * if src.core.l_qseq == 0: return None # <<<<<<<<<<<<<<
+ *
+ * start = query_start(src)
+ */
+ __pyx_t_1 = (__pyx_v_src->core.l_qseq == 0);
+ if (__pyx_t_1) {
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2014
+ * if src.core.l_qseq == 0: return None
+ *
+ * start = query_start(src) # <<<<<<<<<<<<<<
+ * end = query_end(src)
+ *
+ */
+ __pyx_t_2 = __pyx_f_9csamtools_query_start(__pyx_v_src); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2014; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_start = __pyx_t_2;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2015
+ *
+ * start = query_start(src)
+ * end = query_end(src) # <<<<<<<<<<<<<<
+ *
+ * return get_qual_range(src, start, end)
+ */
+ __pyx_t_2 = __pyx_f_9csamtools_query_end(__pyx_v_src); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2015; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_end = __pyx_t_2;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2017
+ * end = query_end(src)
+ *
+ * return get_qual_range(src, start, end) # <<<<<<<<<<<<<<
+ *
+ * property qstart:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_3 = __pyx_f_9csamtools_get_qual_range(__pyx_v_src, __pyx_v_start, __pyx_v_end); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2017; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.AlignedRead.qqual.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2021
+ * property qstart:
+ * """start index of the aligned query portion of the sequence (0-based, inclusive)"""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * return query_start(self._delegate)
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_6qstart_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_6qstart_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ int32_t __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2021);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2022
+ * """start index of the aligned query portion of the sequence (0-based, inclusive)"""
+ * def __get__(self):
+ * return query_start(self._delegate) # <<<<<<<<<<<<<<
+ *
+ * property qend:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __pyx_f_9csamtools_query_start(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate); if (unlikely(__pyx_t_1 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2022; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_2 = __Pyx_PyInt_to_py_int32_t(__pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2022; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.qstart.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2026
+ * property qend:
+ * """end index of the aligned query portion of the sequence (0-based, exclusive)"""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * return query_end(self._delegate)
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4qend_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4qend_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ int32_t __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2026);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2027
+ * """end index of the aligned query portion of the sequence (0-based, exclusive)"""
+ * def __get__(self):
+ * return query_end(self._delegate) # <<<<<<<<<<<<<<
+ *
+ * property qlen:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __pyx_f_9csamtools_query_end(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate); if (unlikely(__pyx_t_1 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2027; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_2 = __Pyx_PyInt_to_py_int32_t(__pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2027; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.qend.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2031
+ * property qlen:
+ * """Length of the aligned query sequence"""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * cdef bam1_t * src
+ * src = self._delegate
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4qlen_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4qlen_0__get__(PyObject *__pyx_v_self) {
+ bam1_t *__pyx_v_src;
+ PyObject *__pyx_r = NULL;
+ int32_t __pyx_t_1;
+ int32_t __pyx_t_2;
+ PyObject *__pyx_t_3 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2031);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2033
+ * def __get__(self):
+ * cdef bam1_t * src
+ * src = self._delegate # <<<<<<<<<<<<<<
+ * return query_end(src)-query_start(src)
+ *
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2034
+ * cdef bam1_t * src
+ * src = self._delegate
+ * return query_end(src)-query_start(src) # <<<<<<<<<<<<<<
+ *
+ * property tags:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __pyx_f_9csamtools_query_end(__pyx_v_src); if (unlikely(__pyx_t_1 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2034; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_2 = __pyx_f_9csamtools_query_start(__pyx_v_src); if (unlikely(__pyx_t_2 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2034; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_3 = __Pyx_PyInt_to_py_int32_t((__pyx_t_1 - __pyx_t_2)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2034; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.AlignedRead.qlen.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2048
+ *
+ * """
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * cdef char * ctag
+ * cdef bam1_t * src
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4tags_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4tags_0__get__(PyObject *__pyx_v_self) {
+ bam1_t *__pyx_v_src;
+ uint8_t *__pyx_v_s;
+ char __pyx_v_auxtag[3];
+ char __pyx_v_auxtype;
+ PyObject *__pyx_v_result;
+ PyObject *__pyx_v_value;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ char __pyx_t_3;
+ int __pyx_t_4;
+ int __pyx_t_5;
+ PyObject *__pyx_t_6 = NULL;
+ Py_ssize_t __pyx_t_7;
+ int __pyx_t_8;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2048);
+ __pyx_v_result = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+ __pyx_v_value = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2055
+ * cdef char auxtype
+ *
+ * src = self._delegate # <<<<<<<<<<<<<<
+ * if src.l_aux == 0: return None
+ *
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2056
+ *
+ * src = self._delegate
+ * if src.l_aux == 0: return None # <<<<<<<<<<<<<<
+ *
+ * s = bam1_aux( src )
+ */
+ __pyx_t_1 = (__pyx_v_src->l_aux == 0);
+ if (__pyx_t_1) {
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2058
+ * if src.l_aux == 0: return None
+ *
+ * s = bam1_aux( src ) # <<<<<<<<<<<<<<
+ * result = []
+ * auxtag[2] = 0
+ */
+ __pyx_v_s = bam1_aux(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2059
+ *
+ * s = bam1_aux( src )
+ * result = [] # <<<<<<<<<<<<<<
+ * auxtag[2] = 0
+ * while s < (src.data + src.data_len):
+ */
+ __pyx_t_2 = PyList_New(0); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2059; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_DECREF(((PyObject *)__pyx_v_result));
+ __pyx_v_result = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2060
+ * s = bam1_aux( src )
+ * result = []
+ * auxtag[2] = 0 # <<<<<<<<<<<<<<
+ * while s < (src.data + src.data_len):
+ * # get tag
+ */
+ (__pyx_v_auxtag[2]) = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2061
+ * result = []
+ * auxtag[2] = 0
+ * while s < (src.data + src.data_len): # <<<<<<<<<<<<<<
+ * # get tag
+ * auxtag[0] = s[0]
+ */
+ while (1) {
+ __pyx_t_1 = (__pyx_v_s < (__pyx_v_src->data + __pyx_v_src->data_len));
+ if (!__pyx_t_1) break;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2063
+ * while s < (src.data + src.data_len):
+ * # get tag
+ * auxtag[0] = s[0] # <<<<<<<<<<<<<<
+ * auxtag[1] = s[1]
+ * s += 2
+ */
+ (__pyx_v_auxtag[0]) = (__pyx_v_s[0]);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2064
+ * # get tag
+ * auxtag[0] = s[0]
+ * auxtag[1] = s[1] # <<<<<<<<<<<<<<
+ * s += 2
+ * auxtype = s[0]
+ */
+ (__pyx_v_auxtag[1]) = (__pyx_v_s[1]);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2065
+ * auxtag[0] = s[0]
+ * auxtag[1] = s[1]
+ * s += 2 # <<<<<<<<<<<<<<
+ * auxtype = s[0]
+ *
+ */
+ __pyx_v_s = (__pyx_v_s + 2);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2066
+ * auxtag[1] = s[1]
+ * s += 2
+ * auxtype = s[0] # <<<<<<<<<<<<<<
+ *
+ * if auxtype in ('c', 'C'):
+ */
+ __pyx_v_auxtype = (__pyx_v_s[0]);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2068
+ * auxtype = s[0]
+ *
+ * if auxtype in ('c', 'C'): # <<<<<<<<<<<<<<
+ * value = <int>bam_aux2i(s)
+ * s += 1
+ */
+ __pyx_t_3 = __pyx_v_auxtype;
+ __pyx_t_1 = (__pyx_t_3 == 'c');
+ if (!__pyx_t_1) {
+ __pyx_t_4 = (__pyx_t_3 == 'C');
+ __pyx_t_5 = __pyx_t_4;
+ } else {
+ __pyx_t_5 = __pyx_t_1;
+ }
+ __pyx_t_1 = __pyx_t_5;
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2069
+ *
+ * if auxtype in ('c', 'C'):
+ * value = <int>bam_aux2i(s) # <<<<<<<<<<<<<<
+ * s += 1
+ * elif auxtype in ('s', 'S'):
+ */
+ __pyx_t_2 = PyInt_FromLong(((int)bam_aux2i(__pyx_v_s))); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2069; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_value);
+ __pyx_v_value = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2070
+ * if auxtype in ('c', 'C'):
+ * value = <int>bam_aux2i(s)
+ * s += 1 # <<<<<<<<<<<<<<
+ * elif auxtype in ('s', 'S'):
+ * value = <int>bam_aux2i(s)
+ */
+ __pyx_v_s = (__pyx_v_s + 1);
+ goto __pyx_L8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2071
+ * value = <int>bam_aux2i(s)
+ * s += 1
+ * elif auxtype in ('s', 'S'): # <<<<<<<<<<<<<<
+ * value = <int>bam_aux2i(s)
+ * s += 2
+ */
+ __pyx_t_3 = __pyx_v_auxtype;
+ __pyx_t_1 = (__pyx_t_3 == 's');
+ if (!__pyx_t_1) {
+ __pyx_t_5 = (__pyx_t_3 == 'S');
+ __pyx_t_4 = __pyx_t_5;
+ } else {
+ __pyx_t_4 = __pyx_t_1;
+ }
+ __pyx_t_1 = __pyx_t_4;
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2072
+ * s += 1
+ * elif auxtype in ('s', 'S'):
+ * value = <int>bam_aux2i(s) # <<<<<<<<<<<<<<
+ * s += 2
+ * elif auxtype in ('i', 'I'):
+ */
+ __pyx_t_2 = PyInt_FromLong(((int)bam_aux2i(__pyx_v_s))); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2072; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_value);
+ __pyx_v_value = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2073
+ * elif auxtype in ('s', 'S'):
+ * value = <int>bam_aux2i(s)
+ * s += 2 # <<<<<<<<<<<<<<
+ * elif auxtype in ('i', 'I'):
+ * value = <float>bam_aux2i(s)
+ */
+ __pyx_v_s = (__pyx_v_s + 2);
+ goto __pyx_L8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2074
+ * value = <int>bam_aux2i(s)
+ * s += 2
+ * elif auxtype in ('i', 'I'): # <<<<<<<<<<<<<<
+ * value = <float>bam_aux2i(s)
+ * s += 4
+ */
+ __pyx_t_3 = __pyx_v_auxtype;
+ __pyx_t_1 = (__pyx_t_3 == 'i');
+ if (!__pyx_t_1) {
+ __pyx_t_4 = (__pyx_t_3 == 'I');
+ __pyx_t_5 = __pyx_t_4;
+ } else {
+ __pyx_t_5 = __pyx_t_1;
+ }
+ __pyx_t_1 = __pyx_t_5;
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2075
+ * s += 2
+ * elif auxtype in ('i', 'I'):
+ * value = <float>bam_aux2i(s) # <<<<<<<<<<<<<<
+ * s += 4
+ * elif auxtype == 'f':
+ */
+ __pyx_t_2 = PyFloat_FromDouble(((float)bam_aux2i(__pyx_v_s))); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2075; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_value);
+ __pyx_v_value = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2076
+ * elif auxtype in ('i', 'I'):
+ * value = <float>bam_aux2i(s)
+ * s += 4 # <<<<<<<<<<<<<<
+ * elif auxtype == 'f':
+ * value = <float>bam_aux2f(s)
+ */
+ __pyx_v_s = (__pyx_v_s + 4);
+ goto __pyx_L8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2077
+ * value = <float>bam_aux2i(s)
+ * s += 4
+ * elif auxtype == 'f': # <<<<<<<<<<<<<<
+ * value = <float>bam_aux2f(s)
+ * s += 4
+ */
+ __pyx_t_1 = (__pyx_v_auxtype == 'f');
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2078
+ * s += 4
+ * elif auxtype == 'f':
+ * value = <float>bam_aux2f(s) # <<<<<<<<<<<<<<
+ * s += 4
+ * elif auxtype == 'd':
+ */
+ __pyx_t_2 = PyFloat_FromDouble(bam_aux2f(__pyx_v_s)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2078; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_value);
+ __pyx_v_value = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2079
+ * elif auxtype == 'f':
+ * value = <float>bam_aux2f(s)
+ * s += 4 # <<<<<<<<<<<<<<
+ * elif auxtype == 'd':
+ * value = <double>bam_aux2d(s)
+ */
+ __pyx_v_s = (__pyx_v_s + 4);
+ goto __pyx_L8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2080
+ * value = <float>bam_aux2f(s)
+ * s += 4
+ * elif auxtype == 'd': # <<<<<<<<<<<<<<
+ * value = <double>bam_aux2d(s)
+ * s += 8
+ */
+ __pyx_t_1 = (__pyx_v_auxtype == 'd');
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2081
+ * s += 4
+ * elif auxtype == 'd':
+ * value = <double>bam_aux2d(s) # <<<<<<<<<<<<<<
+ * s += 8
+ * elif auxtype == 'A':
+ */
+ __pyx_t_2 = PyFloat_FromDouble(bam_aux2d(__pyx_v_s)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2081; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_value);
+ __pyx_v_value = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2082
+ * elif auxtype == 'd':
+ * value = <double>bam_aux2d(s)
+ * s += 8 # <<<<<<<<<<<<<<
+ * elif auxtype == 'A':
+ * value = "%c" % <char>bam_aux2A(s)
+ */
+ __pyx_v_s = (__pyx_v_s + 8);
+ goto __pyx_L8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2083
+ * value = <double>bam_aux2d(s)
+ * s += 8
+ * elif auxtype == 'A': # <<<<<<<<<<<<<<
+ * value = "%c" % <char>bam_aux2A(s)
+ * s += 1
+ */
+ __pyx_t_1 = (__pyx_v_auxtype == 'A');
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2084
+ * s += 8
+ * elif auxtype == 'A':
+ * value = "%c" % <char>bam_aux2A(s) # <<<<<<<<<<<<<<
+ * s += 1
+ * elif auxtype in ('Z', 'H'):
+ */
+ __pyx_t_2 = PyInt_FromLong(bam_aux2A(__pyx_v_s)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2084; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_6 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_110), __pyx_t_2); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2084; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_v_value);
+ __pyx_v_value = ((PyObject *)__pyx_t_6);
+ __pyx_t_6 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2085
+ * elif auxtype == 'A':
+ * value = "%c" % <char>bam_aux2A(s)
+ * s += 1 # <<<<<<<<<<<<<<
+ * elif auxtype in ('Z', 'H'):
+ * value = <char*>bam_aux2Z(s)
+ */
+ __pyx_v_s = (__pyx_v_s + 1);
+ goto __pyx_L8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2086
+ * value = "%c" % <char>bam_aux2A(s)
+ * s += 1
+ * elif auxtype in ('Z', 'H'): # <<<<<<<<<<<<<<
+ * value = <char*>bam_aux2Z(s)
+ * # +1 for NULL terminated string
+ */
+ __pyx_t_3 = __pyx_v_auxtype;
+ __pyx_t_1 = (__pyx_t_3 == 'Z');
+ if (!__pyx_t_1) {
+ __pyx_t_5 = (__pyx_t_3 == 'H');
+ __pyx_t_4 = __pyx_t_5;
+ } else {
+ __pyx_t_4 = __pyx_t_1;
+ }
+ __pyx_t_1 = __pyx_t_4;
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2087
+ * s += 1
+ * elif auxtype in ('Z', 'H'):
+ * value = <char*>bam_aux2Z(s) # <<<<<<<<<<<<<<
+ * # +1 for NULL terminated string
+ * s += len(value) + 1
+ */
+ __pyx_t_6 = PyBytes_FromString(bam_aux2Z(__pyx_v_s)); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2087; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __Pyx_DECREF(__pyx_v_value);
+ __pyx_v_value = ((PyObject *)__pyx_t_6);
+ __pyx_t_6 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2089
+ * value = <char*>bam_aux2Z(s)
+ * # +1 for NULL terminated string
+ * s += len(value) + 1 # <<<<<<<<<<<<<<
+ * #
+ * s += 1
+ */
+ __pyx_t_7 = PyObject_Length(__pyx_v_value); if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2089; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_s = (__pyx_v_s + (__pyx_t_7 + 1));
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2091
+ * s += len(value) + 1
+ * #
+ * s += 1 # <<<<<<<<<<<<<<
+ *
+ * result.append( (auxtag, value) )
+ */
+ __pyx_v_s = (__pyx_v_s + 1);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2093
+ * s += 1
+ *
+ * result.append( (auxtag, value) ) # <<<<<<<<<<<<<<
+ *
+ * return result
+ */
+ if (unlikely(__pyx_v_result == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2093; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_6 = PyBytes_FromString(__pyx_v_auxtag); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2093; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2093; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_t_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_6));
+ __Pyx_INCREF(__pyx_v_value);
+ PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_v_value);
+ __Pyx_GIVEREF(__pyx_v_value);
+ __pyx_t_6 = 0;
+ __pyx_t_8 = PyList_Append(__pyx_v_result, ((PyObject *)__pyx_t_2)); if (unlikely(__pyx_t_8 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2093; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2095
+ * result.append( (auxtag, value) )
+ *
+ * return result # <<<<<<<<<<<<<<
+ *
+ * def __set__(self, tags):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_v_result));
+ __pyx_r = ((PyObject *)__pyx_v_result);
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_AddTraceback("csamtools.AlignedRead.tags.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_result);
+ __Pyx_DECREF(__pyx_v_value);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2097
+ * return result
+ *
+ * def __set__(self, tags): # <<<<<<<<<<<<<<
+ * cdef char * ctag
+ * cdef bam1_t * src
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_4tags_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_tags); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_4tags_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_tags) {
+ bam1_t *__pyx_v_src;
+ uint8_t *__pyx_v_s;
+ char *__pyx_v_temp;
+ int __pyx_v_max_size;
+ int __pyx_v_size;
+ int __pyx_v_offset;
+ PyObject *__pyx_v_buffer;
+ PyObject *__pyx_v_pytag;
+ PyObject *__pyx_v_value;
+ PyObject *__pyx_v_t;
+ PyObject *__pyx_v_fmt;
+ PyObject *__pyx_v_pytype;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ PyObject *__pyx_t_3 = NULL;
+ PyObject *__pyx_t_4 = NULL;
+ Py_ssize_t __pyx_t_5;
+ PyObject *__pyx_t_6 = NULL;
+ PyObject *__pyx_t_7 = NULL;
+ Py_ssize_t __pyx_t_8;
+ int __pyx_t_9;
+ PyObject *__pyx_t_10 = NULL;
+ char *__pyx_t_11;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2097);
+ __pyx_v_buffer = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_pytag = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_value = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_t = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+ __pyx_v_fmt = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_pytype = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2106
+ * cdef int max_size, size, offset
+ *
+ * src = self._delegate # <<<<<<<<<<<<<<
+ * max_size = 4000
+ * offset = 0
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2107
+ *
+ * src = self._delegate
+ * max_size = 4000 # <<<<<<<<<<<<<<
+ * offset = 0
+ *
+ */
+ __pyx_v_max_size = 4000;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2108
+ * src = self._delegate
+ * max_size = 4000
+ * offset = 0 # <<<<<<<<<<<<<<
+ *
+ * if tags != None:
+ */
+ __pyx_v_offset = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2110
+ * offset = 0
+ *
+ * if tags != None: # <<<<<<<<<<<<<<
+ *
+ * # map samtools code to python.struct code and byte size
+ */
+ __pyx_t_1 = PyObject_RichCompare(__pyx_v_tags, Py_None, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2110; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2110; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2113
+ *
+ * # map samtools code to python.struct code and byte size
+ * buffer = ctypes.create_string_buffer(max_size) # <<<<<<<<<<<<<<
+ *
+ * for pytag, value in tags:
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__ctypes); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2113; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s_111); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2113; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyInt_FromLong(__pyx_v_max_size); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2113; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2113; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2113; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_buffer);
+ __pyx_v_buffer = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2115
+ * buffer = ctypes.create_string_buffer(max_size)
+ *
+ * for pytag, value in tags: # <<<<<<<<<<<<<<
+ * t = type(value)
+ * if t == types.FloatType:
+ */
+ if (PyList_CheckExact(__pyx_v_tags) || PyTuple_CheckExact(__pyx_v_tags)) {
+ __pyx_t_5 = 0; __pyx_t_1 = __pyx_v_tags; __Pyx_INCREF(__pyx_t_1);
+ } else {
+ __pyx_t_5 = -1; __pyx_t_1 = PyObject_GetIter(__pyx_v_tags); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2115; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ }
+ for (;;) {
+ if (likely(PyList_CheckExact(__pyx_t_1))) {
+ if (__pyx_t_5 >= PyList_GET_SIZE(__pyx_t_1)) break;
+ __pyx_t_4 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_5); __Pyx_INCREF(__pyx_t_4); __pyx_t_5++;
+ } else if (likely(PyTuple_CheckExact(__pyx_t_1))) {
+ if (__pyx_t_5 >= PyTuple_GET_SIZE(__pyx_t_1)) break;
+ __pyx_t_4 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_5); __Pyx_INCREF(__pyx_t_4); __pyx_t_5++;
+ } else {
+ __pyx_t_4 = PyIter_Next(__pyx_t_1);
+ if (!__pyx_t_4) {
+ if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2115; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ break;
+ }
+ __Pyx_GOTREF(__pyx_t_4);
+ }
+ if (PyTuple_CheckExact(__pyx_t_4) && likely(PyTuple_GET_SIZE(__pyx_t_4) == 2)) {
+ PyObject* tuple = __pyx_t_4;
+ __pyx_t_3 = PyTuple_GET_ITEM(tuple, 0); __Pyx_INCREF(__pyx_t_3);
+ __pyx_t_6 = PyTuple_GET_ITEM(tuple, 1); __Pyx_INCREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_pytag);
+ __pyx_v_pytag = __pyx_t_3;
+ __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_v_value);
+ __pyx_v_value = __pyx_t_6;
+ __pyx_t_6 = 0;
+ } else {
+ __pyx_t_7 = PyObject_GetIter(__pyx_t_4); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2115; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __pyx_t_3 = __Pyx_UnpackItem(__pyx_t_7, 0); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2115; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_6 = __Pyx_UnpackItem(__pyx_t_7, 1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2115; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ if (__Pyx_EndUnpack(__pyx_t_7, 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2115; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+ __Pyx_DECREF(__pyx_v_pytag);
+ __pyx_v_pytag = __pyx_t_3;
+ __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_v_value);
+ __pyx_v_value = __pyx_t_6;
+ __pyx_t_6 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2116
+ *
+ * for pytag, value in tags:
+ * t = type(value) # <<<<<<<<<<<<<<
+ * if t == types.FloatType:
+ * fmt, pytype = "<cccf", 'f'
+ */
+ __Pyx_INCREF(((PyObject *)Py_TYPE(__pyx_v_value)));
+ __Pyx_DECREF(((PyObject *)__pyx_v_t));
+ __pyx_v_t = ((PyObject*)((PyObject *)Py_TYPE(__pyx_v_value)));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2117
+ * for pytag, value in tags:
+ * t = type(value)
+ * if t == types.FloatType: # <<<<<<<<<<<<<<
+ * fmt, pytype = "<cccf", 'f'
+ * elif t == types.IntType:
+ */
+ __pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__types); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2117; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_6 = PyObject_GetAttr(__pyx_t_4, __pyx_n_s__FloatType); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2117; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __pyx_t_4 = PyObject_RichCompare(((PyObject *)__pyx_v_t), __pyx_t_6, Py_EQ); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2117; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2117; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2118
+ * t = type(value)
+ * if t == types.FloatType:
+ * fmt, pytype = "<cccf", 'f' # <<<<<<<<<<<<<<
+ * elif t == types.IntType:
+ * if value < 0:
+ */
+ __pyx_t_4 = ((PyObject *)__pyx_kp_s_112);
+ __Pyx_INCREF(__pyx_t_4);
+ __pyx_t_6 = ((PyObject *)__pyx_n_s__f);
+ __Pyx_INCREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_v_fmt);
+ __pyx_v_fmt = __pyx_t_4;
+ __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_pytype);
+ __pyx_v_pytype = __pyx_t_6;
+ __pyx_t_6 = 0;
+ goto __pyx_L8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2119
+ * if t == types.FloatType:
+ * fmt, pytype = "<cccf", 'f'
+ * elif t == types.IntType: # <<<<<<<<<<<<<<
+ * if value < 0:
+ * if value >= -127: fmt, pytype = "<cccb", 'c'
+ */
+ __pyx_t_6 = __Pyx_GetName(__pyx_m, __pyx_n_s__types); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2119; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_4 = PyObject_GetAttr(__pyx_t_6, __pyx_n_s__IntType); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2119; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_6 = PyObject_RichCompare(((PyObject *)__pyx_v_t), __pyx_t_4, Py_EQ); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2119; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2119; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2120
+ * fmt, pytype = "<cccf", 'f'
+ * elif t == types.IntType:
+ * if value < 0: # <<<<<<<<<<<<<<
+ * if value >= -127: fmt, pytype = "<cccb", 'c'
+ * elif value >= -32767: fmt, pytype = "<ccch", 's'
+ */
+ __pyx_t_6 = PyObject_RichCompare(__pyx_v_value, __pyx_int_0, Py_LT); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2121
+ * elif t == types.IntType:
+ * if value < 0:
+ * if value >= -127: fmt, pytype = "<cccb", 'c' # <<<<<<<<<<<<<<
+ * elif value >= -32767: fmt, pytype = "<ccch", 's'
+ * elif value < -2147483648: raise ValueError( "integer %i out of range of BAM/SAM specification" % value )
+ */
+ __pyx_t_6 = PyObject_RichCompare(__pyx_v_value, __pyx_int_neg_127, Py_GE); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2121; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2121; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ if (__pyx_t_2) {
+ __pyx_t_6 = ((PyObject *)__pyx_kp_s_113);
+ __Pyx_INCREF(__pyx_t_6);
+ __pyx_t_4 = ((PyObject *)__pyx_n_s__c);
+ __Pyx_INCREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_v_fmt);
+ __pyx_v_fmt = __pyx_t_6;
+ __pyx_t_6 = 0;
+ __Pyx_DECREF(__pyx_v_pytype);
+ __pyx_v_pytype = __pyx_t_4;
+ __pyx_t_4 = 0;
+ goto __pyx_L10;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2122
+ * if value < 0:
+ * if value >= -127: fmt, pytype = "<cccb", 'c'
+ * elif value >= -32767: fmt, pytype = "<ccch", 's' # <<<<<<<<<<<<<<
+ * elif value < -2147483648: raise ValueError( "integer %i out of range of BAM/SAM specification" % value )
+ * else: fmt, pytype = "<ccci", 'i'[0]
+ */
+ __pyx_t_4 = PyObject_RichCompare(__pyx_v_value, __pyx_int_neg_32767, Py_GE); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2122; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2122; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ if (__pyx_t_2) {
+ __pyx_t_4 = ((PyObject *)__pyx_kp_s_114);
+ __Pyx_INCREF(__pyx_t_4);
+ __pyx_t_6 = ((PyObject *)__pyx_n_s__s);
+ __Pyx_INCREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_v_fmt);
+ __pyx_v_fmt = __pyx_t_4;
+ __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_pytype);
+ __pyx_v_pytype = __pyx_t_6;
+ __pyx_t_6 = 0;
+ goto __pyx_L10;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2123
+ * if value >= -127: fmt, pytype = "<cccb", 'c'
+ * elif value >= -32767: fmt, pytype = "<ccch", 's'
+ * elif value < -2147483648: raise ValueError( "integer %i out of range of BAM/SAM specification" % value ) # <<<<<<<<<<<<<<
+ * else: fmt, pytype = "<ccci", 'i'[0]
+ * else:
+ */
+ __pyx_t_6 = PyObject_RichCompare(__pyx_v_value, __pyx_int_neg_2147483648, Py_LT); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2123; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2123; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ if (__pyx_t_2) {
+ __pyx_t_6 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_115), __pyx_v_value); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2123; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2123; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_t_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_6));
+ __pyx_t_6 = 0;
+ __pyx_t_6 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2123; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __Pyx_Raise(__pyx_t_6, 0, 0);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2123; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L10;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2124
+ * elif value >= -32767: fmt, pytype = "<ccch", 's'
+ * elif value < -2147483648: raise ValueError( "integer %i out of range of BAM/SAM specification" % value )
+ * else: fmt, pytype = "<ccci", 'i'[0] # <<<<<<<<<<<<<<
+ * else:
+ * if value <= 255: fmt, pytype = "<cccB", 'C'
+ */
+ __pyx_t_6 = ((PyObject *)__pyx_kp_s_116);
+ __Pyx_INCREF(__pyx_t_6);
+ __pyx_t_4 = __Pyx_GetItemInt(((PyObject *)__pyx_n_s__i), 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_4) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2124; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_v_fmt);
+ __pyx_v_fmt = __pyx_t_6;
+ __pyx_t_6 = 0;
+ __Pyx_DECREF(__pyx_v_pytype);
+ __pyx_v_pytype = __pyx_t_4;
+ __pyx_t_4 = 0;
+ }
+ __pyx_L10:;
+ goto __pyx_L9;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2126
+ * else: fmt, pytype = "<ccci", 'i'[0]
+ * else:
+ * if value <= 255: fmt, pytype = "<cccB", 'C' # <<<<<<<<<<<<<<
+ * elif value <= 65535: fmt, pytype = "<cccH", 'S'
+ * elif value > 4294967295: raise ValueError( "integer %i out of range of BAM/SAM specification" % value )
+ */
+ __pyx_t_4 = PyObject_RichCompare(__pyx_v_value, __pyx_int_255, Py_LE); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2126; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2126; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ if (__pyx_t_2) {
+ __pyx_t_4 = ((PyObject *)__pyx_kp_s_117);
+ __Pyx_INCREF(__pyx_t_4);
+ __pyx_t_6 = ((PyObject *)__pyx_n_s__C);
+ __Pyx_INCREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_v_fmt);
+ __pyx_v_fmt = __pyx_t_4;
+ __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_pytype);
+ __pyx_v_pytype = __pyx_t_6;
+ __pyx_t_6 = 0;
+ goto __pyx_L11;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2127
+ * else:
+ * if value <= 255: fmt, pytype = "<cccB", 'C'
+ * elif value <= 65535: fmt, pytype = "<cccH", 'S' # <<<<<<<<<<<<<<
+ * elif value > 4294967295: raise ValueError( "integer %i out of range of BAM/SAM specification" % value )
+ * else: fmt, pytype = "<cccI", 'I'
+ */
+ __pyx_t_6 = PyObject_RichCompare(__pyx_v_value, __pyx_int_65535, Py_LE); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2127; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_6); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2127; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ if (__pyx_t_2) {
+ __pyx_t_6 = ((PyObject *)__pyx_kp_s_118);
+ __Pyx_INCREF(__pyx_t_6);
+ __pyx_t_4 = ((PyObject *)__pyx_n_s__S);
+ __Pyx_INCREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_v_fmt);
+ __pyx_v_fmt = __pyx_t_6;
+ __pyx_t_6 = 0;
+ __Pyx_DECREF(__pyx_v_pytype);
+ __pyx_v_pytype = __pyx_t_4;
+ __pyx_t_4 = 0;
+ goto __pyx_L11;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2128
+ * if value <= 255: fmt, pytype = "<cccB", 'C'
+ * elif value <= 65535: fmt, pytype = "<cccH", 'S'
+ * elif value > 4294967295: raise ValueError( "integer %i out of range of BAM/SAM specification" % value ) # <<<<<<<<<<<<<<
+ * else: fmt, pytype = "<cccI", 'I'
+ * else:
+ */
+ __pyx_t_4 = PyObject_RichCompare(__pyx_v_value, __pyx_int_4294967295, Py_GT); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2128; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2128; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ if (__pyx_t_2) {
+ __pyx_t_4 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_115), __pyx_v_value); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2128; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __pyx_t_6 = PyTuple_New(1); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2128; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ PyTuple_SET_ITEM(__pyx_t_6, 0, ((PyObject *)__pyx_t_4));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_4));
+ __pyx_t_4 = 0;
+ __pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_6), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2128; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
+ __Pyx_Raise(__pyx_t_4, 0, 0);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2128; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L11;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2129
+ * elif value <= 65535: fmt, pytype = "<cccH", 'S'
+ * elif value > 4294967295: raise ValueError( "integer %i out of range of BAM/SAM specification" % value )
+ * else: fmt, pytype = "<cccI", 'I' # <<<<<<<<<<<<<<
+ * else:
+ * # Note: hex strings (H) are not supported yet
+ */
+ __pyx_t_4 = ((PyObject *)__pyx_kp_s_119);
+ __Pyx_INCREF(__pyx_t_4);
+ __pyx_t_6 = ((PyObject *)__pyx_n_s__I);
+ __Pyx_INCREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_v_fmt);
+ __pyx_v_fmt = __pyx_t_4;
+ __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_pytype);
+ __pyx_v_pytype = __pyx_t_6;
+ __pyx_t_6 = 0;
+ }
+ __pyx_L11:;
+ }
+ __pyx_L9:;
+ goto __pyx_L8;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2132
+ * else:
+ * # Note: hex strings (H) are not supported yet
+ * if len(value) == 1: # <<<<<<<<<<<<<<
+ * fmt, pytype = "<cccc", 'A'
+ * else:
+ */
+ __pyx_t_8 = PyObject_Length(__pyx_v_value); if (unlikely(__pyx_t_8 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2132; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_2 = (__pyx_t_8 == 1);
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2133
+ * # Note: hex strings (H) are not supported yet
+ * if len(value) == 1:
+ * fmt, pytype = "<cccc", 'A' # <<<<<<<<<<<<<<
+ * else:
+ * fmt, pytype = "<ccc%is" % (len(value)+1), 'Z'
+ */
+ __pyx_t_6 = ((PyObject *)__pyx_kp_s_120);
+ __Pyx_INCREF(__pyx_t_6);
+ __pyx_t_4 = ((PyObject *)__pyx_n_s__A);
+ __Pyx_INCREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_v_fmt);
+ __pyx_v_fmt = __pyx_t_6;
+ __pyx_t_6 = 0;
+ __Pyx_DECREF(__pyx_v_pytype);
+ __pyx_v_pytype = __pyx_t_4;
+ __pyx_t_4 = 0;
+ goto __pyx_L12;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2135
+ * fmt, pytype = "<cccc", 'A'
+ * else:
+ * fmt, pytype = "<ccc%is" % (len(value)+1), 'Z' # <<<<<<<<<<<<<<
+ *
+ * size = struct.calcsize(fmt)
+ */
+ __pyx_t_8 = PyObject_Length(__pyx_v_value); if (unlikely(__pyx_t_8 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2135; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_4 = PyInt_FromSsize_t((__pyx_t_8 + 1)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2135; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_6 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_121), __pyx_t_4); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2135; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __pyx_t_4 = ((PyObject *)__pyx_n_s__Z);
+ __Pyx_INCREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_v_fmt);
+ __pyx_v_fmt = ((PyObject *)__pyx_t_6);
+ __pyx_t_6 = 0;
+ __Pyx_DECREF(__pyx_v_pytype);
+ __pyx_v_pytype = __pyx_t_4;
+ __pyx_t_4 = 0;
+ }
+ __pyx_L12:;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2137
+ * fmt, pytype = "<ccc%is" % (len(value)+1), 'Z'
+ *
+ * size = struct.calcsize(fmt) # <<<<<<<<<<<<<<
+ * if offset + size > max_size:
+ * raise NotImplementedError("tags field too large")
+ */
+ __pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__struct); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2137; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_6 = PyObject_GetAttr(__pyx_t_4, __pyx_n_s__calcsize); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2137; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __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 = 2137; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_INCREF(__pyx_v_fmt);
+ PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_v_fmt);
+ __Pyx_GIVEREF(__pyx_v_fmt);
+ __pyx_t_3 = PyObject_Call(__pyx_t_6, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2137; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __pyx_t_9 = __Pyx_PyInt_AsInt(__pyx_t_3); if (unlikely((__pyx_t_9 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2137; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_v_size = __pyx_t_9;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2138
+ *
+ * size = struct.calcsize(fmt)
+ * if offset + size > max_size: # <<<<<<<<<<<<<<
+ * raise NotImplementedError("tags field too large")
+ *
+ */
+ __pyx_t_2 = ((__pyx_v_offset + __pyx_v_size) > __pyx_v_max_size);
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2139
+ * size = struct.calcsize(fmt)
+ * if offset + size > max_size:
+ * raise NotImplementedError("tags field too large") # <<<<<<<<<<<<<<
+ *
+ * struct.pack_into( fmt,
+ */
+ __pyx_t_3 = PyObject_Call(__pyx_builtin_NotImplementedError, ((PyObject *)__pyx_k_tuple_123), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2139; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_Raise(__pyx_t_3, 0, 0);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2139; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L13;
+ }
+ __pyx_L13:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2141
+ * raise NotImplementedError("tags field too large")
+ *
+ * struct.pack_into( fmt, # <<<<<<<<<<<<<<
+ * buffer,
+ * offset,
+ */
+ __pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__struct); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2141; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__pack_into); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2141; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2143
+ * struct.pack_into( fmt,
+ * buffer,
+ * offset, # <<<<<<<<<<<<<<
+ * pytag[0],
+ * pytag[1],
+ */
+ __pyx_t_3 = PyInt_FromLong(__pyx_v_offset); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2143; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2144
+ * buffer,
+ * offset,
+ * pytag[0], # <<<<<<<<<<<<<<
+ * pytag[1],
+ * pytype,
+ */
+ __pyx_t_6 = __Pyx_GetItemInt(__pyx_v_pytag, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_6) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2144; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2145
+ * offset,
+ * pytag[0],
+ * pytag[1], # <<<<<<<<<<<<<<
+ * pytype,
+ * value )
+ */
+ __pyx_t_7 = __Pyx_GetItemInt(__pyx_v_pytag, 1, sizeof(long), PyInt_FromLong); if (!__pyx_t_7) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2145; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2147
+ * pytag[1],
+ * pytype,
+ * value ) # <<<<<<<<<<<<<<
+ * offset += size
+ *
+ */
+ __pyx_t_10 = PyTuple_New(7); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2141; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_10));
+ __Pyx_INCREF(__pyx_v_fmt);
+ PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_v_fmt);
+ __Pyx_GIVEREF(__pyx_v_fmt);
+ __Pyx_INCREF(__pyx_v_buffer);
+ PyTuple_SET_ITEM(__pyx_t_10, 1, __pyx_v_buffer);
+ __Pyx_GIVEREF(__pyx_v_buffer);
+ PyTuple_SET_ITEM(__pyx_t_10, 2, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ PyTuple_SET_ITEM(__pyx_t_10, 3, __pyx_t_6);
+ __Pyx_GIVEREF(__pyx_t_6);
+ PyTuple_SET_ITEM(__pyx_t_10, 4, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ __Pyx_INCREF(__pyx_v_pytype);
+ PyTuple_SET_ITEM(__pyx_t_10, 5, __pyx_v_pytype);
+ __Pyx_GIVEREF(__pyx_v_pytype);
+ __Pyx_INCREF(__pyx_v_value);
+ PyTuple_SET_ITEM(__pyx_t_10, 6, __pyx_v_value);
+ __Pyx_GIVEREF(__pyx_v_value);
+ __pyx_t_3 = 0;
+ __pyx_t_6 = 0;
+ __pyx_t_7 = 0;
+ __pyx_t_7 = PyObject_Call(__pyx_t_4, ((PyObject *)__pyx_t_10), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2141; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_10)); __pyx_t_10 = 0;
+ __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2148
+ * pytype,
+ * value )
+ * offset += size # <<<<<<<<<<<<<<
+ *
+ * # delete the old data and allocate new
+ */
+ __pyx_v_offset = (__pyx_v_offset + __pyx_v_size);
+ }
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2156
+ * src.l_aux,
+ * offset,
+ * bam1_aux( src ) ) # <<<<<<<<<<<<<<
+ *
+ * src.l_aux = offset
+ */
+ pysam_bam_update(__pyx_v_src, __pyx_v_src->l_aux, __pyx_v_offset, bam1_aux(__pyx_v_src));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2158
+ * bam1_aux( src ) )
+ *
+ * src.l_aux = offset # <<<<<<<<<<<<<<
+ *
+ * # copy data only if there is any
+ */
+ __pyx_v_src->l_aux = __pyx_v_offset;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2161
+ *
+ * # copy data only if there is any
+ * if offset != 0: # <<<<<<<<<<<<<<
+ *
+ * # get location of new data
+ */
+ __pyx_t_2 = (__pyx_v_offset != 0);
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2164
+ *
+ * # get location of new data
+ * s = bam1_aux( src ) # <<<<<<<<<<<<<<
+ *
+ * # check if there is direct path from buffer.raw to tmp
+ */
+ __pyx_v_s = bam1_aux(__pyx_v_src);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2167
+ *
+ * # check if there is direct path from buffer.raw to tmp
+ * temp = buffer.raw # <<<<<<<<<<<<<<
+ * memcpy( s, temp, offset )
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_buffer, __pyx_n_s__raw); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2167; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_11 = PyBytes_AsString(__pyx_t_1); if (unlikely((!__pyx_t_11) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2167; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_v_temp = __pyx_t_11;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2168
+ * # check if there is direct path from buffer.raw to tmp
+ * temp = buffer.raw
+ * memcpy( s, temp, offset ) # <<<<<<<<<<<<<<
+ *
+ * property flag:
+ */
+ memcpy(__pyx_v_s, __pyx_v_temp, __pyx_v_offset);
+ goto __pyx_L14;
+ }
+ __pyx_L14:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_XDECREF(__pyx_t_10);
+ __Pyx_AddTraceback("csamtools.AlignedRead.tags.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_buffer);
+ __Pyx_DECREF(__pyx_v_pytag);
+ __Pyx_DECREF(__pyx_v_value);
+ __Pyx_DECREF(__pyx_v_t);
+ __Pyx_DECREF(__pyx_v_fmt);
+ __Pyx_DECREF(__pyx_v_pytype);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2172
+ * property flag:
+ * """properties flag"""
+ * def __get__(self): return self._delegate.core.flag # <<<<<<<<<<<<<<
+ * def __set__(self, flag): self._delegate.core.flag = flag
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4flag_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4flag_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2172);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2172; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.flag.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2173
+ * """properties flag"""
+ * def __get__(self): return self._delegate.core.flag
+ * def __set__(self, flag): self._delegate.core.flag = flag # <<<<<<<<<<<<<<
+ *
+ * property rname:
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_4flag_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_flag); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_4flag_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_flag) {
+ int __pyx_r;
+ uint32_t __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2173);
+ __pyx_t_1 = __Pyx_PyInt_from_py_uint32_t(__pyx_v_flag); if (unlikely((__pyx_t_1 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2173; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = __pyx_t_1;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.flag.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2191
+ *
+ * """
+ * def __get__(self): return self._delegate.core.tid # <<<<<<<<<<<<<<
+ * def __set__(self, tid): self._delegate.core.tid = tid
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5rname_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5rname_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2191);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.tid); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2191; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.rname.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2192
+ * """
+ * def __get__(self): return self._delegate.core.tid
+ * def __set__(self, tid): self._delegate.core.tid = tid # <<<<<<<<<<<<<<
+ *
+ * property tid:
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_5rname_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_tid); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_5rname_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_tid) {
+ int __pyx_r;
+ int32_t __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2192);
+ __pyx_t_1 = __Pyx_PyInt_from_py_int32_t(__pyx_v_tid); if (unlikely((__pyx_t_1 == (int32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2192; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.tid = __pyx_t_1;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.rname.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2205
+ *
+ * """
+ * def __get__(self): return self._delegate.core.tid # <<<<<<<<<<<<<<
+ * def __set__(self, tid): self._delegate.core.tid = tid
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_3tid_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_3tid_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2205);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.tid); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2205; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.tid.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2206
+ * """
+ * def __get__(self): return self._delegate.core.tid
+ * def __set__(self, tid): self._delegate.core.tid = tid # <<<<<<<<<<<<<<
+ *
+ * property pos:
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_3tid_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_tid); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_3tid_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_tid) {
+ int __pyx_r;
+ int32_t __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2206);
+ __pyx_t_1 = __Pyx_PyInt_from_py_int32_t(__pyx_v_tid); if (unlikely((__pyx_t_1 == (int32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2206; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.tid = __pyx_t_1;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.tid.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2210
+ * property pos:
+ * """0-based leftmost coordinate"""
+ * def __get__(self): return self._delegate.core.pos # <<<<<<<<<<<<<<
+ * def __set__(self, pos):
+ * ## setting the cigar string also updates the "bin" attribute
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_3pos_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_3pos_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2210);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.pos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2210; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.pos.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2211
+ * """0-based leftmost coordinate"""
+ * def __get__(self): return self._delegate.core.pos
+ * def __set__(self, pos): # <<<<<<<<<<<<<<
+ * ## setting the cigar string also updates the "bin" attribute
+ * cdef bam1_t * src
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_3pos_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_pos); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_3pos_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_pos) {
+ bam1_t *__pyx_v_src;
+ int __pyx_r;
+ int32_t __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2211);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2214
+ * ## setting the cigar string also updates the "bin" attribute
+ * cdef bam1_t * src
+ * src = self._delegate # <<<<<<<<<<<<<<
+ * if src.core.n_cigar:
+ * src.core.bin = bam_reg2bin( src.core.pos, bam_calend( &src.core, bam1_cigar(src)) )
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2215
+ * cdef bam1_t * src
+ * src = self._delegate
+ * if src.core.n_cigar: # <<<<<<<<<<<<<<
+ * src.core.bin = bam_reg2bin( src.core.pos, bam_calend( &src.core, bam1_cigar(src)) )
+ * else:
+ */
+ if (__pyx_v_src->core.n_cigar) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2216
+ * src = self._delegate
+ * if src.core.n_cigar:
+ * src.core.bin = bam_reg2bin( src.core.pos, bam_calend( &src.core, bam1_cigar(src)) ) # <<<<<<<<<<<<<<
+ * else:
+ * src.core.bin = bam_reg2bin( src.core.pos, src.core.pos + 1)
+ */
+ __pyx_v_src->core.bin = bam_reg2bin(__pyx_v_src->core.pos, bam_calend((&__pyx_v_src->core), bam1_cigar(__pyx_v_src)));
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2218
+ * src.core.bin = bam_reg2bin( src.core.pos, bam_calend( &src.core, bam1_cigar(src)) )
+ * else:
+ * src.core.bin = bam_reg2bin( src.core.pos, src.core.pos + 1) # <<<<<<<<<<<<<<
+ * self._delegate.core.pos = pos
+ * property bin:
+ */
+ __pyx_v_src->core.bin = bam_reg2bin(__pyx_v_src->core.pos, (__pyx_v_src->core.pos + 1));
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2219
+ * else:
+ * src.core.bin = bam_reg2bin( src.core.pos, src.core.pos + 1)
+ * self._delegate.core.pos = pos # <<<<<<<<<<<<<<
+ * property bin:
+ * """properties bin"""
+ */
+ __pyx_t_1 = __Pyx_PyInt_from_py_int32_t(__pyx_v_pos); if (unlikely((__pyx_t_1 == (int32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2219; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.pos = __pyx_t_1;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.pos.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2222
+ * property bin:
+ * """properties bin"""
+ * def __get__(self): return self._delegate.core.bin # <<<<<<<<<<<<<<
+ * def __set__(self, bin): self._delegate.core.bin = bin
+ * property rlen:
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_3bin_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_3bin_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2222);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.bin); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2222; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.bin.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2223
+ * """properties bin"""
+ * def __get__(self): return self._delegate.core.bin
+ * def __set__(self, bin): self._delegate.core.bin = bin # <<<<<<<<<<<<<<
+ * property rlen:
+ * '''length of the read (read only). Returns 0 if not given.'''
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_3bin_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_bin); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_3bin_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_bin) {
+ int __pyx_r;
+ uint32_t __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2223);
+ __pyx_t_1 = __Pyx_PyInt_from_py_uint32_t(__pyx_v_bin); if (unlikely((__pyx_t_1 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2223; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.bin = __pyx_t_1;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.bin.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2226
+ * property rlen:
+ * '''length of the read (read only). Returns 0 if not given.'''
+ * def __get__(self): return self._delegate.core.l_qseq # <<<<<<<<<<<<<<
+ * property aend:
+ * '''aligned end position of the read (read only). Returns
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4rlen_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4rlen_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2226);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.l_qseq); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2226; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.rlen.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2230
+ * '''aligned end position of the read (read only). Returns
+ * None if not available.'''
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * cdef bam1_t * src
+ * src = self._delegate
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4aend_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4aend_0__get__(PyObject *__pyx_v_self) {
+ bam1_t *__pyx_v_src;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ int __pyx_t_5;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2230);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2232
+ * def __get__(self):
+ * cdef bam1_t * src
+ * src = self._delegate # <<<<<<<<<<<<<<
+ * if (self.flag & BAM_FUNMAP) or src.core.n_cigar == 0:
+ * return None
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2233
+ * cdef bam1_t * src
+ * src = self._delegate
+ * if (self.flag & BAM_FUNMAP) or src.core.n_cigar == 0: # <<<<<<<<<<<<<<
+ * return None
+ * return bam_calend(&src.core, bam1_cigar(src))
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2233; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_4); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2233; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2233; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (!__pyx_t_3) {
+ __pyx_t_4 = (__pyx_v_src->core.n_cigar == 0);
+ __pyx_t_5 = __pyx_t_4;
+ } else {
+ __pyx_t_5 = __pyx_t_3;
+ }
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2234
+ * src = self._delegate
+ * if (self.flag & BAM_FUNMAP) or src.core.n_cigar == 0:
+ * return None # <<<<<<<<<<<<<<
+ * return bam_calend(&src.core, bam1_cigar(src))
+ * property alen:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2235
+ * if (self.flag & BAM_FUNMAP) or src.core.n_cigar == 0:
+ * return None
+ * return bam_calend(&src.core, bam1_cigar(src)) # <<<<<<<<<<<<<<
+ * property alen:
+ * '''aligned length of the read (read only). Returns None if
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = __Pyx_PyInt_to_py_uint32_t(bam_calend((&__pyx_v_src->core), bam1_cigar(__pyx_v_src))); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2235; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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("csamtools.AlignedRead.aend.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2239
+ * '''aligned length of the read (read only). Returns None if
+ * not available.'''
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * cdef bam1_t * src
+ * src = self._delegate
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4alen_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4alen_0__get__(PyObject *__pyx_v_self) {
+ bam1_t *__pyx_v_src;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ int __pyx_t_4;
+ int __pyx_t_5;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2239);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2241
+ * def __get__(self):
+ * cdef bam1_t * src
+ * src = self._delegate # <<<<<<<<<<<<<<
+ * if (self.flag & BAM_FUNMAP) or src.core.n_cigar == 0:
+ * return None
+ */
+ __pyx_v_src = ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2242
+ * cdef bam1_t * src
+ * src = self._delegate
+ * if (self.flag & BAM_FUNMAP) or src.core.n_cigar == 0: # <<<<<<<<<<<<<<
+ * return None
+ * return bam_calend(&src.core,
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2242; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_4); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2242; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2242; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (!__pyx_t_3) {
+ __pyx_t_4 = (__pyx_v_src->core.n_cigar == 0);
+ __pyx_t_5 = __pyx_t_4;
+ } else {
+ __pyx_t_5 = __pyx_t_3;
+ }
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2243
+ * src = self._delegate
+ * if (self.flag & BAM_FUNMAP) or src.core.n_cigar == 0:
+ * return None # <<<<<<<<<<<<<<
+ * return bam_calend(&src.core,
+ * bam1_cigar(src)) - \
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2244
+ * if (self.flag & BAM_FUNMAP) or src.core.n_cigar == 0:
+ * return None
+ * return bam_calend(&src.core, # <<<<<<<<<<<<<<
+ * bam1_cigar(src)) - \
+ * self._delegate.core.pos
+ */
+ __Pyx_XDECREF(__pyx_r);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2246
+ * return bam_calend(&src.core,
+ * bam1_cigar(src)) - \
+ * self._delegate.core.pos # <<<<<<<<<<<<<<
+ *
+ * property mapq:
+ */
+ __pyx_t_2 = __Pyx_PyInt_to_py_int32_t((bam_calend((&__pyx_v_src->core), bam1_cigar(__pyx_v_src)) - ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.pos)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2245; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __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("csamtools.AlignedRead.alen.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2250
+ * property mapq:
+ * """mapping quality"""
+ * def __get__(self): return self._delegate.core.qual # <<<<<<<<<<<<<<
+ * def __set__(self, qual): self._delegate.core.qual = qual
+ * property mrnm:
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4mapq_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4mapq_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2250);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.qual); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2250; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.mapq.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2251
+ * """mapping quality"""
+ * def __get__(self): return self._delegate.core.qual
+ * def __set__(self, qual): self._delegate.core.qual = qual # <<<<<<<<<<<<<<
+ * property mrnm:
+ * """the :term:`reference` id of the mate """
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_4mapq_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_qual); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_4mapq_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_qual) {
+ int __pyx_r;
+ uint32_t __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2251);
+ __pyx_t_1 = __Pyx_PyInt_from_py_uint32_t(__pyx_v_qual); if (unlikely((__pyx_t_1 == (uint32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2251; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.qual = __pyx_t_1;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.mapq.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2254
+ * property mrnm:
+ * """the :term:`reference` id of the mate """
+ * def __get__(self): return self._delegate.core.mtid # <<<<<<<<<<<<<<
+ * def __set__(self, mtid): self._delegate.core.mtid = mtid
+ * property mpos:
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4mrnm_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4mrnm_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2254);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.mtid); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2254; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.mrnm.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2255
+ * """the :term:`reference` id of the mate """
+ * def __get__(self): return self._delegate.core.mtid
+ * def __set__(self, mtid): self._delegate.core.mtid = mtid # <<<<<<<<<<<<<<
+ * property mpos:
+ * """the position of the mate"""
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_4mrnm_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_mtid); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_4mrnm_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_mtid) {
+ int __pyx_r;
+ int32_t __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2255);
+ __pyx_t_1 = __Pyx_PyInt_from_py_int32_t(__pyx_v_mtid); if (unlikely((__pyx_t_1 == (int32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2255; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.mtid = __pyx_t_1;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.mrnm.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2258
+ * property mpos:
+ * """the position of the mate"""
+ * def __get__(self): return self._delegate.core.mpos # <<<<<<<<<<<<<<
+ * def __set__(self, mpos): self._delegate.core.mpos = mpos
+ * property isize:
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4mpos_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_4mpos_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2258);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.mpos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2258; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.mpos.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2259
+ * """the position of the mate"""
+ * def __get__(self): return self._delegate.core.mpos
+ * def __set__(self, mpos): self._delegate.core.mpos = mpos # <<<<<<<<<<<<<<
+ * property isize:
+ * """the insert size"""
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_4mpos_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_mpos); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_4mpos_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_mpos) {
+ int __pyx_r;
+ int32_t __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2259);
+ __pyx_t_1 = __Pyx_PyInt_from_py_int32_t(__pyx_v_mpos); if (unlikely((__pyx_t_1 == (int32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2259; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.mpos = __pyx_t_1;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.mpos.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2262
+ * property isize:
+ * """the insert size"""
+ * def __get__(self): return self._delegate.core.isize # <<<<<<<<<<<<<<
+ * def __set__(self, isize): self._delegate.core.isize = isize
+ * property is_paired:
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5isize_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5isize_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2262);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.isize); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2262; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.isize.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2263
+ * """the insert size"""
+ * def __get__(self): return self._delegate.core.isize
+ * def __set__(self, isize): self._delegate.core.isize = isize # <<<<<<<<<<<<<<
+ * property is_paired:
+ * """true if read is paired in sequencing"""
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_5isize_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_isize); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_5isize_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_isize) {
+ int __pyx_r;
+ int32_t __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2263);
+ __pyx_t_1 = __Pyx_PyInt_from_py_int32_t(__pyx_v_isize); if (unlikely((__pyx_t_1 == (int32_t)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2263; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.isize = __pyx_t_1;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.isize.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2266
+ * property is_paired:
+ * """true if read is paired in sequencing"""
+ * def __get__(self): return (self._delegate.core.flag & BAM_FPAIRED) != 0 # <<<<<<<<<<<<<<
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FPAIRED
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_9is_paired_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_9is_paired_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2266);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyBool_FromLong(((((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & 1) != 0)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2266; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_paired.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2267
+ * """true if read is paired in sequencing"""
+ * def __get__(self): return (self._delegate.core.flag & BAM_FPAIRED) != 0
+ * def __set__(self,val): # <<<<<<<<<<<<<<
+ * if val: self._delegate.core.flag |= BAM_FPAIRED
+ * else: self._delegate.core.flag &= ~BAM_FPAIRED
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_9is_paired_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_9is_paired_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2267);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2268
+ * def __get__(self): return (self._delegate.core.flag & BAM_FPAIRED) != 0
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FPAIRED # <<<<<<<<<<<<<<
+ * else: self._delegate.core.flag &= ~BAM_FPAIRED
+ * property is_proper_pair:
+ */
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2268; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_1) {
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag | 1);
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2269
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FPAIRED
+ * else: self._delegate.core.flag &= ~BAM_FPAIRED # <<<<<<<<<<<<<<
+ * property is_proper_pair:
+ * """true if read is mapped in a proper pair"""
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & (~1));
+ }
+ __pyx_L5:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_paired.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2272
+ * property is_proper_pair:
+ * """true if read is mapped in a proper pair"""
+ * def __get__(self): return (self.flag & BAM_FPROPER_PAIR) != 0 # <<<<<<<<<<<<<<
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FPROPER_PAIR
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_14is_proper_pair_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_14is_proper_pair_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2272);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2272; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2272; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_0, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2272; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_proper_pair.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2273
+ * """true if read is mapped in a proper pair"""
+ * def __get__(self): return (self.flag & BAM_FPROPER_PAIR) != 0
+ * def __set__(self,val): # <<<<<<<<<<<<<<
+ * if val: self._delegate.core.flag |= BAM_FPROPER_PAIR
+ * else: self._delegate.core.flag &= ~BAM_FPROPER_PAIR
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_14is_proper_pair_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_14is_proper_pair_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2273);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2274
+ * def __get__(self): return (self.flag & BAM_FPROPER_PAIR) != 0
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FPROPER_PAIR # <<<<<<<<<<<<<<
+ * else: self._delegate.core.flag &= ~BAM_FPROPER_PAIR
+ * property is_unmapped:
+ */
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2274; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_1) {
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag | 2);
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2275
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FPROPER_PAIR
+ * else: self._delegate.core.flag &= ~BAM_FPROPER_PAIR # <<<<<<<<<<<<<<
+ * property is_unmapped:
+ * """true if read itself is unmapped"""
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & (~2));
+ }
+ __pyx_L5:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_proper_pair.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2278
+ * property is_unmapped:
+ * """true if read itself is unmapped"""
+ * def __get__(self): return (self.flag & BAM_FUNMAP) != 0 # <<<<<<<<<<<<<<
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FUNMAP
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_11is_unmapped_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_11is_unmapped_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2278);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2278; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_4); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2278; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_0, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2278; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_unmapped.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2279
+ * """true if read itself is unmapped"""
+ * def __get__(self): return (self.flag & BAM_FUNMAP) != 0
+ * def __set__(self,val): # <<<<<<<<<<<<<<
+ * if val: self._delegate.core.flag |= BAM_FUNMAP
+ * else: self._delegate.core.flag &= ~BAM_FUNMAP
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_11is_unmapped_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_11is_unmapped_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2279);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2280
+ * def __get__(self): return (self.flag & BAM_FUNMAP) != 0
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FUNMAP # <<<<<<<<<<<<<<
+ * else: self._delegate.core.flag &= ~BAM_FUNMAP
+ * property mate_is_unmapped:
+ */
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2280; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_1) {
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag | 4);
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2281
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FUNMAP
+ * else: self._delegate.core.flag &= ~BAM_FUNMAP # <<<<<<<<<<<<<<
+ * property mate_is_unmapped:
+ * """true if the mate is unmapped"""
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & (~4));
+ }
+ __pyx_L5:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_unmapped.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2284
+ * property mate_is_unmapped:
+ * """true if the mate is unmapped"""
+ * def __get__(self): return (self.flag & BAM_FMUNMAP) != 0 # <<<<<<<<<<<<<<
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FMUNMAP
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_16mate_is_unmapped_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_16mate_is_unmapped_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2284);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2284; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_8); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2284; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_0, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2284; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.mate_is_unmapped.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2285
+ * """true if the mate is unmapped"""
+ * def __get__(self): return (self.flag & BAM_FMUNMAP) != 0
+ * def __set__(self,val): # <<<<<<<<<<<<<<
+ * if val: self._delegate.core.flag |= BAM_FMUNMAP
+ * else: self._delegate.core.flag &= ~BAM_FMUNMAP
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_16mate_is_unmapped_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_16mate_is_unmapped_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2285);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2286
+ * def __get__(self): return (self.flag & BAM_FMUNMAP) != 0
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FMUNMAP # <<<<<<<<<<<<<<
+ * else: self._delegate.core.flag &= ~BAM_FMUNMAP
+ * property is_reverse:
+ */
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2286; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_1) {
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag | 8);
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2287
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FMUNMAP
+ * else: self._delegate.core.flag &= ~BAM_FMUNMAP # <<<<<<<<<<<<<<
+ * property is_reverse:
+ * """true if read is mapped to reverse strand"""
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & (~8));
+ }
+ __pyx_L5:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.mate_is_unmapped.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2290
+ * property is_reverse:
+ * """true if read is mapped to reverse strand"""
+ * def __get__(self): return (self.flag & BAM_FREVERSE) != 0 # <<<<<<<<<<<<<<
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FREVERSE
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_10is_reverse_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_10is_reverse_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2290);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2290; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_16); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2290; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_0, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2290; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_reverse.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2291
+ * """true if read is mapped to reverse strand"""
+ * def __get__(self): return (self.flag & BAM_FREVERSE) != 0
+ * def __set__(self,val): # <<<<<<<<<<<<<<
+ * if val: self._delegate.core.flag |= BAM_FREVERSE
+ * else: self._delegate.core.flag &= ~BAM_FREVERSE
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_10is_reverse_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_10is_reverse_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2291);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2292
+ * def __get__(self): return (self.flag & BAM_FREVERSE) != 0
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FREVERSE # <<<<<<<<<<<<<<
+ * else: self._delegate.core.flag &= ~BAM_FREVERSE
+ * property mate_is_reverse:
+ */
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2292; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_1) {
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag | 16);
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2293
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FREVERSE
+ * else: self._delegate.core.flag &= ~BAM_FREVERSE # <<<<<<<<<<<<<<
+ * property mate_is_reverse:
+ * """true is read is mapped to reverse strand"""
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & (~16));
+ }
+ __pyx_L5:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_reverse.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2296
+ * property mate_is_reverse:
+ * """true is read is mapped to reverse strand"""
+ * def __get__(self): return (self.flag & BAM_FMREVERSE) != 0 # <<<<<<<<<<<<<<
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FMREVERSE
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_15mate_is_reverse_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_15mate_is_reverse_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2296);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2296; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_32); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2296; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_0, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2296; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.mate_is_reverse.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2297
+ * """true is read is mapped to reverse strand"""
+ * def __get__(self): return (self.flag & BAM_FMREVERSE) != 0
+ * def __set__(self,val): # <<<<<<<<<<<<<<
+ * if val: self._delegate.core.flag |= BAM_FMREVERSE
+ * else: self._delegate.core.flag &= ~BAM_FMREVERSE
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_15mate_is_reverse_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_15mate_is_reverse_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2297);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2298
+ * def __get__(self): return (self.flag & BAM_FMREVERSE) != 0
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FMREVERSE # <<<<<<<<<<<<<<
+ * else: self._delegate.core.flag &= ~BAM_FMREVERSE
+ * property is_read1:
+ */
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2298; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_1) {
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag | 32);
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2299
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FMREVERSE
+ * else: self._delegate.core.flag &= ~BAM_FMREVERSE # <<<<<<<<<<<<<<
+ * property is_read1:
+ * """true if this is read1"""
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & (~32));
+ }
+ __pyx_L5:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.mate_is_reverse.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2302
+ * property is_read1:
+ * """true if this is read1"""
+ * def __get__(self): return (self.flag & BAM_FREAD1) != 0 # <<<<<<<<<<<<<<
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FREAD1
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_8is_read1_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_8is_read1_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2302);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2302; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_64); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2302; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_0, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2302; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_read1.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2303
+ * """true if this is read1"""
+ * def __get__(self): return (self.flag & BAM_FREAD1) != 0
+ * def __set__(self,val): # <<<<<<<<<<<<<<
+ * if val: self._delegate.core.flag |= BAM_FREAD1
+ * else: self._delegate.core.flag &= ~BAM_FREAD1
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_8is_read1_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_8is_read1_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2303);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2304
+ * def __get__(self): return (self.flag & BAM_FREAD1) != 0
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FREAD1 # <<<<<<<<<<<<<<
+ * else: self._delegate.core.flag &= ~BAM_FREAD1
+ * property is_read2:
+ */
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2304; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_1) {
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag | 64);
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2305
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FREAD1
+ * else: self._delegate.core.flag &= ~BAM_FREAD1 # <<<<<<<<<<<<<<
+ * property is_read2:
+ * """true if this is read2"""
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & (~64));
+ }
+ __pyx_L5:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_read1.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2308
+ * property is_read2:
+ * """true if this is read2"""
+ * def __get__(self): return (self.flag & BAM_FREAD2) != 0 # <<<<<<<<<<<<<<
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FREAD2
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_8is_read2_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_8is_read2_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2308);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2308; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_128); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2308; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_0, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2308; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_read2.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2309
+ * """true if this is read2"""
+ * def __get__(self): return (self.flag & BAM_FREAD2) != 0
+ * def __set__(self,val): # <<<<<<<<<<<<<<
+ * if val: self._delegate.core.flag |= BAM_FREAD2
+ * else: self._delegate.core.flag &= ~BAM_FREAD2
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_8is_read2_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_8is_read2_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2309);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2310
+ * def __get__(self): return (self.flag & BAM_FREAD2) != 0
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FREAD2 # <<<<<<<<<<<<<<
+ * else: self._delegate.core.flag &= ~BAM_FREAD2
+ * property is_secondary:
+ */
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2310; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_1) {
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag | 128);
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2311
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FREAD2
+ * else: self._delegate.core.flag &= ~BAM_FREAD2 # <<<<<<<<<<<<<<
+ * property is_secondary:
+ * """true if not primary alignment"""
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & (~128));
+ }
+ __pyx_L5:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_read2.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2314
+ * property is_secondary:
+ * """true if not primary alignment"""
+ * def __get__(self): return (self.flag & BAM_FSECONDARY) != 0 # <<<<<<<<<<<<<<
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FSECONDARY
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_12is_secondary_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_12is_secondary_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2314);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2314; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_256); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2314; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_0, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2314; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_secondary.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2315
+ * """true if not primary alignment"""
+ * def __get__(self): return (self.flag & BAM_FSECONDARY) != 0
+ * def __set__(self,val): # <<<<<<<<<<<<<<
+ * if val: self._delegate.core.flag |= BAM_FSECONDARY
+ * else: self._delegate.core.flag &= ~BAM_FSECONDARY
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_12is_secondary_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_12is_secondary_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2315);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2316
+ * def __get__(self): return (self.flag & BAM_FSECONDARY) != 0
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FSECONDARY # <<<<<<<<<<<<<<
+ * else: self._delegate.core.flag &= ~BAM_FSECONDARY
+ * property is_qcfail:
+ */
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2316; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_1) {
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag | 256);
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2317
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FSECONDARY
+ * else: self._delegate.core.flag &= ~BAM_FSECONDARY # <<<<<<<<<<<<<<
+ * property is_qcfail:
+ * """true if QC failure"""
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & (~256));
+ }
+ __pyx_L5:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_secondary.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2320
+ * property is_qcfail:
+ * """true if QC failure"""
+ * def __get__(self): return (self.flag & BAM_FQCFAIL) != 0 # <<<<<<<<<<<<<<
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FQCFAIL
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_9is_qcfail_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_9is_qcfail_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2320);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2320; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_512); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2320; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_0, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2320; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_qcfail.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2321
+ * """true if QC failure"""
+ * def __get__(self): return (self.flag & BAM_FQCFAIL) != 0
+ * def __set__(self,val): # <<<<<<<<<<<<<<
+ * if val: self._delegate.core.flag |= BAM_FQCFAIL
+ * else: self._delegate.core.flag &= ~BAM_FQCFAIL
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_9is_qcfail_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_9is_qcfail_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2321);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2322
+ * def __get__(self): return (self.flag & BAM_FQCFAIL) != 0
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FQCFAIL # <<<<<<<<<<<<<<
+ * else: self._delegate.core.flag &= ~BAM_FQCFAIL
+ * property is_duplicate:
+ */
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2322; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_1) {
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag | 512);
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2323
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FQCFAIL
+ * else: self._delegate.core.flag &= ~BAM_FQCFAIL # <<<<<<<<<<<<<<
+ * property is_duplicate:
+ * """ true if optical or PCR duplicate"""
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & (~512));
+ }
+ __pyx_L5:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_qcfail.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2326
+ * property is_duplicate:
+ * """ true if optical or PCR duplicate"""
+ * def __get__(self): return (self.flag & BAM_FDUP) != 0 # <<<<<<<<<<<<<<
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FDUP
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_12is_duplicate_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_12is_duplicate_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2326);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__flag); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2326; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyNumber_And(__pyx_t_1, __pyx_int_1024); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2326; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_RichCompare(__pyx_t_2, __pyx_int_0, Py_NE); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2326; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_duplicate.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2327
+ * """ true if optical or PCR duplicate"""
+ * def __get__(self): return (self.flag & BAM_FDUP) != 0
+ * def __set__(self,val): # <<<<<<<<<<<<<<
+ * if val: self._delegate.core.flag |= BAM_FDUP
+ * else: self._delegate.core.flag &= ~BAM_FDUP
+ */
+
+static int __pyx_pf_9csamtools_11AlignedRead_12is_duplicate_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val); /*proto*/
+static int __pyx_pf_9csamtools_11AlignedRead_12is_duplicate_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_val) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2327);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2328
+ * def __get__(self): return (self.flag & BAM_FDUP) != 0
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FDUP # <<<<<<<<<<<<<<
+ * else: self._delegate.core.flag &= ~BAM_FDUP
+ *
+ */
+ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_val); if (unlikely(__pyx_t_1 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2328; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_1) {
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag | 1024);
+ goto __pyx_L5;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2329
+ * def __set__(self,val):
+ * if val: self._delegate.core.flag |= BAM_FDUP
+ * else: self._delegate.core.flag &= ~BAM_FDUP # <<<<<<<<<<<<<<
+ *
+ * def opt(self, tag):
+ */
+ ((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag = (((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate->core.flag & (~1024));
+ }
+ __pyx_L5:;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.AlignedRead.is_duplicate.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2331
+ * else: self._delegate.core.flag &= ~BAM_FDUP
+ *
+ * def opt(self, tag): # <<<<<<<<<<<<<<
+ * """retrieves optional data given a two-letter *tag*"""
+ * #see bam_aux.c: bam_aux_get() and bam_aux2i() etc
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5opt(PyObject *__pyx_v_self, PyObject *__pyx_v_tag); /*proto*/
+static char __pyx_doc_9csamtools_11AlignedRead_5opt[] = "retrieves optional data given a two-letter *tag*";
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_5opt(PyObject *__pyx_v_self, PyObject *__pyx_v_tag) {
+ uint8_t *__pyx_v_v;
+ PyObject *__pyx_v_type;
+ PyObject *__pyx_r = NULL;
+ char *__pyx_t_1;
+ int __pyx_t_2;
+ PyObject *__pyx_t_3 = NULL;
+ PyObject *__pyx_t_4 = NULL;
+ int __pyx_t_5;
+ int __pyx_t_6;
+ int __pyx_t_7;
+ int __pyx_t_8;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("opt");
+ __Pyx_TraceCall("opt", __pyx_f[0], 2331);
+ __pyx_v_type = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2335
+ * #see bam_aux.c: bam_aux_get() and bam_aux2i() etc
+ * cdef uint8_t * v
+ * v = bam_aux_get(self._delegate, tag) # <<<<<<<<<<<<<<
+ * if v == NULL: raise KeyError( "tag '%s' not present" % tag )
+ * type = chr(v[0])
+ */
+ __pyx_t_1 = PyBytes_AsString(__pyx_v_tag); if (unlikely((!__pyx_t_1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2335; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_v = bam_aux_get(((struct __pyx_obj_9csamtools_AlignedRead *)__pyx_v_self)->_delegate, __pyx_t_1);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2336
+ * cdef uint8_t * v
+ * v = bam_aux_get(self._delegate, tag)
+ * if v == NULL: raise KeyError( "tag '%s' not present" % tag ) # <<<<<<<<<<<<<<
+ * type = chr(v[0])
+ * if type == 'c' or type == 'C' or type == 's' or type == 'S':
+ */
+ __pyx_t_2 = (__pyx_v_v == NULL);
+ if (__pyx_t_2) {
+ __pyx_t_3 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_124), __pyx_v_tag); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2336; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2336; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_t_3));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_3));
+ __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_Call(__pyx_builtin_KeyError, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2336; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __Pyx_Raise(__pyx_t_3, 0, 0);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2336; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2337
+ * v = bam_aux_get(self._delegate, tag)
+ * if v == NULL: raise KeyError( "tag '%s' not present" % tag )
+ * type = chr(v[0]) # <<<<<<<<<<<<<<
+ * if type == 'c' or type == 'C' or type == 's' or type == 'S':
+ * return <int>bam_aux2i(v)
+ */
+ __pyx_t_3 = __Pyx_PyInt_to_py_uint8_t((__pyx_v_v[0])); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2337; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2337; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_Call(__pyx_builtin_chr, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2337; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_type);
+ __pyx_v_type = __pyx_t_3;
+ __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2338
+ * if v == NULL: raise KeyError( "tag '%s' not present" % tag )
+ * type = chr(v[0])
+ * if type == 'c' or type == 'C' or type == 's' or type == 'S': # <<<<<<<<<<<<<<
+ * return <int>bam_aux2i(v)
+ * elif type == 'i' or type == 'I':
+ */
+ __pyx_t_3 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__c), Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2338; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2338; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ if (!__pyx_t_2) {
+ __pyx_t_3 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__C), Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2338; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2338; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ if (!__pyx_t_5) {
+ __pyx_t_3 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__s), Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2338; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2338; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ if (!__pyx_t_6) {
+ __pyx_t_3 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__S), Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2338; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_7 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_7 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2338; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_8 = __pyx_t_7;
+ } else {
+ __pyx_t_8 = __pyx_t_6;
+ }
+ __pyx_t_6 = __pyx_t_8;
+ } else {
+ __pyx_t_6 = __pyx_t_5;
+ }
+ __pyx_t_5 = __pyx_t_6;
+ } else {
+ __pyx_t_5 = __pyx_t_2;
+ }
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2339
+ * type = chr(v[0])
+ * if type == 'c' or type == 'C' or type == 's' or type == 'S':
+ * return <int>bam_aux2i(v) # <<<<<<<<<<<<<<
+ * elif type == 'i' or type == 'I':
+ * return <int32_t>bam_aux2i(v)
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_3 = PyInt_FromLong(((int)bam_aux2i(__pyx_v_v))); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2339; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 0;
+ goto __pyx_L0;
+ goto __pyx_L6;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2340
+ * if type == 'c' or type == 'C' or type == 's' or type == 'S':
+ * return <int>bam_aux2i(v)
+ * elif type == 'i' or type == 'I': # <<<<<<<<<<<<<<
+ * return <int32_t>bam_aux2i(v)
+ * elif type == 'f' or type == 'F':
+ */
+ __pyx_t_3 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__i), Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2340; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2340; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ if (!__pyx_t_5) {
+ __pyx_t_3 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__I), Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2340; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2340; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_6 = __pyx_t_2;
+ } else {
+ __pyx_t_6 = __pyx_t_5;
+ }
+ if (__pyx_t_6) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2341
+ * return <int>bam_aux2i(v)
+ * elif type == 'i' or type == 'I':
+ * return <int32_t>bam_aux2i(v) # <<<<<<<<<<<<<<
+ * elif type == 'f' or type == 'F':
+ * return <float>bam_aux2f(v)
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_3 = __Pyx_PyInt_to_py_int32_t(bam_aux2i(__pyx_v_v)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2341; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 0;
+ goto __pyx_L0;
+ goto __pyx_L6;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2342
+ * elif type == 'i' or type == 'I':
+ * return <int32_t>bam_aux2i(v)
+ * elif type == 'f' or type == 'F': # <<<<<<<<<<<<<<
+ * return <float>bam_aux2f(v)
+ * elif type == 'd' or type == 'D':
+ */
+ __pyx_t_3 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__f), Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2342; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2342; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ if (!__pyx_t_6) {
+ __pyx_t_3 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__F), Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2342; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2342; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_2 = __pyx_t_5;
+ } else {
+ __pyx_t_2 = __pyx_t_6;
+ }
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2343
+ * return <int32_t>bam_aux2i(v)
+ * elif type == 'f' or type == 'F':
+ * return <float>bam_aux2f(v) # <<<<<<<<<<<<<<
+ * elif type == 'd' or type == 'D':
+ * return <double>bam_aux2d(v)
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_3 = PyFloat_FromDouble(bam_aux2f(__pyx_v_v)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2343; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 0;
+ goto __pyx_L0;
+ goto __pyx_L6;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2344
+ * elif type == 'f' or type == 'F':
+ * return <float>bam_aux2f(v)
+ * elif type == 'd' or type == 'D': # <<<<<<<<<<<<<<
+ * return <double>bam_aux2d(v)
+ * elif type == 'A':
+ */
+ __pyx_t_3 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__d), Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2344; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2344; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ if (!__pyx_t_2) {
+ __pyx_t_3 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__D), Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2344; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2344; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_5 = __pyx_t_6;
+ } else {
+ __pyx_t_5 = __pyx_t_2;
+ }
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2345
+ * return <float>bam_aux2f(v)
+ * elif type == 'd' or type == 'D':
+ * return <double>bam_aux2d(v) # <<<<<<<<<<<<<<
+ * elif type == 'A':
+ * # there might a more efficient way
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_3 = PyFloat_FromDouble(bam_aux2d(__pyx_v_v)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2345; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 0;
+ goto __pyx_L0;
+ goto __pyx_L6;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2346
+ * elif type == 'd' or type == 'D':
+ * return <double>bam_aux2d(v)
+ * elif type == 'A': # <<<<<<<<<<<<<<
+ * # there might a more efficient way
+ * # to convert a char into a string
+ */
+ __pyx_t_3 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__A), Py_EQ); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2346; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2346; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2349
+ * # there might a more efficient way
+ * # to convert a char into a string
+ * return '%c' % <char>bam_aux2A(v) # <<<<<<<<<<<<<<
+ * elif type == 'Z':
+ * return <char*>bam_aux2Z(v)
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_3 = PyInt_FromLong(bam_aux2A(__pyx_v_v)); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2349; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_110), __pyx_t_3); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2349; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_r = ((PyObject *)__pyx_t_4);
+ __pyx_t_4 = 0;
+ goto __pyx_L0;
+ goto __pyx_L6;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2350
+ * # to convert a char into a string
+ * return '%c' % <char>bam_aux2A(v)
+ * elif type == 'Z': # <<<<<<<<<<<<<<
+ * return <char*>bam_aux2Z(v)
+ *
+ */
+ __pyx_t_4 = PyObject_RichCompare(__pyx_v_type, ((PyObject *)__pyx_n_s__Z), Py_EQ); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2350; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2350; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2351
+ * return '%c' % <char>bam_aux2A(v)
+ * elif type == 'Z':
+ * return <char*>bam_aux2Z(v) # <<<<<<<<<<<<<<
+ *
+ * def fancy_str (self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_4 = PyBytes_FromString(bam_aux2Z(__pyx_v_v)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2351; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __pyx_r = ((PyObject *)__pyx_t_4);
+ __pyx_t_4 = 0;
+ goto __pyx_L0;
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_AddTraceback("csamtools.AlignedRead.opt");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_type);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2353
+ * return <char*>bam_aux2Z(v)
+ *
+ * def fancy_str (self): # <<<<<<<<<<<<<<
+ * """returns list of fieldnames/values in pretty format for debugging
+ * """
+ */
+
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_6fancy_str(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static char __pyx_doc_9csamtools_11AlignedRead_6fancy_str[] = "returns list of fieldnames/values in pretty format for debugging\n ";
+static PyObject *__pyx_pf_9csamtools_11AlignedRead_6fancy_str(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
+ PyObject *__pyx_v_ret_string;
+ PyObject *__pyx_v_field_names;
+ PyObject *__pyx_v_fields_names_in_order;
+ PyObject *__pyx_v_f;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ Py_ssize_t __pyx_t_2;
+ PyObject *__pyx_t_3 = NULL;
+ int __pyx_t_4;
+ int __pyx_t_5;
+ PyObject *__pyx_t_6 = NULL;
+ PyObject *__pyx_t_7 = NULL;
+ PyObject *__pyx_t_8 = NULL;
+ PyObject *__pyx_t_9 = NULL;
+ int __pyx_t_10;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("fancy_str");
+ __Pyx_TraceCall("fancy_str", __pyx_f[0], 2353);
+ __pyx_v_ret_string = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+ __pyx_v_field_names = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+ __pyx_v_fields_names_in_order = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+ __pyx_v_f = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2356
+ * """returns list of fieldnames/values in pretty format for debugging
+ * """
+ * ret_string = [] # <<<<<<<<<<<<<<
+ * field_names = {
+ * "tid": "Contig index",
+ */
+ __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2356; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(((PyObject *)__pyx_v_ret_string));
+ __pyx_v_ret_string = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2357
+ * """
+ * ret_string = []
+ * field_names = { # <<<<<<<<<<<<<<
+ * "tid": "Contig index",
+ * "pos": "Mapped position on contig",
+ */
+ __pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__tid), ((PyObject *)__pyx_kp_s_125)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__pos), ((PyObject *)__pyx_kp_s_126)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__mtid), ((PyObject *)__pyx_kp_s_127)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__mpos), ((PyObject *)__pyx_kp_s_128)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__isize), ((PyObject *)__pyx_kp_s_129)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__flag), ((PyObject *)__pyx_kp_s_130)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__n_cigar), ((PyObject *)__pyx_kp_s_131)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__cigar), ((PyObject *)__pyx_kp_s_132)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__qual), ((PyObject *)__pyx_kp_s_133)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__bin), ((PyObject *)__pyx_kp_s_134)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__l_qname), ((PyObject *)__pyx_kp_s_135)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__qname), ((PyObject *)__pyx_kp_s_136)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__l_qseq), ((PyObject *)__pyx_kp_s_137)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__qseq), ((PyObject *)__pyx_kp_s_138)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__bqual), ((PyObject *)__pyx_kp_s_139)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__l_aux), ((PyObject *)__pyx_kp_s_140)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__m_data), ((PyObject *)__pyx_kp_s_141)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__data_len), ((PyObject *)__pyx_kp_s_142)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2357; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_v_field_names));
+ __pyx_v_field_names = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2377
+ * "data_len": "Current data length",
+ * }
+ * fields_names_in_order = ["tid", "pos", "mtid", "mpos", "isize", "flag", # <<<<<<<<<<<<<<
+ * "n_cigar", "cigar", "qual", "bin", "l_qname", "qname",
+ * "l_qseq", "qseq", "bqual", "l_aux", "m_data", "data_len"]
+ */
+ __pyx_t_1 = PyList_New(18); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2377; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__tid));
+ PyList_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_n_s__tid));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__tid));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__pos));
+ PyList_SET_ITEM(__pyx_t_1, 1, ((PyObject *)__pyx_n_s__pos));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__pos));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__mtid));
+ PyList_SET_ITEM(__pyx_t_1, 2, ((PyObject *)__pyx_n_s__mtid));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__mtid));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__mpos));
+ PyList_SET_ITEM(__pyx_t_1, 3, ((PyObject *)__pyx_n_s__mpos));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__mpos));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__isize));
+ PyList_SET_ITEM(__pyx_t_1, 4, ((PyObject *)__pyx_n_s__isize));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__isize));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__flag));
+ PyList_SET_ITEM(__pyx_t_1, 5, ((PyObject *)__pyx_n_s__flag));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__flag));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__n_cigar));
+ PyList_SET_ITEM(__pyx_t_1, 6, ((PyObject *)__pyx_n_s__n_cigar));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__n_cigar));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__cigar));
+ PyList_SET_ITEM(__pyx_t_1, 7, ((PyObject *)__pyx_n_s__cigar));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__cigar));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__qual));
+ PyList_SET_ITEM(__pyx_t_1, 8, ((PyObject *)__pyx_n_s__qual));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__qual));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__bin));
+ PyList_SET_ITEM(__pyx_t_1, 9, ((PyObject *)__pyx_n_s__bin));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__bin));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__l_qname));
+ PyList_SET_ITEM(__pyx_t_1, 10, ((PyObject *)__pyx_n_s__l_qname));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__l_qname));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__qname));
+ PyList_SET_ITEM(__pyx_t_1, 11, ((PyObject *)__pyx_n_s__qname));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__qname));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__l_qseq));
+ PyList_SET_ITEM(__pyx_t_1, 12, ((PyObject *)__pyx_n_s__l_qseq));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__l_qseq));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__qseq));
+ PyList_SET_ITEM(__pyx_t_1, 13, ((PyObject *)__pyx_n_s__qseq));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__qseq));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__bqual));
+ PyList_SET_ITEM(__pyx_t_1, 14, ((PyObject *)__pyx_n_s__bqual));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__bqual));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__l_aux));
+ PyList_SET_ITEM(__pyx_t_1, 15, ((PyObject *)__pyx_n_s__l_aux));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__l_aux));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__m_data));
+ PyList_SET_ITEM(__pyx_t_1, 16, ((PyObject *)__pyx_n_s__m_data));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__m_data));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__data_len));
+ PyList_SET_ITEM(__pyx_t_1, 17, ((PyObject *)__pyx_n_s__data_len));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__data_len));
+ __Pyx_DECREF(((PyObject *)__pyx_v_fields_names_in_order));
+ __pyx_v_fields_names_in_order = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2381
+ * "l_qseq", "qseq", "bqual", "l_aux", "m_data", "data_len"]
+ *
+ * for f in fields_names_in_order: # <<<<<<<<<<<<<<
+ * if not f in self.__dict__:
+ * continue
+ */
+ if (unlikely(__pyx_v_fields_names_in_order == Py_None)) {
+ PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2381; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = 0; __pyx_t_1 = ((PyObject *)__pyx_v_fields_names_in_order); __Pyx_INCREF(__pyx_t_1);
+ for (;;) {
+ if (__pyx_t_2 >= PyList_GET_SIZE(__pyx_t_1)) break;
+ __pyx_t_3 = PyList_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_3); __pyx_t_2++;
+ __Pyx_DECREF(__pyx_v_f);
+ __pyx_v_f = __pyx_t_3;
+ __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2382
+ *
+ * for f in fields_names_in_order:
+ * if not f in self.__dict__: # <<<<<<<<<<<<<<
+ * continue
+ * ret_string.append("%-30s %-10s= %s" % (field_names[f], "(" + f + ")", self.__getattribute__(f)))
+ */
+ __pyx_t_3 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s____dict__); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2382; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = ((PySequence_Contains(__pyx_t_3, __pyx_v_f))); if (unlikely(__pyx_t_4 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2382; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_5 = (!__pyx_t_4);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2383
+ * for f in fields_names_in_order:
+ * if not f in self.__dict__:
+ * continue # <<<<<<<<<<<<<<
+ * ret_string.append("%-30s %-10s= %s" % (field_names[f], "(" + f + ")", self.__getattribute__(f)))
+ *
+ */
+ goto __pyx_L5_continue;
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2384
+ * if not f in self.__dict__:
+ * continue
+ * ret_string.append("%-30s %-10s= %s" % (field_names[f], "(" + f + ")", self.__getattribute__(f))) # <<<<<<<<<<<<<<
+ *
+ * for f in self.__dict__:
+ */
+ if (unlikely(__pyx_v_ret_string == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2384; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_3 = __Pyx_PyDict_GetItem(((PyObject *)__pyx_v_field_names), __pyx_v_f); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2384; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_6 = PyNumber_Add(((PyObject *)__pyx_kp_s_144), __pyx_v_f); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2384; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_7 = PyNumber_Add(__pyx_t_6, ((PyObject *)__pyx_kp_s_145)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2384; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __pyx_t_6 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s____getattribute__); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2384; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_8 = PyTuple_New(1); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2384; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ __Pyx_INCREF(__pyx_v_f);
+ PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_v_f);
+ __Pyx_GIVEREF(__pyx_v_f);
+ __pyx_t_9 = PyObject_Call(__pyx_t_6, ((PyObject *)__pyx_t_8), NULL); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2384; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0;
+ __pyx_t_8 = PyTuple_New(3); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2384; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ PyTuple_SET_ITEM(__pyx_t_8, 1, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ PyTuple_SET_ITEM(__pyx_t_8, 2, __pyx_t_9);
+ __Pyx_GIVEREF(__pyx_t_9);
+ __pyx_t_3 = 0;
+ __pyx_t_7 = 0;
+ __pyx_t_9 = 0;
+ __pyx_t_9 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_143), ((PyObject *)__pyx_t_8)); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2384; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_9));
+ __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0;
+ __pyx_t_10 = PyList_Append(__pyx_v_ret_string, ((PyObject *)__pyx_t_9)); if (unlikely(__pyx_t_10 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2384; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_9)); __pyx_t_9 = 0;
+ __pyx_L5_continue:;
+ }
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2386
+ * ret_string.append("%-30s %-10s= %s" % (field_names[f], "(" + f + ")", self.__getattribute__(f)))
+ *
+ * for f in self.__dict__: # <<<<<<<<<<<<<<
+ * if not f in field_names:
+ * ret_string.append("%-30s %-10s= %s" % (f, "", self.__getattribute__(f)))
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s____dict__); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2386; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyList_CheckExact(__pyx_t_1) || PyTuple_CheckExact(__pyx_t_1)) {
+ __pyx_t_2 = 0; __pyx_t_9 = __pyx_t_1; __Pyx_INCREF(__pyx_t_9);
+ } else {
+ __pyx_t_2 = -1; __pyx_t_9 = PyObject_GetIter(__pyx_t_1); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2386; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+ }
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ for (;;) {
+ if (likely(PyList_CheckExact(__pyx_t_9))) {
+ if (__pyx_t_2 >= PyList_GET_SIZE(__pyx_t_9)) break;
+ __pyx_t_1 = PyList_GET_ITEM(__pyx_t_9, __pyx_t_2); __Pyx_INCREF(__pyx_t_1); __pyx_t_2++;
+ } else if (likely(PyTuple_CheckExact(__pyx_t_9))) {
+ if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_9)) break;
+ __pyx_t_1 = PyTuple_GET_ITEM(__pyx_t_9, __pyx_t_2); __Pyx_INCREF(__pyx_t_1); __pyx_t_2++;
+ } else {
+ __pyx_t_1 = PyIter_Next(__pyx_t_9);
+ if (!__pyx_t_1) {
+ if (unlikely(PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2386; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ break;
+ }
+ __Pyx_GOTREF(__pyx_t_1);
+ }
+ __Pyx_DECREF(__pyx_v_f);
+ __pyx_v_f = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2387
+ *
+ * for f in self.__dict__:
+ * if not f in field_names: # <<<<<<<<<<<<<<
+ * ret_string.append("%-30s %-10s= %s" % (f, "", self.__getattribute__(f)))
+ * return ret_string
+ */
+ if (unlikely(__pyx_v_field_names == Py_None)) {
+ PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2387; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_5 = ((PyDict_Contains(((PyObject *)__pyx_v_field_names), __pyx_v_f))); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2387; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_4 = (!__pyx_t_5);
+ if (__pyx_t_4) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2388
+ * for f in self.__dict__:
+ * if not f in field_names:
+ * ret_string.append("%-30s %-10s= %s" % (f, "", self.__getattribute__(f))) # <<<<<<<<<<<<<<
+ * return ret_string
+ *
+ */
+ if (unlikely(__pyx_v_ret_string == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2388; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s____getattribute__); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2388; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_8 = PyTuple_New(1); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2388; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ __Pyx_INCREF(__pyx_v_f);
+ PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_v_f);
+ __Pyx_GIVEREF(__pyx_v_f);
+ __pyx_t_7 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_8), NULL); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2388; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0;
+ __pyx_t_8 = PyTuple_New(3); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2388; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ __Pyx_INCREF(__pyx_v_f);
+ PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_v_f);
+ __Pyx_GIVEREF(__pyx_v_f);
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_12));
+ PyTuple_SET_ITEM(__pyx_t_8, 1, ((PyObject *)__pyx_kp_s_12));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_12));
+ PyTuple_SET_ITEM(__pyx_t_8, 2, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ __pyx_t_7 = 0;
+ __pyx_t_7 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_143), ((PyObject *)__pyx_t_8)); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2388; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_7));
+ __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0;
+ __pyx_t_10 = PyList_Append(__pyx_v_ret_string, ((PyObject *)__pyx_t_7)); if (unlikely(__pyx_t_10 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2388; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_7)); __pyx_t_7 = 0;
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+ }
+ __Pyx_DECREF(__pyx_t_9); __pyx_t_9 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2389
+ * if not f in field_names:
+ * ret_string.append("%-30s %-10s= %s" % (f, "", self.__getattribute__(f)))
+ * return ret_string # <<<<<<<<<<<<<<
+ *
+ * cdef class PileupProxy:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_v_ret_string));
+ __pyx_r = ((PyObject *)__pyx_v_ret_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_3);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_XDECREF(__pyx_t_8);
+ __Pyx_XDECREF(__pyx_t_9);
+ __Pyx_AddTraceback("csamtools.AlignedRead.fancy_str");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_ret_string);
+ __Pyx_DECREF(__pyx_v_field_names);
+ __Pyx_DECREF(__pyx_v_fields_names_in_order);
+ __Pyx_DECREF(__pyx_v_f);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2413
+ * cdef int n_pu
+ *
+ * def __init__(self): # <<<<<<<<<<<<<<
+ * raise TypeError("This class cannot be instantiated from Python")
+ *
+ */
+
+static int __pyx_pf_9csamtools_11PileupProxy_0__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_11PileupProxy_0__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__init__");
+ __Pyx_TraceCall("__init__", __pyx_f[0], 2413);
+ if (unlikely(PyTuple_GET_SIZE(__pyx_args) > 0)) {
+ __Pyx_RaiseArgtupleInvalid("__init__", 1, 0, 0, PyTuple_GET_SIZE(__pyx_args)); return -1;}
+ if (unlikely(__pyx_kwds) && unlikely(PyDict_Size(__pyx_kwds) > 0) && unlikely(!__Pyx_CheckKeywordStrings(__pyx_kwds, "__init__", 0))) return -1;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2414
+ *
+ * def __init__(self):
+ * raise TypeError("This class cannot be instantiated from Python") # <<<<<<<<<<<<<<
+ *
+ * def __str__(self):
+ */
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_TypeError, ((PyObject *)__pyx_k_tuple_147), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2414; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2414; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupProxy.__init__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2416
+ * raise TypeError("This class cannot be instantiated from Python")
+ *
+ * def __str__(self): # <<<<<<<<<<<<<<
+ * return "\t".join( map(str, (self.tid, self.pos, self.n))) +\
+ * "\n" +\
+ */
+
+static PyObject *__pyx_pf_9csamtools_11PileupProxy_1__str__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11PileupProxy_1__str__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ 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;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__str__");
+ __Pyx_TraceCall("__str__", __pyx_f[0], 2416);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2417
+ *
+ * def __str__(self):
+ * return "\t".join( map(str, (self.tid, self.pos, self.n))) +\ # <<<<<<<<<<<<<<
+ * "\n" +\
+ * "\n".join( map(str, self.pileups) )
+ */
+ __Pyx_XDECREF(__pyx_r);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2418
+ * def __str__(self):
+ * return "\t".join( map(str, (self.tid, self.pos, self.n))) +\
+ * "\n" +\ # <<<<<<<<<<<<<<
+ * "\n".join( map(str, self.pileups) )
+ *
+ */
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_1), __pyx_n_s__join); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2417
+ *
+ * def __str__(self):
+ * return "\t".join( map(str, (self.tid, self.pos, self.n))) +\ # <<<<<<<<<<<<<<
+ * "\n" +\
+ * "\n".join( map(str, self.pileups) )
+ */
+ __pyx_t_2 = PyInt_FromLong(((struct __pyx_obj_9csamtools_PileupProxy *)__pyx_v_self)->tid); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyInt_FromLong(((struct __pyx_obj_9csamtools_PileupProxy *)__pyx_v_self)->pos); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__n); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2417; __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 = 2417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ PyTuple_SET_ITEM(__pyx_t_5, 2, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ __pyx_t_2 = 0;
+ __pyx_t_3 = 0;
+ __pyx_t_4 = 0;
+ __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_INCREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)((PyObject*)(&PyString_Type))));
+ __Pyx_GIVEREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_4, 1, ((PyObject *)__pyx_t_5));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_5));
+ __pyx_t_5 = 0;
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_map, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __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 = 2417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ __pyx_t_5 = 0;
+ __pyx_t_5 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __pyx_t_4 = PyNumber_Add(__pyx_t_5, ((PyObject *)__pyx_kp_s_2)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2417; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2419
+ * return "\t".join( map(str, (self.tid, self.pos, self.n))) +\
+ * "\n" +\
+ * "\n".join( map(str, self.pileups) ) # <<<<<<<<<<<<<<
+ *
+ * property tid:
+ */
+ __pyx_t_5 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_2), __pyx_n_s__join); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2419; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__pileups); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2419; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2419; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ __Pyx_INCREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)((PyObject*)(&PyString_Type))));
+ __Pyx_GIVEREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_map, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2419; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2419; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2419; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __pyx_t_3 = PyNumber_Add(__pyx_t_4, __pyx_t_1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2418; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 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_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_AddTraceback("csamtools.PileupProxy.__str__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2423
+ * property tid:
+ * '''the chromosome ID as is defined in the header'''
+ * def __get__(self): return self.tid # <<<<<<<<<<<<<<
+ *
+ * property n:
+ */
+
+static PyObject *__pyx_pf_9csamtools_11PileupProxy_3tid_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11PileupProxy_3tid_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2423);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_PileupProxy *)__pyx_v_self)->tid); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2423; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupProxy.tid.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2427
+ * property n:
+ * '''number of reads mapping to this column.'''
+ * def __get__(self): return self.n_pu # <<<<<<<<<<<<<<
+ * def __set__(self, n): self.n_pu = n
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_11PileupProxy_1n_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11PileupProxy_1n_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2427);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_PileupProxy *)__pyx_v_self)->n_pu); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2427; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupProxy.n.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2428
+ * '''number of reads mapping to this column.'''
+ * def __get__(self): return self.n_pu
+ * def __set__(self, n): self.n_pu = n # <<<<<<<<<<<<<<
+ *
+ * property pos:
+ */
+
+static int __pyx_pf_9csamtools_11PileupProxy_1n_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_n); /*proto*/
+static int __pyx_pf_9csamtools_11PileupProxy_1n_1__set__(PyObject *__pyx_v_self, PyObject *__pyx_v_n) {
+ int __pyx_r;
+ int __pyx_t_1;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__set__");
+ __Pyx_TraceCall("__set__", __pyx_f[0], 2428);
+ __pyx_t_1 = __Pyx_PyInt_AsInt(__pyx_v_n); if (unlikely((__pyx_t_1 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2428; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ ((struct __pyx_obj_9csamtools_PileupProxy *)__pyx_v_self)->n_pu = __pyx_t_1;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.PileupProxy.n.__set__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2431
+ *
+ * property pos:
+ * def __get__(self): return self.pos # <<<<<<<<<<<<<<
+ *
+ * property pileups:
+ */
+
+static PyObject *__pyx_pf_9csamtools_11PileupProxy_3pos_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11PileupProxy_3pos_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2431);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_PileupProxy *)__pyx_v_self)->pos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2431; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupProxy.pos.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2435
+ * property pileups:
+ * '''list of reads (:class:`pysam.PileupRead`) aligned to this column'''
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * cdef int x
+ * pileups = []
+ */
+
+static PyObject *__pyx_pf_9csamtools_11PileupProxy_7pileups_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_11PileupProxy_7pileups_0__get__(PyObject *__pyx_v_self) {
+ int __pyx_v_x;
+ PyObject *__pyx_v_pileups;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ int __pyx_t_3;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2435);
+ __pyx_v_pileups = ((PyObject*)Py_None); __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2437
+ * def __get__(self):
+ * cdef int x
+ * pileups = [] # <<<<<<<<<<<<<<
+ * # warning: there could be problems if self.n and self.buf are
+ * # out of sync.
+ */
+ __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2437; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(((PyObject *)__pyx_v_pileups));
+ __pyx_v_pileups = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2440
+ * # warning: there could be problems if self.n and self.buf are
+ * # out of sync.
+ * for x from 0 <= x < self.n_pu: # <<<<<<<<<<<<<<
+ * pileups.append( makePileupRead( &(self.plp[x])) )
+ * return pileups
+ */
+ __pyx_t_2 = ((struct __pyx_obj_9csamtools_PileupProxy *)__pyx_v_self)->n_pu;
+ for (__pyx_v_x = 0; __pyx_v_x < __pyx_t_2; __pyx_v_x++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2441
+ * # out of sync.
+ * for x from 0 <= x < self.n_pu:
+ * pileups.append( makePileupRead( &(self.plp[x])) ) # <<<<<<<<<<<<<<
+ * return pileups
+ *
+ */
+ if (unlikely(__pyx_v_pileups == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'append'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2441; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_1 = __pyx_f_9csamtools_makePileupRead((&(((struct __pyx_obj_9csamtools_PileupProxy *)__pyx_v_self)->plp[__pyx_v_x]))); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2441; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyList_Append(__pyx_v_pileups, __pyx_t_1); if (unlikely(__pyx_t_3 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2441; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2442
+ * for x from 0 <= x < self.n_pu:
+ * pileups.append( makePileupRead( &(self.plp[x])) )
+ * return pileups # <<<<<<<<<<<<<<
+ *
+ * cdef class PileupRead:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_v_pileups));
+ __pyx_r = ((PyObject *)__pyx_v_pileups);
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupProxy.pileups.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_pileups);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2457
+ * uint32_t _is_tail
+ *
+ * def __init__(self): # <<<<<<<<<<<<<<
+ * raise TypeError("This class cannot be instantiated from Python")
+ *
+ */
+
+static int __pyx_pf_9csamtools_10PileupRead_0__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_10PileupRead_0__init__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__init__");
+ __Pyx_TraceCall("__init__", __pyx_f[0], 2457);
+ if (unlikely(PyTuple_GET_SIZE(__pyx_args) > 0)) {
+ __Pyx_RaiseArgtupleInvalid("__init__", 1, 0, 0, PyTuple_GET_SIZE(__pyx_args)); return -1;}
+ if (unlikely(__pyx_kwds) && unlikely(PyDict_Size(__pyx_kwds) > 0) && unlikely(!__Pyx_CheckKeywordStrings(__pyx_kwds, "__init__", 0))) return -1;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2458
+ *
+ * def __init__(self):
+ * raise TypeError("This class cannot be instantiated from Python") # <<<<<<<<<<<<<<
+ *
+ * def __str__(self):
+ */
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_TypeError, ((PyObject *)__pyx_k_tuple_148), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2458; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2458; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupRead.__init__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2460
+ * raise TypeError("This class cannot be instantiated from Python")
+ *
+ * def __str__(self): # <<<<<<<<<<<<<<
+ * return "\t".join( map(str, (self.alignment, self.qpos, self.indel, self.level, self.is_del, self.is_head, self.is_tail ) ) )
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_10PileupRead_1__str__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_10PileupRead_1__str__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ 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;
+ PyObject *__pyx_t_7 = NULL;
+ PyObject *__pyx_t_8 = NULL;
+ PyObject *__pyx_t_9 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__str__");
+ __Pyx_TraceCall("__str__", __pyx_f[0], 2460);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2461
+ *
+ * def __str__(self):
+ * return "\t".join( map(str, (self.alignment, self.qpos, self.indel, self.level, self.is_del, self.is_head, self.is_tail ) ) ) # <<<<<<<<<<<<<<
+ *
+ * property alignment:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_1), __pyx_n_s__join); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__alignment); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__qpos); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__indel); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__level); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_6 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__is_del); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __pyx_t_7 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__is_head); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+ __pyx_t_8 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__is_tail); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+ __pyx_t_9 = PyTuple_New(7); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_9));
+ PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ PyTuple_SET_ITEM(__pyx_t_9, 1, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ PyTuple_SET_ITEM(__pyx_t_9, 2, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ PyTuple_SET_ITEM(__pyx_t_9, 3, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ PyTuple_SET_ITEM(__pyx_t_9, 4, __pyx_t_6);
+ __Pyx_GIVEREF(__pyx_t_6);
+ PyTuple_SET_ITEM(__pyx_t_9, 5, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ PyTuple_SET_ITEM(__pyx_t_9, 6, __pyx_t_8);
+ __Pyx_GIVEREF(__pyx_t_8);
+ __pyx_t_2 = 0;
+ __pyx_t_3 = 0;
+ __pyx_t_4 = 0;
+ __pyx_t_5 = 0;
+ __pyx_t_6 = 0;
+ __pyx_t_7 = 0;
+ __pyx_t_8 = 0;
+ __pyx_t_8 = PyTuple_New(2); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ __Pyx_INCREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_8, 0, ((PyObject *)((PyObject*)(&PyString_Type))));
+ __Pyx_GIVEREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_8, 1, ((PyObject *)__pyx_t_9));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_9));
+ __pyx_t_9 = 0;
+ __pyx_t_9 = PyObject_Call(__pyx_builtin_map, ((PyObject *)__pyx_t_8), NULL); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+ __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0;
+ __pyx_t_8 = PyTuple_New(1); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_8));
+ PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_9);
+ __Pyx_GIVEREF(__pyx_t_9);
+ __pyx_t_9 = 0;
+ __pyx_t_9 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_8), NULL); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2461; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_8)); __pyx_t_8 = 0;
+ __pyx_r = __pyx_t_9;
+ __pyx_t_9 = 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_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_XDECREF(__pyx_t_8);
+ __Pyx_XDECREF(__pyx_t_9);
+ __Pyx_AddTraceback("csamtools.PileupRead.__str__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2465
+ * property alignment:
+ * """a :class:`pysam.AlignedRead` object of the aligned read"""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * return self._alignment
+ * property qpos:
+ */
+
+static PyObject *__pyx_pf_9csamtools_10PileupRead_9alignment_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_10PileupRead_9alignment_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2465);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2466
+ * """a :class:`pysam.AlignedRead` object of the aligned read"""
+ * def __get__(self):
+ * return self._alignment # <<<<<<<<<<<<<<
+ * property qpos:
+ * """position of the read base at the pileup site, 0-based"""
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)((struct __pyx_obj_9csamtools_PileupRead *)__pyx_v_self)->_alignment));
+ __pyx_r = ((PyObject *)((struct __pyx_obj_9csamtools_PileupRead *)__pyx_v_self)->_alignment);
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2469
+ * property qpos:
+ * """position of the read base at the pileup site, 0-based"""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * return self._qpos
+ * property indel:
+ */
+
+static PyObject *__pyx_pf_9csamtools_10PileupRead_4qpos_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_10PileupRead_4qpos_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2469);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2470
+ * """position of the read base at the pileup site, 0-based"""
+ * def __get__(self):
+ * return self._qpos # <<<<<<<<<<<<<<
+ * property indel:
+ * """indel length; 0 for no indel, positive for ins and negative for del"""
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_int32_t(((struct __pyx_obj_9csamtools_PileupRead *)__pyx_v_self)->_qpos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2470; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupRead.qpos.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2473
+ * property indel:
+ * """indel length; 0 for no indel, positive for ins and negative for del"""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * return self._indel
+ * property is_del:
+ */
+
+static PyObject *__pyx_pf_9csamtools_10PileupRead_5indel_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_10PileupRead_5indel_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2473);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2474
+ * """indel length; 0 for no indel, positive for ins and negative for del"""
+ * def __get__(self):
+ * return self._indel # <<<<<<<<<<<<<<
+ * property is_del:
+ * """1 iff the base on the padded read is a deletion"""
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_PileupRead *)__pyx_v_self)->_indel); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2474; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupRead.indel.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2477
+ * property is_del:
+ * """1 iff the base on the padded read is a deletion"""
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * return self._is_del
+ * property is_head:
+ */
+
+static PyObject *__pyx_pf_9csamtools_10PileupRead_6is_del_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_10PileupRead_6is_del_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2477);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2478
+ * """1 iff the base on the padded read is a deletion"""
+ * def __get__(self):
+ * return self._is_del # <<<<<<<<<<<<<<
+ * property is_head:
+ * def __get__(self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(((struct __pyx_obj_9csamtools_PileupRead *)__pyx_v_self)->_is_del); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2478; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupRead.is_del.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2480
+ * return self._is_del
+ * property is_head:
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * return self._is_head
+ * property is_tail:
+ */
+
+static PyObject *__pyx_pf_9csamtools_10PileupRead_7is_head_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_10PileupRead_7is_head_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2480);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2481
+ * property is_head:
+ * def __get__(self):
+ * return self._is_head # <<<<<<<<<<<<<<
+ * property is_tail:
+ * def __get__(self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(((struct __pyx_obj_9csamtools_PileupRead *)__pyx_v_self)->_is_head); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2481; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupRead.is_head.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2483
+ * return self._is_head
+ * property is_tail:
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * return self._is_tail
+ * property level:
+ */
+
+static PyObject *__pyx_pf_9csamtools_10PileupRead_7is_tail_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_10PileupRead_7is_tail_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2483);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2484
+ * property is_tail:
+ * def __get__(self):
+ * return self._is_tail # <<<<<<<<<<<<<<
+ * property level:
+ * def __get__(self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = __Pyx_PyInt_to_py_uint32_t(((struct __pyx_obj_9csamtools_PileupRead *)__pyx_v_self)->_is_tail); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2484; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupRead.is_tail.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2486
+ * return self._is_tail
+ * property level:
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * return self._level
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_10PileupRead_5level_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_10PileupRead_5level_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2486);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2487
+ * property level:
+ * def __get__(self):
+ * return self._level # <<<<<<<<<<<<<<
+ *
+ * class Outs:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_PileupRead *)__pyx_v_self)->_level); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2487; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.PileupRead.level.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2491
+ * class Outs:
+ * '''http://mail.python.org/pipermail/python-list/2000-June/038406.html'''
+ * def __init__(self, id = 1): # <<<<<<<<<<<<<<
+ * self.streams = []
+ * self.id = id
+ */
+
+static PyObject *__pyx_pf_9csamtools_4Outs_0__init__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static PyMethodDef __pyx_mdef_9csamtools_4Outs_0__init__ = {__Pyx_NAMESTR("__init__"), (PyCFunction)__pyx_pf_9csamtools_4Outs_0__init__, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(0)};
+static PyObject *__pyx_pf_9csamtools_4Outs_0__init__(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_self = 0;
+ PyObject *__pyx_v_id = 0;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__self,&__pyx_n_s__id,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__init__");
+ __Pyx_TraceCall("__init__", __pyx_f[0], 2491);
+ __pyx_self = __pyx_self;
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[2] = {0,0};
+ values[1] = ((PyObject *)__pyx_int_1);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__self);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__id);
+ if (value) { values[1] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "__init__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2491; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_self = values[0];
+ __pyx_v_id = values[1];
+ } else {
+ __pyx_v_id = ((PyObject *)__pyx_int_1);
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: __pyx_v_id = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: __pyx_v_self = PyTuple_GET_ITEM(__pyx_args, 0);
+ break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__init__", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2491; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Outs.__init__");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2492
+ * '''http://mail.python.org/pipermail/python-list/2000-June/038406.html'''
+ * def __init__(self, id = 1):
+ * self.streams = [] # <<<<<<<<<<<<<<
+ * self.id = id
+ *
+ */
+ __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2492; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ if (PyObject_SetAttr(__pyx_v_self, __pyx_n_s__streams, ((PyObject *)__pyx_t_1)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2492; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2493
+ * def __init__(self, id = 1):
+ * self.streams = []
+ * self.id = id # <<<<<<<<<<<<<<
+ *
+ * def setdevice(self, filename):
+ */
+ if (PyObject_SetAttr(__pyx_v_self, __pyx_n_s__id, __pyx_v_id) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2493; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.Outs.__init__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2495
+ * self.id = id
+ *
+ * def setdevice(self, filename): # <<<<<<<<<<<<<<
+ * '''open an existing file, like "/dev/null"'''
+ * fd = os.open(filename, os.O_WRONLY)
+ */
+
+static PyObject *__pyx_pf_9csamtools_4Outs_1setdevice(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_4Outs_1setdevice[] = "open an existing file, like \"/dev/null\"";
+static PyMethodDef __pyx_mdef_9csamtools_4Outs_1setdevice = {__Pyx_NAMESTR("setdevice"), (PyCFunction)__pyx_pf_9csamtools_4Outs_1setdevice, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_4Outs_1setdevice)};
+static PyObject *__pyx_pf_9csamtools_4Outs_1setdevice(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_self = 0;
+ PyObject *__pyx_v_filename = 0;
+ PyObject *__pyx_v_fd;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__self,&__pyx_n_s__filename,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("setdevice");
+ __Pyx_TraceCall("setdevice", __pyx_f[0], 2495);
+ __pyx_self = __pyx_self;
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[2] = {0,0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__self);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__filename);
+ if (likely(values[1])) kw_args--;
+ else {
+ __Pyx_RaiseArgtupleInvalid("setdevice", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2495; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "setdevice") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2495; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_self = values[0];
+ __pyx_v_filename = values[1];
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 2) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_self = PyTuple_GET_ITEM(__pyx_args, 0);
+ __pyx_v_filename = PyTuple_GET_ITEM(__pyx_args, 1);
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("setdevice", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2495; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Outs.setdevice");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+ __pyx_v_fd = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2497
+ * def setdevice(self, filename):
+ * '''open an existing file, like "/dev/null"'''
+ * fd = os.open(filename, os.O_WRONLY) # <<<<<<<<<<<<<<
+ * self.setfd(fd)
+ *
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2497; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__open); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2497; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2497; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__O_WRONLY); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2497; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2497; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_filename);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_filename);
+ __Pyx_GIVEREF(__pyx_v_filename);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2497; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_v_fd);
+ __pyx_v_fd = __pyx_t_3;
+ __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2498
+ * '''open an existing file, like "/dev/null"'''
+ * fd = os.open(filename, os.O_WRONLY)
+ * self.setfd(fd) # <<<<<<<<<<<<<<
+ *
+ * def setfile(self, filename):
+ */
+ __pyx_t_3 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__setfd); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2498; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2498; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_fd);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_fd);
+ __Pyx_GIVEREF(__pyx_v_fd);
+ __pyx_t_2 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2498; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.Outs.setdevice");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_fd);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2500
+ * self.setfd(fd)
+ *
+ * def setfile(self, filename): # <<<<<<<<<<<<<<
+ * '''open a new file.'''
+ * fd = os.open(filename, os.O_WRONLY|os.O_CREAT, 0660);
+ */
+
+static PyObject *__pyx_pf_9csamtools_4Outs_2setfile(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_4Outs_2setfile[] = "open a new file.";
+static PyMethodDef __pyx_mdef_9csamtools_4Outs_2setfile = {__Pyx_NAMESTR("setfile"), (PyCFunction)__pyx_pf_9csamtools_4Outs_2setfile, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_4Outs_2setfile)};
+static PyObject *__pyx_pf_9csamtools_4Outs_2setfile(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_self = 0;
+ PyObject *__pyx_v_filename = 0;
+ PyObject *__pyx_v_fd;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ PyObject *__pyx_t_4 = NULL;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__self,&__pyx_n_s__filename,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("setfile");
+ __Pyx_TraceCall("setfile", __pyx_f[0], 2500);
+ __pyx_self = __pyx_self;
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[2] = {0,0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__self);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__filename);
+ if (likely(values[1])) kw_args--;
+ else {
+ __Pyx_RaiseArgtupleInvalid("setfile", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2500; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "setfile") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2500; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_self = values[0];
+ __pyx_v_filename = values[1];
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 2) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_self = PyTuple_GET_ITEM(__pyx_args, 0);
+ __pyx_v_filename = PyTuple_GET_ITEM(__pyx_args, 1);
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("setfile", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2500; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Outs.setfile");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+ __pyx_v_fd = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2502
+ * def setfile(self, filename):
+ * '''open a new file.'''
+ * fd = os.open(filename, os.O_WRONLY|os.O_CREAT, 0660); # <<<<<<<<<<<<<<
+ * self.setfd(fd)
+ *
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2502; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__open); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2502; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2502; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__O_WRONLY); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2502; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2502; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_4 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__O_CREAT); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2502; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyNumber_Or(__pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2502; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __pyx_t_4 = PyTuple_New(3); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2502; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_INCREF(__pyx_v_filename);
+ PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_v_filename);
+ __Pyx_GIVEREF(__pyx_v_filename);
+ PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __Pyx_INCREF(__pyx_int_0660);
+ PyTuple_SET_ITEM(__pyx_t_4, 2, __pyx_int_0660);
+ __Pyx_GIVEREF(__pyx_int_0660);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2502; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_fd);
+ __pyx_v_fd = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2503
+ * '''open a new file.'''
+ * fd = os.open(filename, os.O_WRONLY|os.O_CREAT, 0660);
+ * self.setfd(fd) # <<<<<<<<<<<<<<
+ *
+ * def setfd(self, fd):
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__setfd); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_INCREF(__pyx_v_fd);
+ PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_v_fd);
+ __Pyx_GIVEREF(__pyx_v_fd);
+ __pyx_t_2 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2503; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_AddTraceback("csamtools.Outs.setfile");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_fd);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2505
+ * self.setfd(fd)
+ *
+ * def setfd(self, fd): # <<<<<<<<<<<<<<
+ * ofd = os.dup(self.id) # Save old stream on new unit.
+ * self.streams.append(ofd)
+ */
+
+static PyObject *__pyx_pf_9csamtools_4Outs_3setfd(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static PyMethodDef __pyx_mdef_9csamtools_4Outs_3setfd = {__Pyx_NAMESTR("setfd"), (PyCFunction)__pyx_pf_9csamtools_4Outs_3setfd, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(0)};
+static PyObject *__pyx_pf_9csamtools_4Outs_3setfd(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_self = 0;
+ PyObject *__pyx_v_fd = 0;
+ PyObject *__pyx_v_ofd;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__self,&__pyx_n_s__fd,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("setfd");
+ __Pyx_TraceCall("setfd", __pyx_f[0], 2505);
+ __pyx_self = __pyx_self;
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[2] = {0,0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__self);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__fd);
+ if (likely(values[1])) kw_args--;
+ else {
+ __Pyx_RaiseArgtupleInvalid("setfd", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2505; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "setfd") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2505; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_self = values[0];
+ __pyx_v_fd = values[1];
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 2) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_self = PyTuple_GET_ITEM(__pyx_args, 0);
+ __pyx_v_fd = PyTuple_GET_ITEM(__pyx_args, 1);
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("setfd", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2505; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.Outs.setfd");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+ __pyx_v_ofd = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2506
+ *
+ * def setfd(self, fd):
+ * ofd = os.dup(self.id) # Save old stream on new unit. # <<<<<<<<<<<<<<
+ * self.streams.append(ofd)
+ * sys.stdout.flush() # Buffered data goes to old stream.
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2506; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__dup); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2506; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__id); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2506; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2506; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2506; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_v_ofd);
+ __pyx_v_ofd = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2507
+ * def setfd(self, fd):
+ * ofd = os.dup(self.id) # Save old stream on new unit.
+ * self.streams.append(ofd) # <<<<<<<<<<<<<<
+ * sys.stdout.flush() # Buffered data goes to old stream.
+ * os.dup2(fd, self.id) # Open unit 1 on new stream.
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__streams); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2507; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = __Pyx_PyObject_Append(__pyx_t_1, __pyx_v_ofd); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2507; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2508
+ * ofd = os.dup(self.id) # Save old stream on new unit.
+ * self.streams.append(ofd)
+ * sys.stdout.flush() # Buffered data goes to old stream. # <<<<<<<<<<<<<<
+ * os.dup2(fd, self.id) # Open unit 1 on new stream.
+ * os.close(fd) # Close other unit (look out, caller.)
+ */
+ __pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__sys); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__stdout); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__flush); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2508; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2509
+ * self.streams.append(ofd)
+ * sys.stdout.flush() # Buffered data goes to old stream.
+ * os.dup2(fd, self.id) # Open unit 1 on new stream. # <<<<<<<<<<<<<<
+ * os.close(fd) # Close other unit (look out, caller.)
+ *
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2509; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__dup2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2509; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__id); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2509; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2509; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(__pyx_v_fd);
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_fd);
+ __Pyx_GIVEREF(__pyx_v_fd);
+ PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2509; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2510
+ * sys.stdout.flush() # Buffered data goes to old stream.
+ * os.dup2(fd, self.id) # Open unit 1 on new stream.
+ * os.close(fd) # Close other unit (look out, caller.) # <<<<<<<<<<<<<<
+ *
+ * def restore(self):
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2510; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__close); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2510; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2510; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_fd);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_fd);
+ __Pyx_GIVEREF(__pyx_v_fd);
+ __pyx_t_3 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2510; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.Outs.setfd");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_ofd);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2512
+ * os.close(fd) # Close other unit (look out, caller.)
+ *
+ * def restore(self): # <<<<<<<<<<<<<<
+ * '''restore previous output stream'''
+ * if self.streams:
+ */
+
+static PyObject *__pyx_pf_9csamtools_4Outs_4restore(PyObject *__pyx_self, PyObject *__pyx_v_self); /*proto*/
+static char __pyx_doc_9csamtools_4Outs_4restore[] = "restore previous output stream";
+static PyMethodDef __pyx_mdef_9csamtools_4Outs_4restore = {__Pyx_NAMESTR("restore"), (PyCFunction)__pyx_pf_9csamtools_4Outs_4restore, METH_O, __Pyx_DOCSTR(__pyx_doc_9csamtools_4Outs_4restore)};
+static PyObject *__pyx_pf_9csamtools_4Outs_4restore(PyObject *__pyx_self, PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ PyObject *__pyx_t_3 = NULL;
+ PyObject *__pyx_t_4 = NULL;
+ PyObject *__pyx_t_5 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("restore");
+ __Pyx_TraceCall("restore", __pyx_f[0], 2512);
+ __pyx_self = __pyx_self;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2514
+ * def restore(self):
+ * '''restore previous output stream'''
+ * if self.streams: # <<<<<<<<<<<<<<
+ * # the following was not sufficient, hence flush both stderr and stdout
+ * # os.fsync( self.id )
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__streams); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2514; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2514; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2517
+ * # the following was not sufficient, hence flush both stderr and stdout
+ * # os.fsync( self.id )
+ * sys.stdout.flush() # <<<<<<<<<<<<<<
+ * sys.stderr.flush()
+ * os.dup2(self.streams[-1], self.id)
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__sys); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2517; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__stdout); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2517; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__flush); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2517; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2517; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2518
+ * # os.fsync( self.id )
+ * sys.stdout.flush()
+ * sys.stderr.flush() # <<<<<<<<<<<<<<
+ * os.dup2(self.streams[-1], self.id)
+ * os.close(self.streams[-1])
+ */
+ __pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__sys); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2518; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__stderr); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2518; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__flush); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2518; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2518; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2519
+ * sys.stdout.flush()
+ * sys.stderr.flush()
+ * os.dup2(self.streams[-1], self.id) # <<<<<<<<<<<<<<
+ * os.close(self.streams[-1])
+ * del self.streams[-1]
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2519; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__dup2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2519; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__streams); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2519; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_4 = __Pyx_GetItemInt(__pyx_t_1, -1, sizeof(long), PyInt_FromLong); if (!__pyx_t_4) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2519; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__id); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2519; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2519; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_4 = 0;
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2519; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2520
+ * sys.stderr.flush()
+ * os.dup2(self.streams[-1], self.id)
+ * os.close(self.streams[-1]) # <<<<<<<<<<<<<<
+ * del self.streams[-1]
+ *
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2520; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__close); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2520; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__streams); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2520; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = __Pyx_GetItemInt(__pyx_t_1, -1, sizeof(long), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2520; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2520; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2520; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2521
+ * os.dup2(self.streams[-1], self.id)
+ * os.close(self.streams[-1])
+ * del self.streams[-1] # <<<<<<<<<<<<<<
+ *
+ * def _samtools_dispatch( method,
+ */
+ __pyx_t_3 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__streams); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2521; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (__Pyx_DelItemInt(__pyx_t_3, -1, sizeof(long), PyInt_FromLong) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2521; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_AddTraceback("csamtools.Outs.restore");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2523
+ * del self.streams[-1]
+ *
+ * def _samtools_dispatch( method, # <<<<<<<<<<<<<<
+ * args = (),
+ * catch_stdout = True,
+ */
+
+static PyObject *__pyx_pf_9csamtools_0_samtools_dispatch(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_0_samtools_dispatch[] = "call ``method`` in samtools providing arguments in args.\n \n .. note:: \n This method redirects stdout and stderr to capture it \n from samtools. If for some reason stdout/stderr disappears\n the reason might be in this method.\n\n .. note::\n The current implementation might only work on linux.\n \n .. note:: \n This method captures stdout and stderr using temporary files, \n which are then read into memory in their entirety. This method\n is slow and might cause large memory overhead. \n\n See http://bytes.com/topic/c/answers/487231-how-capture-stdout-temporarily\n on the topic of redirecting stderr/stdout.\n ";
+static PyMethodDef __pyx_mdef_9csamtools_0_samtools_dispatch = {__Pyx_NAMESTR("_samtools_dispatch"), (PyCFunction)__pyx_pf_9csamtools_0_samtools_dispatch, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_0_samtools_dispatch)};
+static PyObject *__pyx_pf_9csamtools_0_samtools_dispatch(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_method = 0;
+ PyObject *__pyx_v_args = 0;
+ PyObject *__pyx_v_catch_stdout = 0;
+ PyObject *__pyx_v_catch_stderr = 0;
+ PyObject *__pyx_v_stderr_h;
+ PyObject *__pyx_v_stderr_f;
+ PyObject *__pyx_v_stderr_save;
+ PyObject *__pyx_v_stdout_h;
+ PyObject *__pyx_v_stdout_f;
+ PyObject *__pyx_v_stdout_save;
+ char **__pyx_v_cargs;
+ int __pyx_v_i;
+ int __pyx_v_n;
+ int __pyx_v_retval;
+ PyObject *__pyx_v_out_stdout;
+ PyObject *__pyx_v_out_stderr;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ PyObject *__pyx_t_3 = NULL;
+ PyObject *__pyx_t_4 = NULL;
+ int __pyx_t_5;
+ PyObject *__pyx_t_6 = NULL;
+ Py_ssize_t __pyx_t_7;
+ char *__pyx_t_8;
+ int __pyx_t_9;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__method,&__pyx_n_s__args,&__pyx_n_s__catch_stdout,&__pyx_n_s__catch_stderr,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("_samtools_dispatch");
+ __Pyx_TraceCall("_samtools_dispatch", __pyx_f[0], 2523);
+ __pyx_self = __pyx_self;
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[4] = {0,0,0,0};
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2524
+ *
+ * def _samtools_dispatch( method,
+ * args = (), # <<<<<<<<<<<<<<
+ * catch_stdout = True,
+ * catch_stderr = False,
+ */
+ values[1] = ((PyObject *)__pyx_empty_tuple);
+ values[2] = __pyx_k_149;
+ values[3] = __pyx_k_150;
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ 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;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__method);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__args);
+ if (value) { values[1] = value; kw_args--; }
+ }
+ case 2:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__catch_stdout);
+ if (value) { values[2] = value; kw_args--; }
+ }
+ case 3:
+ if (kw_args > 0) {
+ PyObject* value = PyDict_GetItem(__pyx_kwds, __pyx_n_s__catch_stderr);
+ if (value) { values[3] = value; kw_args--; }
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "_samtools_dispatch") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2523; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_method = values[0];
+ __pyx_v_args = values[1];
+ __pyx_v_catch_stdout = values[2];
+ __pyx_v_catch_stderr = values[3];
+ } else {
+ __pyx_v_args = ((PyObject *)__pyx_empty_tuple);
+ __pyx_v_catch_stdout = __pyx_k_149;
+ __pyx_v_catch_stderr = __pyx_k_150;
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 4: __pyx_v_catch_stderr = PyTuple_GET_ITEM(__pyx_args, 3);
+ case 3: __pyx_v_catch_stdout = PyTuple_GET_ITEM(__pyx_args, 2);
+ case 2: __pyx_v_args = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: __pyx_v_method = PyTuple_GET_ITEM(__pyx_args, 0);
+ break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("_samtools_dispatch", 0, 1, 4, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2523; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools._samtools_dispatch");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+ __Pyx_INCREF(__pyx_v_args);
+ __pyx_v_stderr_h = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_stderr_f = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_stderr_save = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_stdout_h = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_stdout_f = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_stdout_save = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_out_stdout = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_v_out_stderr = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2551
+ *
+ * # some special cases
+ * if method == "index": # <<<<<<<<<<<<<<
+ * if not os.path.exists( args[0] ):
+ * raise IOError( "No such file or directory: '%s'" % args[0] )
+ */
+ __pyx_t_1 = PyObject_RichCompare(__pyx_v_method, ((PyObject *)__pyx_n_s__index), Py_EQ); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2551; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_1); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2551; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (__pyx_t_2) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2552
+ * # some special cases
+ * if method == "index":
+ * if not os.path.exists( args[0] ): # <<<<<<<<<<<<<<
+ * raise IOError( "No such file or directory: '%s'" % args[0] )
+ *
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2552; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__path); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2552; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__exists); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2552; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = __Pyx_GetItemInt(__pyx_v_args, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2552; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyTuple_New(1); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2552; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2552; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_2 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2552; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_5 = (!__pyx_t_2);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2553
+ * if method == "index":
+ * if not os.path.exists( args[0] ):
+ * raise IOError( "No such file or directory: '%s'" % args[0] ) # <<<<<<<<<<<<<<
+ *
+ * # redirect stderr and stdout to file
+ */
+ __pyx_t_3 = __Pyx_GetItemInt(__pyx_v_args, 0, sizeof(long), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2553; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_151), __pyx_t_3); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2553; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2553; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, ((PyObject *)__pyx_t_4));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_4));
+ __pyx_t_4 = 0;
+ __pyx_t_4 = PyObject_Call(__pyx_builtin_IOError, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2553; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __Pyx_Raise(__pyx_t_4, 0, 0);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2553; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2556
+ *
+ * # redirect stderr and stdout to file
+ * if catch_stderr: # <<<<<<<<<<<<<<
+ * stderr_h, stderr_f = tempfile.mkstemp()
+ * stderr_save = Outs( sys.stderr.fileno() )
+ */
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_v_catch_stderr); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2556; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2557
+ * # redirect stderr and stdout to file
+ * if catch_stderr:
+ * stderr_h, stderr_f = tempfile.mkstemp() # <<<<<<<<<<<<<<
+ * stderr_save = Outs( sys.stderr.fileno() )
+ * stderr_save.setfd( stderr_h )
+ */
+ __pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__tempfile); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2557; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_4, __pyx_n_s__mkstemp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2557; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __pyx_t_4 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2557; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ if (PyTuple_CheckExact(__pyx_t_4) && likely(PyTuple_GET_SIZE(__pyx_t_4) == 2)) {
+ PyObject* tuple = __pyx_t_4;
+ __pyx_t_3 = PyTuple_GET_ITEM(tuple, 0); __Pyx_INCREF(__pyx_t_3);
+ __pyx_t_1 = PyTuple_GET_ITEM(tuple, 1); __Pyx_INCREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_stderr_h);
+ __pyx_v_stderr_h = __pyx_t_3;
+ __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_v_stderr_f);
+ __pyx_v_stderr_f = __pyx_t_1;
+ __pyx_t_1 = 0;
+ } else {
+ __pyx_t_6 = PyObject_GetIter(__pyx_t_4); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2557; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __pyx_t_3 = __Pyx_UnpackItem(__pyx_t_6, 0); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2557; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_1 = __Pyx_UnpackItem(__pyx_t_6, 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2557; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (__Pyx_EndUnpack(__pyx_t_6, 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2557; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __Pyx_DECREF(__pyx_v_stderr_h);
+ __pyx_v_stderr_h = __pyx_t_3;
+ __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_v_stderr_f);
+ __pyx_v_stderr_f = __pyx_t_1;
+ __pyx_t_1 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2558
+ * if catch_stderr:
+ * stderr_h, stderr_f = tempfile.mkstemp()
+ * stderr_save = Outs( sys.stderr.fileno() ) # <<<<<<<<<<<<<<
+ * stderr_save.setfd( stderr_h )
+ *
+ */
+ __pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__Outs); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2558; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__sys); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2558; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__stderr); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2558; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__fileno); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2558; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2558; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2558; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_Call(__pyx_t_4, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2558; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_v_stderr_save);
+ __pyx_v_stderr_save = __pyx_t_3;
+ __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2559
+ * stderr_h, stderr_f = tempfile.mkstemp()
+ * stderr_save = Outs( sys.stderr.fileno() )
+ * stderr_save.setfd( stderr_h ) # <<<<<<<<<<<<<<
+ *
+ * if catch_stdout:
+ */
+ __pyx_t_3 = PyObject_GetAttr(__pyx_v_stderr_save, __pyx_n_s__setfd); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2559; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2559; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_stderr_h);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_stderr_h);
+ __Pyx_GIVEREF(__pyx_v_stderr_h);
+ __pyx_t_4 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2559; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2561
+ * stderr_save.setfd( stderr_h )
+ *
+ * if catch_stdout: # <<<<<<<<<<<<<<
+ * stdout_h, stdout_f = tempfile.mkstemp()
+ * stdout_save = Outs( sys.stdout.fileno() )
+ */
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_v_catch_stdout); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2561; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2562
+ *
+ * if catch_stdout:
+ * stdout_h, stdout_f = tempfile.mkstemp() # <<<<<<<<<<<<<<
+ * stdout_save = Outs( sys.stdout.fileno() )
+ * stdout_save.setfd( stdout_h )
+ */
+ __pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__tempfile); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2562; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_t_4, __pyx_n_s__mkstemp); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2562; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __pyx_t_4 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2562; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ if (PyTuple_CheckExact(__pyx_t_4) && likely(PyTuple_GET_SIZE(__pyx_t_4) == 2)) {
+ PyObject* tuple = __pyx_t_4;
+ __pyx_t_1 = PyTuple_GET_ITEM(tuple, 0); __Pyx_INCREF(__pyx_t_1);
+ __pyx_t_3 = PyTuple_GET_ITEM(tuple, 1); __Pyx_INCREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_stdout_h);
+ __pyx_v_stdout_h = __pyx_t_1;
+ __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_v_stdout_f);
+ __pyx_v_stdout_f = __pyx_t_3;
+ __pyx_t_3 = 0;
+ } else {
+ __pyx_t_6 = PyObject_GetIter(__pyx_t_4); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2562; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __pyx_t_1 = __Pyx_UnpackItem(__pyx_t_6, 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2562; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = __Pyx_UnpackItem(__pyx_t_6, 1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2562; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (__Pyx_EndUnpack(__pyx_t_6, 2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2562; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0;
+ __Pyx_DECREF(__pyx_v_stdout_h);
+ __pyx_v_stdout_h = __pyx_t_1;
+ __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_v_stdout_f);
+ __pyx_v_stdout_f = __pyx_t_3;
+ __pyx_t_3 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2563
+ * if catch_stdout:
+ * stdout_h, stdout_f = tempfile.mkstemp()
+ * stdout_save = Outs( sys.stdout.fileno() ) # <<<<<<<<<<<<<<
+ * stdout_save.setfd( stdout_h )
+ *
+ */
+ __pyx_t_4 = __Pyx_GetName(__pyx_m, __pyx_n_s__Outs); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2563; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__sys); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2563; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__stdout); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2563; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__fileno); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2563; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2563; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2563; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_4, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2563; __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_3)); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_v_stdout_save);
+ __pyx_v_stdout_save = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2564
+ * stdout_h, stdout_f = tempfile.mkstemp()
+ * stdout_save = Outs( sys.stdout.fileno() )
+ * stdout_save.setfd( stdout_h ) # <<<<<<<<<<<<<<
+ *
+ * # patch for `samtools view`
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_stdout_save, __pyx_n_s__setfd); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2564; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2564; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ __Pyx_INCREF(__pyx_v_stdout_h);
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_v_stdout_h);
+ __Pyx_GIVEREF(__pyx_v_stdout_h);
+ __pyx_t_4 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2564; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2569
+ * # samtools `view` closes stdout, from which I can not
+ * # recover. Thus redirect output to file with -o option.
+ * if method == "view": # <<<<<<<<<<<<<<
+ * if "-o" in args: raise ValueError("option -o is forbidden in samtools view")
+ * args = ( "-o", stdout_f ) + args
+ */
+ __pyx_t_4 = PyObject_RichCompare(__pyx_v_method, ((PyObject *)__pyx_n_s__view), Py_EQ); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2569; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2569; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2570
+ * # recover. Thus redirect output to file with -o option.
+ * if method == "view":
+ * if "-o" in args: raise ValueError("option -o is forbidden in samtools view") # <<<<<<<<<<<<<<
+ * args = ( "-o", stdout_f ) + args
+ *
+ */
+ __pyx_t_5 = ((PySequence_Contains(__pyx_v_args, ((PyObject *)__pyx_kp_s_152)))); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_5) {
+ __pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_154), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_Raise(__pyx_t_4, 0, 0);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L11;
+ }
+ __pyx_L11:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2571
+ * if method == "view":
+ * if "-o" in args: raise ValueError("option -o is forbidden in samtools view")
+ * args = ( "-o", stdout_f ) + args # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2571; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_152));
+ PyTuple_SET_ITEM(__pyx_t_4, 0, ((PyObject *)__pyx_kp_s_152));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_152));
+ __Pyx_INCREF(__pyx_v_stdout_f);
+ PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_v_stdout_f);
+ __Pyx_GIVEREF(__pyx_v_stdout_f);
+ __pyx_t_3 = PyNumber_Add(((PyObject *)__pyx_t_4), __pyx_v_args); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2571; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_args);
+ __pyx_v_args = __pyx_t_3;
+ __pyx_t_3 = 0;
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+ goto __pyx_L9;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2578
+ * cdef int i, n, retval
+ *
+ * n = len(args) # <<<<<<<<<<<<<<
+ * # allocate two more for first (dummy) argument (contains command)
+ * cargs = <char**>calloc( n+2, sizeof( char *) )
+ */
+ __pyx_t_7 = PyObject_Length(__pyx_v_args); if (unlikely(__pyx_t_7 == -1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2578; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_v_n = __pyx_t_7;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2580
+ * n = len(args)
+ * # allocate two more for first (dummy) argument (contains command)
+ * cargs = <char**>calloc( n+2, sizeof( char *) ) # <<<<<<<<<<<<<<
+ * cargs[0] = "samtools"
+ * cargs[1] = method
+ */
+ __pyx_v_cargs = ((char **)calloc((__pyx_v_n + 2), (sizeof(char *))));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2581
+ * # allocate two more for first (dummy) argument (contains command)
+ * cargs = <char**>calloc( n+2, sizeof( char *) )
+ * cargs[0] = "samtools" # <<<<<<<<<<<<<<
+ * cargs[1] = method
+ * for i from 0 <= i < n: cargs[i+2] = args[i]
+ */
+ (__pyx_v_cargs[0]) = __pyx_k__samtools;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2582
+ * cargs = <char**>calloc( n+2, sizeof( char *) )
+ * cargs[0] = "samtools"
+ * cargs[1] = method # <<<<<<<<<<<<<<
+ * for i from 0 <= i < n: cargs[i+2] = args[i]
+ * retval = pysam_dispatch(n+2, cargs)
+ */
+ __pyx_t_8 = PyBytes_AsString(__pyx_v_method); if (unlikely((!__pyx_t_8) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2582; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ (__pyx_v_cargs[1]) = __pyx_t_8;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2583
+ * cargs[0] = "samtools"
+ * cargs[1] = method
+ * for i from 0 <= i < n: cargs[i+2] = args[i] # <<<<<<<<<<<<<<
+ * retval = pysam_dispatch(n+2, cargs)
+ * free( cargs )
+ */
+ __pyx_t_9 = __pyx_v_n;
+ for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_9; __pyx_v_i++) {
+ __pyx_t_3 = __Pyx_GetItemInt(__pyx_v_args, __pyx_v_i, sizeof(int), PyInt_FromLong); if (!__pyx_t_3) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2583; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_8 = PyBytes_AsString(__pyx_t_3); if (unlikely((!__pyx_t_8) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2583; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ (__pyx_v_cargs[(__pyx_v_i + 2)]) = __pyx_t_8;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2584
+ * cargs[1] = method
+ * for i from 0 <= i < n: cargs[i+2] = args[i]
+ * retval = pysam_dispatch(n+2, cargs) # <<<<<<<<<<<<<<
+ * free( cargs )
+ *
+ */
+ __pyx_v_retval = pysam_dispatch((__pyx_v_n + 2), __pyx_v_cargs);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2585
+ * for i from 0 <= i < n: cargs[i+2] = args[i]
+ * retval = pysam_dispatch(n+2, cargs)
+ * free( cargs ) # <<<<<<<<<<<<<<
+ *
+ * # restore stdout/stderr. This will also flush, so
+ */
+ free(__pyx_v_cargs);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2589
+ * # restore stdout/stderr. This will also flush, so
+ * # needs to be before reading back the file contents
+ * if catch_stdout: # <<<<<<<<<<<<<<
+ * stdout_save.restore()
+ * out_stdout = open( stdout_f, "r").readlines()
+ */
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_v_catch_stdout); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2589; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2590
+ * # needs to be before reading back the file contents
+ * if catch_stdout:
+ * stdout_save.restore() # <<<<<<<<<<<<<<
+ * out_stdout = open( stdout_f, "r").readlines()
+ * os.remove( stdout_f )
+ */
+ __pyx_t_3 = PyObject_GetAttr(__pyx_v_stdout_save, __pyx_n_s__restore); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2590; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2590; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2591
+ * if catch_stdout:
+ * stdout_save.restore()
+ * out_stdout = open( stdout_f, "r").readlines() # <<<<<<<<<<<<<<
+ * os.remove( stdout_f )
+ * else:
+ */
+ __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2591; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_INCREF(__pyx_v_stdout_f);
+ PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_v_stdout_f);
+ __Pyx_GIVEREF(__pyx_v_stdout_f);
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__r));
+ PyTuple_SET_ITEM(__pyx_t_4, 1, ((PyObject *)__pyx_n_s__r));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__r));
+ __pyx_t_3 = PyObject_Call(__pyx_builtin_open, ((PyObject *)__pyx_t_4), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2591; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(((PyObject *)__pyx_t_4)); __pyx_t_4 = 0;
+ __pyx_t_4 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__readlines); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2591; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_Call(__pyx_t_4, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2591; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ __Pyx_DECREF(__pyx_v_out_stdout);
+ __pyx_v_out_stdout = __pyx_t_3;
+ __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2592
+ * stdout_save.restore()
+ * out_stdout = open( stdout_f, "r").readlines()
+ * os.remove( stdout_f ) # <<<<<<<<<<<<<<
+ * else:
+ * out_stdout = []
+ */
+ __pyx_t_3 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2592; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_4 = PyObject_GetAttr(__pyx_t_3, __pyx_n_s__remove); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2592; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2592; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ __Pyx_INCREF(__pyx_v_stdout_f);
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_v_stdout_f);
+ __Pyx_GIVEREF(__pyx_v_stdout_f);
+ __pyx_t_1 = PyObject_Call(__pyx_t_4, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2592; __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_3)); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ goto __pyx_L14;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2594
+ * os.remove( stdout_f )
+ * else:
+ * out_stdout = [] # <<<<<<<<<<<<<<
+ *
+ * if catch_stderr:
+ */
+ __pyx_t_1 = PyList_New(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2594; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(__pyx_v_out_stdout);
+ __pyx_v_out_stdout = ((PyObject *)__pyx_t_1);
+ __pyx_t_1 = 0;
+ }
+ __pyx_L14:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2596
+ * out_stdout = []
+ *
+ * if catch_stderr: # <<<<<<<<<<<<<<
+ * stderr_save.restore()
+ * out_stderr = open( stderr_f, "r").readlines()
+ */
+ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_v_catch_stderr); if (unlikely(__pyx_t_5 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2597
+ *
+ * if catch_stderr:
+ * stderr_save.restore() # <<<<<<<<<<<<<<
+ * out_stderr = open( stderr_f, "r").readlines()
+ * os.remove( stderr_f )
+ */
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_stderr_save, __pyx_n_s__restore); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2597; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2597; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2598
+ * if catch_stderr:
+ * stderr_save.restore()
+ * out_stderr = open( stderr_f, "r").readlines() # <<<<<<<<<<<<<<
+ * os.remove( stderr_f )
+ * else:
+ */
+ __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2598; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ __Pyx_INCREF(__pyx_v_stderr_f);
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_v_stderr_f);
+ __Pyx_GIVEREF(__pyx_v_stderr_f);
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__r));
+ PyTuple_SET_ITEM(__pyx_t_3, 1, ((PyObject *)__pyx_n_s__r));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__r));
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_open, ((PyObject *)__pyx_t_3), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2598; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__readlines); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2598; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2598; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_v_out_stderr);
+ __pyx_v_out_stderr = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2599
+ * stderr_save.restore()
+ * out_stderr = open( stderr_f, "r").readlines()
+ * os.remove( stderr_f ) # <<<<<<<<<<<<<<
+ * else:
+ * out_stderr = []
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s__os); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2599; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_3 = PyObject_GetAttr(__pyx_t_1, __pyx_n_s__remove); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2599; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = PyTuple_New(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2599; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_stderr_f);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_stderr_f);
+ __Pyx_GIVEREF(__pyx_v_stderr_f);
+ __pyx_t_4 = PyObject_Call(__pyx_t_3, ((PyObject *)__pyx_t_1), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2599; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ goto __pyx_L15;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2601
+ * os.remove( stderr_f )
+ * else:
+ * out_stderr = [] # <<<<<<<<<<<<<<
+ *
+ * return retval, out_stderr, out_stdout
+ */
+ __pyx_t_4 = PyList_New(0); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2601; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_DECREF(__pyx_v_out_stderr);
+ __pyx_v_out_stderr = ((PyObject *)__pyx_t_4);
+ __pyx_t_4 = 0;
+ }
+ __pyx_L15:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2603
+ * out_stderr = []
+ *
+ * return retval, out_stderr, out_stdout # <<<<<<<<<<<<<<
+ *
+ * cdef class SNPCall:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_4 = PyInt_FromLong(__pyx_v_retval); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2603; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_1 = PyTuple_New(3); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2603; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ __Pyx_INCREF(__pyx_v_out_stderr);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_out_stderr);
+ __Pyx_GIVEREF(__pyx_v_out_stderr);
+ __Pyx_INCREF(__pyx_v_out_stdout);
+ PyTuple_SET_ITEM(__pyx_t_1, 2, __pyx_v_out_stdout);
+ __Pyx_GIVEREF(__pyx_v_out_stdout);
+ __pyx_t_4 = 0;
+ __pyx_r = ((PyObject *)__pyx_t_1);
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_AddTraceback("csamtools._samtools_dispatch");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_stderr_h);
+ __Pyx_DECREF(__pyx_v_stderr_f);
+ __Pyx_DECREF(__pyx_v_stderr_save);
+ __Pyx_DECREF(__pyx_v_stdout_h);
+ __Pyx_DECREF(__pyx_v_stdout_f);
+ __Pyx_DECREF(__pyx_v_stdout_save);
+ __Pyx_DECREF(__pyx_v_out_stdout);
+ __Pyx_DECREF(__pyx_v_out_stderr);
+ __Pyx_DECREF(__pyx_v_args);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2618
+ * property tid:
+ * '''the chromosome ID as is defined in the header'''
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * return self._tid
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_7SNPCall_3tid_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7SNPCall_3tid_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2618);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2619
+ * '''the chromosome ID as is defined in the header'''
+ * def __get__(self):
+ * return self._tid # <<<<<<<<<<<<<<
+ *
+ * property pos:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_SNPCall *)__pyx_v_self)->_tid); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2619; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.SNPCall.tid.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2623
+ * property pos:
+ * '''nucleotide position of SNP.'''
+ * def __get__(self): return self._pos # <<<<<<<<<<<<<<
+ *
+ * property reference_base:
+ */
+
+static PyObject *__pyx_pf_9csamtools_7SNPCall_3pos_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7SNPCall_3pos_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2623);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_SNPCall *)__pyx_v_self)->_pos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2623; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.SNPCall.pos.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2627
+ * property reference_base:
+ * '''reference base at pos. ``N`` if no reference sequence supplied.'''
+ * def __get__(self): return PyString_FromStringAndSize( &self._reference_base, 1 ) # <<<<<<<<<<<<<<
+ *
+ * property genotype:
+ */
+
+static PyObject *__pyx_pf_9csamtools_7SNPCall_14reference_base_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7SNPCall_14reference_base_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2627);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyString_FromStringAndSize((&((struct __pyx_obj_9csamtools_SNPCall *)__pyx_v_self)->_reference_base), 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2627; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.SNPCall.reference_base.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2631
+ * property genotype:
+ * '''the genotype called.'''
+ * def __get__(self): return PyString_FromStringAndSize( &self._genotype, 1 ) # <<<<<<<<<<<<<<
+ *
+ * property consensus_quality:
+ */
+
+static PyObject *__pyx_pf_9csamtools_7SNPCall_8genotype_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7SNPCall_8genotype_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2631);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyString_FromStringAndSize((&((struct __pyx_obj_9csamtools_SNPCall *)__pyx_v_self)->_genotype), 1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2631; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.SNPCall.genotype.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2635
+ * property consensus_quality:
+ * '''the genotype quality (Phred-scaled).'''
+ * def __get__(self): return self._consensus_quality # <<<<<<<<<<<<<<
+ *
+ * property snp_quality:
+ */
+
+static PyObject *__pyx_pf_9csamtools_7SNPCall_17consensus_quality_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7SNPCall_17consensus_quality_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2635);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_SNPCall *)__pyx_v_self)->_consensus_quality); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2635; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.SNPCall.consensus_quality.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2639
+ * property snp_quality:
+ * '''the snp quality (Phred scaled) - probability of consensus being identical to reference sequence.'''
+ * def __get__(self): return self._snp_quality # <<<<<<<<<<<<<<
+ *
+ * property mapping_quality:
+ */
+
+static PyObject *__pyx_pf_9csamtools_7SNPCall_11snp_quality_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7SNPCall_11snp_quality_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2639);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_SNPCall *)__pyx_v_self)->_snp_quality); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2639; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.SNPCall.snp_quality.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2643
+ * property mapping_quality:
+ * '''the root mean square (rms) of the mapping quality of all reads involved in the call.'''
+ * def __get__(self): return self._rms_mapping_quality # <<<<<<<<<<<<<<
+ *
+ * property coverage:
+ */
+
+static PyObject *__pyx_pf_9csamtools_7SNPCall_15mapping_quality_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7SNPCall_15mapping_quality_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2643);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_SNPCall *)__pyx_v_self)->_rms_mapping_quality); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2643; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.SNPCall.mapping_quality.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2647
+ * property coverage:
+ * '''coverage or read depth - the number of reads involved in the call.'''
+ * def __get__(self): return self._coverage # <<<<<<<<<<<<<<
+ *
+ * def __str__(self):
+ */
+
+static PyObject *__pyx_pf_9csamtools_7SNPCall_8coverage_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7SNPCall_8coverage_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2647);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_SNPCall *)__pyx_v_self)->_coverage); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2647; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.SNPCall.coverage.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2649
+ * def __get__(self): return self._coverage
+ *
+ * def __str__(self): # <<<<<<<<<<<<<<
+ *
+ * return "\t".join( map(str, (
+ */
+
+static PyObject *__pyx_pf_9csamtools_7SNPCall_0__str__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_7SNPCall_0__str__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ 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;
+ PyObject *__pyx_t_7 = NULL;
+ PyObject *__pyx_t_8 = NULL;
+ PyObject *__pyx_t_9 = NULL;
+ PyObject *__pyx_t_10 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__str__");
+ __Pyx_TraceCall("__str__", __pyx_f[0], 2649);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2651
+ * def __str__(self):
+ *
+ * return "\t".join( map(str, ( # <<<<<<<<<<<<<<
+ * self.tid,
+ * self.pos,
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_1), __pyx_n_s__join); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2651; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2652
+ *
+ * return "\t".join( map(str, (
+ * self.tid, # <<<<<<<<<<<<<<
+ * self.pos,
+ * self.reference_base,
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__tid); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2652; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2653
+ * return "\t".join( map(str, (
+ * self.tid,
+ * self.pos, # <<<<<<<<<<<<<<
+ * self.reference_base,
+ * self.genotype,
+ */
+ __pyx_t_3 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__pos); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2653; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2654
+ * self.tid,
+ * self.pos,
+ * self.reference_base, # <<<<<<<<<<<<<<
+ * self.genotype,
+ * self.consensus_quality,
+ */
+ __pyx_t_4 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__reference_base); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2654; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2655
+ * self.pos,
+ * self.reference_base,
+ * self.genotype, # <<<<<<<<<<<<<<
+ * self.consensus_quality,
+ * self.snp_quality,
+ */
+ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__genotype); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2655; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2656
+ * self.reference_base,
+ * self.genotype,
+ * self.consensus_quality, # <<<<<<<<<<<<<<
+ * self.snp_quality,
+ * self.mapping_quality,
+ */
+ __pyx_t_6 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__consensus_quality); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2656; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2657
+ * self.genotype,
+ * self.consensus_quality,
+ * self.snp_quality, # <<<<<<<<<<<<<<
+ * self.mapping_quality,
+ * self.coverage ) ) )
+ */
+ __pyx_t_7 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__snp_quality); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2657; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2658
+ * self.consensus_quality,
+ * self.snp_quality,
+ * self.mapping_quality, # <<<<<<<<<<<<<<
+ * self.coverage ) ) )
+ *
+ */
+ __pyx_t_8 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__mapping_quality); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2658; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2659
+ * self.snp_quality,
+ * self.mapping_quality,
+ * self.coverage ) ) ) # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ __pyx_t_9 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__coverage); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2659; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+ __pyx_t_10 = PyTuple_New(8); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2652; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_10));
+ PyTuple_SET_ITEM(__pyx_t_10, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ PyTuple_SET_ITEM(__pyx_t_10, 1, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ PyTuple_SET_ITEM(__pyx_t_10, 2, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ PyTuple_SET_ITEM(__pyx_t_10, 3, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ PyTuple_SET_ITEM(__pyx_t_10, 4, __pyx_t_6);
+ __Pyx_GIVEREF(__pyx_t_6);
+ PyTuple_SET_ITEM(__pyx_t_10, 5, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ PyTuple_SET_ITEM(__pyx_t_10, 6, __pyx_t_8);
+ __Pyx_GIVEREF(__pyx_t_8);
+ PyTuple_SET_ITEM(__pyx_t_10, 7, __pyx_t_9);
+ __Pyx_GIVEREF(__pyx_t_9);
+ __pyx_t_2 = 0;
+ __pyx_t_3 = 0;
+ __pyx_t_4 = 0;
+ __pyx_t_5 = 0;
+ __pyx_t_6 = 0;
+ __pyx_t_7 = 0;
+ __pyx_t_8 = 0;
+ __pyx_t_9 = 0;
+ __pyx_t_9 = PyTuple_New(2); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2651; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_9));
+ __Pyx_INCREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_9, 0, ((PyObject *)((PyObject*)(&PyString_Type))));
+ __Pyx_GIVEREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_9, 1, ((PyObject *)__pyx_t_10));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_10));
+ __pyx_t_10 = 0;
+ __pyx_t_10 = PyObject_Call(__pyx_builtin_map, ((PyObject *)__pyx_t_9), NULL); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2651; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_10);
+ __Pyx_DECREF(((PyObject *)__pyx_t_9)); __pyx_t_9 = 0;
+ __pyx_t_9 = PyTuple_New(1); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2651; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_9));
+ PyTuple_SET_ITEM(__pyx_t_9, 0, __pyx_t_10);
+ __Pyx_GIVEREF(__pyx_t_10);
+ __pyx_t_10 = 0;
+ __pyx_t_10 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_9), NULL); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2651; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_10);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_9)); __pyx_t_9 = 0;
+ __pyx_r = __pyx_t_10;
+ __pyx_t_10 = 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_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_XDECREF(__pyx_t_8);
+ __Pyx_XDECREF(__pyx_t_9);
+ __Pyx_XDECREF(__pyx_t_10);
+ __Pyx_AddTraceback("csamtools.SNPCall.__str__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2680
+ * cdef IteratorColumn iter
+ *
+ * def __cinit__(self, # <<<<<<<<<<<<<<
+ * IteratorColumn iterator_column,
+ * **kwargs ):
+ */
+
+static int __pyx_pf_9csamtools_13SNPCallerBase_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_13SNPCallerBase_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_IteratorColumn *__pyx_v_iterator_column = 0;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ float __pyx_t_4;
+ int __pyx_t_5;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__iterator_column,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 2680);
+ __pyx_v_kwargs = PyDict_New(); if (unlikely(!__pyx_v_kwargs)) return -1;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[1] = {0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__iterator_column);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_kwargs, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2680; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)values[0]);
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 1) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)PyTuple_GET_ITEM(__pyx_args, 0));
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2680; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_AddTraceback("csamtools.SNPCallerBase.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_iterator_column), __pyx_ptype_9csamtools_IteratorColumn, 1, "iterator_column", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2681; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2684
+ * **kwargs ):
+ *
+ * self.iter = iterator_column # <<<<<<<<<<<<<<
+ * self.c = bam_maqcns_init()
+ *
+ */
+ __Pyx_INCREF(((PyObject *)__pyx_v_iterator_column));
+ __Pyx_GIVEREF(((PyObject *)__pyx_v_iterator_column));
+ __Pyx_GOTREF(((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->iter);
+ __Pyx_DECREF(((PyObject *)((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->iter));
+ ((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->iter = __pyx_v_iterator_column;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2685
+ *
+ * self.iter = iterator_column
+ * self.c = bam_maqcns_init() # <<<<<<<<<<<<<<
+ *
+ * # set the default parameterization according to
+ */
+ ((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->c = bam_maqcns_init();
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2691
+ *
+ * # new default mode for samtools >0.1.10
+ * self.c.errmod = kwargs.get( "errmod", BAM_ERRMOD_MAQ2 ) # <<<<<<<<<<<<<<
+ *
+ * self.c.min_baseQ = kwargs.get( "min_baseQ", 13 )
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2691; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_1 = PyInt_FromLong(BAM_ERRMOD_MAQ2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2691; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__errmod), __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2691; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __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 = 2691; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ ((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->c->errmod = __pyx_t_3;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2693
+ * self.c.errmod = kwargs.get( "errmod", BAM_ERRMOD_MAQ2 )
+ *
+ * self.c.min_baseQ = kwargs.get( "min_baseQ", 13 ) # <<<<<<<<<<<<<<
+ * # self.c.capQ_thres = kwargs.get( "capQ_threshold", 60 )
+ * self.c.n_hap = kwargs.get( "n_haplotypes", 2 )
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__min_baseQ), __pyx_int_13); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2693; __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 = 2693; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ ((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->c->min_baseQ = __pyx_t_3;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2695
+ * self.c.min_baseQ = kwargs.get( "min_baseQ", 13 )
+ * # self.c.capQ_thres = kwargs.get( "capQ_threshold", 60 )
+ * self.c.n_hap = kwargs.get( "n_haplotypes", 2 ) # <<<<<<<<<<<<<<
+ * self.c.het_rate = kwargs.get( "het_rate", 0.001 )
+ * self.c.theta = kwargs.get( "theta", 0.83 )
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2695; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__n_haplotypes), __pyx_int_2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2695; __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 = 2695; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ ((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->c->n_hap = __pyx_t_3;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2696
+ * # self.c.capQ_thres = kwargs.get( "capQ_threshold", 60 )
+ * self.c.n_hap = kwargs.get( "n_haplotypes", 2 )
+ * self.c.het_rate = kwargs.get( "het_rate", 0.001 ) # <<<<<<<<<<<<<<
+ * self.c.theta = kwargs.get( "theta", 0.83 )
+ *
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2696; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = PyFloat_FromDouble(0.001); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2696; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__het_rate), __pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2696; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = __pyx_PyFloat_AsDouble(__pyx_t_1); if (unlikely((__pyx_t_4 == (float)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2696; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ ((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->c->het_rate = __pyx_t_4;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2697
+ * self.c.n_hap = kwargs.get( "n_haplotypes", 2 )
+ * self.c.het_rate = kwargs.get( "het_rate", 0.001 )
+ * self.c.theta = kwargs.get( "theta", 0.83 ) # <<<<<<<<<<<<<<
+ *
+ * if self.c.errmod != BAM_ERRMOD_MAQ2:
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2697; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_1 = PyFloat_FromDouble(0.83); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2697; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__theta), __pyx_t_1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2697; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_4 = __pyx_PyFloat_AsDouble(__pyx_t_2); if (unlikely((__pyx_t_4 == (float)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2697; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ ((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->c->theta = __pyx_t_4;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2699
+ * self.c.theta = kwargs.get( "theta", 0.83 )
+ *
+ * if self.c.errmod != BAM_ERRMOD_MAQ2: # <<<<<<<<<<<<<<
+ * self.c.theta += 0.02
+ *
+ */
+ __pyx_t_5 = (((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->c->errmod != BAM_ERRMOD_MAQ2);
+ if (__pyx_t_5) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2700
+ *
+ * if self.c.errmod != BAM_ERRMOD_MAQ2:
+ * self.c.theta += 0.02 # <<<<<<<<<<<<<<
+ *
+ * # call prepare AFTER setting parameters
+ */
+ ((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->c->theta = (((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->c->theta + 0.02);
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2703
+ *
+ * # call prepare AFTER setting parameters
+ * bam_maqcns_prepare( self.c ) # <<<<<<<<<<<<<<
+ *
+ * def __dealloc__(self):
+ */
+ bam_maqcns_prepare(((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->c);
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.SNPCallerBase.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2705
+ * bam_maqcns_prepare( self.c )
+ *
+ * def __dealloc__(self): # <<<<<<<<<<<<<<
+ * bam_maqcns_destroy( self.c )
+ *
+ */
+
+static void __pyx_pf_9csamtools_13SNPCallerBase_1__dealloc__(PyObject *__pyx_v_self); /*proto*/
+static void __pyx_pf_9csamtools_13SNPCallerBase_1__dealloc__(PyObject *__pyx_v_self) {
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__dealloc__");
+ __Pyx_TraceCall("__dealloc__", __pyx_f[0], 2705);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2706
+ *
+ * def __dealloc__(self):
+ * bam_maqcns_destroy( self.c ) # <<<<<<<<<<<<<<
+ *
+ * cdef __dump( self, glf1_t * g, uint32_t cns, int rb ):
+ */
+ bam_maqcns_destroy(((struct __pyx_obj_9csamtools_SNPCallerBase *)__pyx_v_self)->c);
+
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2708
+ * bam_maqcns_destroy( self.c )
+ *
+ * cdef __dump( self, glf1_t * g, uint32_t cns, int rb ): # <<<<<<<<<<<<<<
+ * '''debugging output.'''
+ *
+ */
+
+static PyObject *__pyx_f_9csamtools_13SNPCallerBase___dump(struct __pyx_obj_9csamtools_SNPCallerBase *__pyx_v_self, glf1_t *__pyx_v_g, uint32_t __pyx_v_cns, int __pyx_v_rb) {
+ int __pyx_v_x;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ int __pyx_t_2;
+ PyObject *__pyx_t_3 = NULL;
+ PyObject *__pyx_t_4 = NULL;
+ PyObject *__pyx_t_5 = NULL;
+ PyObject *__pyx_t_6 = NULL;
+ PyObject *__pyx_t_7 = NULL;
+ 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;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__dump");
+ __Pyx_TraceCall("__dump", __pyx_f[0], 2708);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2711
+ * '''debugging output.'''
+ *
+ * pysam_dump_glf( g, self.c ); # <<<<<<<<<<<<<<
+ * print ""
+ * for x in range(self.iter.n_plp):
+ */
+ pysam_dump_glf(__pyx_v_g, __pyx_v_self->c);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2712
+ *
+ * pysam_dump_glf( g, self.c );
+ * print "" # <<<<<<<<<<<<<<
+ * for x in range(self.iter.n_plp):
+ * print "--> read %i %s %i" % (x,
+ */
+ if (__Pyx_PrintOne(0, ((PyObject *)__pyx_kp_s_12)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2712; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2713
+ * pysam_dump_glf( g, self.c );
+ * print ""
+ * for x in range(self.iter.n_plp): # <<<<<<<<<<<<<<
+ * print "--> read %i %s %i" % (x,
+ * bam1_qname(self.iter.plp[x].b),
+ */
+ __pyx_t_1 = __pyx_v_self->iter->n_plp;
+ for (__pyx_t_2 = 0; __pyx_t_2 < __pyx_t_1; __pyx_t_2+=1) {
+ __pyx_v_x = __pyx_t_2;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2714
+ * print ""
+ * for x in range(self.iter.n_plp):
+ * print "--> read %i %s %i" % (x, # <<<<<<<<<<<<<<
+ * bam1_qname(self.iter.plp[x].b),
+ * self.iter.plp[x].qpos,
+ */
+ __pyx_t_3 = PyInt_FromLong(__pyx_v_x); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2714; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2715
+ * for x in range(self.iter.n_plp):
+ * print "--> read %i %s %i" % (x,
+ * bam1_qname(self.iter.plp[x].b), # <<<<<<<<<<<<<<
+ * self.iter.plp[x].qpos,
+ * )
+ */
+ __pyx_t_4 = PyBytes_FromString(bam1_qname((__pyx_v_self->iter->plp[__pyx_v_x]).b)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2715; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2716
+ * print "--> read %i %s %i" % (x,
+ * bam1_qname(self.iter.plp[x].b),
+ * self.iter.plp[x].qpos, # <<<<<<<<<<<<<<
+ * )
+ *
+ */
+ __pyx_t_5 = __Pyx_PyInt_to_py_int32_t((__pyx_v_self->iter->plp[__pyx_v_x]).qpos); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2716; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_6 = PyTuple_New(3); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2714; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_6));
+ PyTuple_SET_ITEM(__pyx_t_6, 0, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ PyTuple_SET_ITEM(__pyx_t_6, 1, ((PyObject *)__pyx_t_4));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_4));
+ PyTuple_SET_ITEM(__pyx_t_6, 2, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ __pyx_t_3 = 0;
+ __pyx_t_4 = 0;
+ __pyx_t_5 = 0;
+ __pyx_t_5 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_156), ((PyObject *)__pyx_t_6)); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2714; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ __Pyx_DECREF(((PyObject *)__pyx_t_6)); __pyx_t_6 = 0;
+ if (__Pyx_PrintOne(0, ((PyObject *)__pyx_t_5)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2714; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2720
+ *
+ * print "pos=%i, cns=%i, q_r = %f, depth=%i, n=%i, rb=%i, cns-cq=%i %i %i %i" \
+ * % (self.iter.pos, # <<<<<<<<<<<<<<
+ * cns,
+ * self.c.q_r,
+ */
+ __pyx_t_5 = PyInt_FromLong(__pyx_v_self->iter->pos); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2720; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2721
+ * print "pos=%i, cns=%i, q_r = %f, depth=%i, n=%i, rb=%i, cns-cq=%i %i %i %i" \
+ * % (self.iter.pos,
+ * cns, # <<<<<<<<<<<<<<
+ * self.c.q_r,
+ * self.iter.n_plp,
+ */
+ __pyx_t_6 = __Pyx_PyInt_to_py_uint32_t(__pyx_v_cns); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2721; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2722
+ * % (self.iter.pos,
+ * cns,
+ * self.c.q_r, # <<<<<<<<<<<<<<
+ * self.iter.n_plp,
+ * self.iter.n_plp,
+ */
+ __pyx_t_4 = PyFloat_FromDouble(__pyx_v_self->c->q_r); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2722; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2723
+ * cns,
+ * self.c.q_r,
+ * self.iter.n_plp, # <<<<<<<<<<<<<<
+ * self.iter.n_plp,
+ * rb,
+ */
+ __pyx_t_3 = PyInt_FromLong(__pyx_v_self->iter->n_plp); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2723; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2724
+ * self.c.q_r,
+ * self.iter.n_plp,
+ * self.iter.n_plp, # <<<<<<<<<<<<<<
+ * rb,
+ * cns >> 8 & 0xff,
+ */
+ __pyx_t_7 = PyInt_FromLong(__pyx_v_self->iter->n_plp); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2724; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2725
+ * self.iter.n_plp,
+ * self.iter.n_plp,
+ * rb, # <<<<<<<<<<<<<<
+ * cns >> 8 & 0xff,
+ * cns >> 16 & 0xff,
+ */
+ __pyx_t_8 = PyInt_FromLong(__pyx_v_rb); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2725; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2726
+ * self.iter.n_plp,
+ * rb,
+ * cns >> 8 & 0xff, # <<<<<<<<<<<<<<
+ * cns >> 16 & 0xff,
+ * cns & 0xff,
+ */
+ __pyx_t_9 = PyInt_FromLong(((__pyx_v_cns >> 8) & 0xff)); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2726; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2727
+ * rb,
+ * cns >> 8 & 0xff,
+ * cns >> 16 & 0xff, # <<<<<<<<<<<<<<
+ * cns & 0xff,
+ * cns >> 28,
+ */
+ __pyx_t_10 = PyInt_FromLong(((__pyx_v_cns >> 16) & 0xff)); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2727; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_10);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2728
+ * cns >> 8 & 0xff,
+ * cns >> 16 & 0xff,
+ * cns & 0xff, # <<<<<<<<<<<<<<
+ * cns >> 28,
+ * )
+ */
+ __pyx_t_11 = PyInt_FromLong((__pyx_v_cns & 0xff)); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2728; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_11);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2729
+ * cns >> 16 & 0xff,
+ * cns & 0xff,
+ * cns >> 28, # <<<<<<<<<<<<<<
+ * )
+ *
+ */
+ __pyx_t_12 = PyInt_FromLong((__pyx_v_cns >> 28)); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2729; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_12);
+ __pyx_t_13 = PyTuple_New(10); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2720; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_13));
+ PyTuple_SET_ITEM(__pyx_t_13, 0, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ PyTuple_SET_ITEM(__pyx_t_13, 1, __pyx_t_6);
+ __Pyx_GIVEREF(__pyx_t_6);
+ PyTuple_SET_ITEM(__pyx_t_13, 2, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ PyTuple_SET_ITEM(__pyx_t_13, 3, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ PyTuple_SET_ITEM(__pyx_t_13, 4, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ PyTuple_SET_ITEM(__pyx_t_13, 5, __pyx_t_8);
+ __Pyx_GIVEREF(__pyx_t_8);
+ PyTuple_SET_ITEM(__pyx_t_13, 6, __pyx_t_9);
+ __Pyx_GIVEREF(__pyx_t_9);
+ PyTuple_SET_ITEM(__pyx_t_13, 7, __pyx_t_10);
+ __Pyx_GIVEREF(__pyx_t_10);
+ PyTuple_SET_ITEM(__pyx_t_13, 8, __pyx_t_11);
+ __Pyx_GIVEREF(__pyx_t_11);
+ PyTuple_SET_ITEM(__pyx_t_13, 9, __pyx_t_12);
+ __Pyx_GIVEREF(__pyx_t_12);
+ __pyx_t_5 = 0;
+ __pyx_t_6 = 0;
+ __pyx_t_4 = 0;
+ __pyx_t_3 = 0;
+ __pyx_t_7 = 0;
+ __pyx_t_8 = 0;
+ __pyx_t_9 = 0;
+ __pyx_t_10 = 0;
+ __pyx_t_11 = 0;
+ __pyx_t_12 = 0;
+ __pyx_t_12 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_157), ((PyObject *)__pyx_t_13)); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2720; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_12));
+ __Pyx_DECREF(((PyObject *)__pyx_t_13)); __pyx_t_13 = 0;
+ if (__Pyx_PrintOne(0, ((PyObject *)__pyx_t_12)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2719; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_12)); __pyx_t_12 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2732
+ * )
+ *
+ * printf("-------------------------------------\n"); # <<<<<<<<<<<<<<
+ * sys.stdout.flush()
+ *
+ */
+ printf(__pyx_k_158);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2733
+ *
+ * printf("-------------------------------------\n");
+ * sys.stdout.flush() # <<<<<<<<<<<<<<
+ *
+ * cdef class IteratorSNPCalls( SNPCallerBase ):
+ */
+ __pyx_t_12 = __Pyx_GetName(__pyx_m, __pyx_n_s__sys); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_12);
+ __pyx_t_13 = PyObject_GetAttr(__pyx_t_12, __pyx_n_s__stdout); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_13);
+ __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
+ __pyx_t_12 = PyObject_GetAttr(__pyx_t_13, __pyx_n_s__flush); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_12);
+ __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0;
+ __pyx_t_13 = PyObject_Call(__pyx_t_12, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2733; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_13);
+ __Pyx_DECREF(__pyx_t_12); __pyx_t_12 = 0;
+ __Pyx_DECREF(__pyx_t_13); __pyx_t_13 = 0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_7);
+ __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_AddTraceback("csamtools.SNPCallerBase.__dump");
+ __pyx_r = 0;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2749
+ * """
+ *
+ * def __cinit__(self, # <<<<<<<<<<<<<<
+ * IteratorColumn iterator_column,
+ * **kwargs ):
+ */
+
+static int __pyx_pf_9csamtools_16IteratorSNPCalls_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_16IteratorSNPCalls_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_IteratorColumn *__pyx_v_iterator_column = 0;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__iterator_column,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 2749);
+ __pyx_v_kwargs = PyDict_New(); if (unlikely(!__pyx_v_kwargs)) return -1;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[1] = {0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__iterator_column);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_kwargs, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2749; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)values[0]);
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 1) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)PyTuple_GET_ITEM(__pyx_args, 0));
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2749; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_AddTraceback("csamtools.IteratorSNPCalls.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_iterator_column), __pyx_ptype_9csamtools_IteratorColumn, 1, "iterator_column", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2750; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2753
+ * **kwargs ):
+ *
+ * assert self.iter.hasReference(), "IteratorSNPCalls requires an pileup iterator with reference sequence" # <<<<<<<<<<<<<<
+ *
+ * def __iter__(self):
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter), __pyx_n_s__hasReference); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2753; __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 = 2753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (unlikely(!__pyx_t_3)) {
+ PyErr_SetObject(PyExc_AssertionError, ((PyObject *)__pyx_kp_s_159));
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2753; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.IteratorSNPCalls.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2755
+ * assert self.iter.hasReference(), "IteratorSNPCalls requires an pileup iterator with reference sequence"
+ *
+ * def __iter__(self): # <<<<<<<<<<<<<<
+ * return self
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_16IteratorSNPCalls_1__iter__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_16IteratorSNPCalls_1__iter__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__iter__");
+ __Pyx_TraceCall("__iter__", __pyx_f[0], 2755);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2756
+ *
+ * def __iter__(self):
+ * return self # <<<<<<<<<<<<<<
+ *
+ * def __next__(self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_self);
+ __pyx_r = __pyx_v_self;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2758
+ * return self
+ *
+ * def __next__(self): # <<<<<<<<<<<<<<
+ * """python version of next().
+ * """
+ */
+
+static PyObject *__pyx_pf_9csamtools_16IteratorSNPCalls_2__next__(PyObject *__pyx_v_self); /*proto*/
+static char __pyx_doc_9csamtools_16IteratorSNPCalls_2__next__[] = "python version of next().\n ";
+struct wrapperbase __pyx_wrapperbase_9csamtools_16IteratorSNPCalls_2__next__;
+static PyObject *__pyx_pf_9csamtools_16IteratorSNPCalls_2__next__(PyObject *__pyx_v_self) {
+ char *__pyx_v_seq;
+ int __pyx_v_seq_len;
+ int __pyx_v_rb;
+ uint32_t __pyx_v_cns;
+ glf1_t *__pyx_v_g;
+ struct __pyx_obj_9csamtools_SNPCall *__pyx_v_call;
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ PyObject *__pyx_t_4 = NULL;
+ PyObject *__pyx_t_5 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__next__");
+ __Pyx_TraceCall("__next__", __pyx_f[0], 2758);
+ __pyx_v_call = ((struct __pyx_obj_9csamtools_SNPCall *)Py_None); __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2763
+ *
+ * # the following code was adapted from bam_plcmd.c:pileup_func()
+ * self.iter.cnext() # <<<<<<<<<<<<<<
+ *
+ * if self.iter.n_plp < 0:
+ */
+ ((struct __pyx_vtabstruct_9csamtools_IteratorColumn *)((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->__pyx_vtab)->cnext(((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2765
+ * self.iter.cnext()
+ *
+ * if self.iter.n_plp < 0: # <<<<<<<<<<<<<<
+ * raise ValueError("error during iteration" )
+ *
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->n_plp < 0);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2766
+ *
+ * if self.iter.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.plp == NULL:
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_160), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2768
+ * raise ValueError("error during iteration" )
+ *
+ * if self.iter.plp == NULL: # <<<<<<<<<<<<<<
+ * raise StopIteration
+ *
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->plp == NULL);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2769
+ *
+ * if self.iter.plp == NULL:
+ * raise StopIteration # <<<<<<<<<<<<<<
+ *
+ * cdef char * seq = self.iter.getSequence()
+ */
+ __Pyx_Raise(__pyx_builtin_StopIteration, 0, 0);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2769; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2771
+ * raise StopIteration
+ *
+ * cdef char * seq = self.iter.getSequence() # <<<<<<<<<<<<<<
+ * cdef int seq_len = self.iter.seq_len
+ *
+ */
+ __pyx_v_seq = ((struct __pyx_vtabstruct_9csamtools_IteratorColumn *)((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->__pyx_vtab)->getSequence(((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2772
+ *
+ * cdef char * seq = self.iter.getSequence()
+ * cdef int seq_len = self.iter.seq_len # <<<<<<<<<<<<<<
+ *
+ * assert seq != NULL
+ */
+ __pyx_t_2 = PyObject_GetAttr(((PyObject *)((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter), __pyx_n_s__seq_len); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2772; __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 = 2772; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_v_seq_len = __pyx_t_3;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2774
+ * cdef int seq_len = self.iter.seq_len
+ *
+ * assert seq != NULL # <<<<<<<<<<<<<<
+ *
+ * # reference base
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ if (unlikely(!(__pyx_v_seq != NULL))) {
+ PyErr_SetNone(PyExc_AssertionError);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2774; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2777
+ *
+ * # reference base
+ * if self.iter.pos >= seq_len: # <<<<<<<<<<<<<<
+ * raise ValueError( "position %i out of bounds on reference sequence (len=%i)" % (self.iter.pos, seq_len) )
+ *
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->pos >= __pyx_v_seq_len);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2778
+ * # reference base
+ * if self.iter.pos >= seq_len:
+ * raise ValueError( "position %i out of bounds on reference sequence (len=%i)" % (self.iter.pos, seq_len) ) # <<<<<<<<<<<<<<
+ *
+ * cdef int rb = seq[self.iter.pos]
+ */
+ __pyx_t_2 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->pos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2778; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_4 = PyInt_FromLong(__pyx_v_seq_len); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2778; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2778; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ __pyx_t_2 = 0;
+ __pyx_t_4 = 0;
+ __pyx_t_4 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_161), ((PyObject *)__pyx_t_5)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2778; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2778; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_t_4));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_4));
+ __pyx_t_4 = 0;
+ __pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2778; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __Pyx_Raise(__pyx_t_4, 0, 0);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2778; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L7;
+ }
+ __pyx_L7:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2780
+ * raise ValueError( "position %i out of bounds on reference sequence (len=%i)" % (self.iter.pos, seq_len) )
+ *
+ * cdef int rb = seq[self.iter.pos] # <<<<<<<<<<<<<<
+ * cdef uint32_t cns
+ * cdef glf1_t * g
+ */
+ __pyx_v_rb = (__pyx_v_seq[((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->pos]);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2787
+ * self.iter.plp,
+ * bam_nt16_table[rb],
+ * self.c ) # <<<<<<<<<<<<<<
+ *
+ * if pysam_glf_depth( g ) == 0:
+ */
+ __pyx_v_g = bam_maqcns_glfgen(((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->n_plp, ((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->plp, (bam_nt16_table[__pyx_v_rb]), ((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.c);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2789
+ * self.c )
+ *
+ * if pysam_glf_depth( g ) == 0: # <<<<<<<<<<<<<<
+ * cns = 0xfu << 28 | 0xf << 24
+ * else:
+ */
+ __pyx_t_1 = (pysam_glf_depth(__pyx_v_g) == 0);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2790
+ *
+ * if pysam_glf_depth( g ) == 0:
+ * cns = 0xfu << 28 | 0xf << 24 # <<<<<<<<<<<<<<
+ * else:
+ * cns = glf2cns(g, <int>(self.c.q_r + .499))
+ */
+ __pyx_v_cns = 4278190080;
+ goto __pyx_L8;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2792
+ * cns = 0xfu << 28 | 0xf << 24
+ * else:
+ * cns = glf2cns(g, <int>(self.c.q_r + .499)) # <<<<<<<<<<<<<<
+ *
+ * free(g)
+ */
+ __pyx_v_cns = glf2cns(__pyx_v_g, ((int)(((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.c->q_r + .499)));
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2794
+ * cns = glf2cns(g, <int>(self.c.q_r + .499))
+ *
+ * free(g) # <<<<<<<<<<<<<<
+ *
+ * cdef SNPCall call
+ */
+ free(__pyx_v_g);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2798
+ * cdef SNPCall call
+ *
+ * call = SNPCall() # <<<<<<<<<<<<<<
+ * call._tid = self.iter.tid
+ * call._pos = self.iter.pos
+ */
+ __pyx_t_4 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_SNPCall)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2798; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(((PyObject *)__pyx_v_call));
+ __pyx_v_call = ((struct __pyx_obj_9csamtools_SNPCall *)__pyx_t_4);
+ __pyx_t_4 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2799
+ *
+ * call = SNPCall()
+ * call._tid = self.iter.tid # <<<<<<<<<<<<<<
+ * call._pos = self.iter.pos
+ * call._reference_base = rb
+ */
+ __pyx_v_call->_tid = ((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->tid;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2800
+ * call = SNPCall()
+ * call._tid = self.iter.tid
+ * call._pos = self.iter.pos # <<<<<<<<<<<<<<
+ * call._reference_base = rb
+ * call._genotype = bam_nt16_rev_table[cns>>28]
+ */
+ __pyx_v_call->_pos = ((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->pos;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2801
+ * call._tid = self.iter.tid
+ * call._pos = self.iter.pos
+ * call._reference_base = rb # <<<<<<<<<<<<<<
+ * call._genotype = bam_nt16_rev_table[cns>>28]
+ * call._consensus_quality = cns >> 8 & 0xff
+ */
+ __pyx_v_call->_reference_base = __pyx_v_rb;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2802
+ * call._pos = self.iter.pos
+ * call._reference_base = rb
+ * call._genotype = bam_nt16_rev_table[cns>>28] # <<<<<<<<<<<<<<
+ * call._consensus_quality = cns >> 8 & 0xff
+ * call._snp_quality = cns & 0xff
+ */
+ __pyx_v_call->_genotype = (__pyx_v_9csamtools_bam_nt16_rev_table[(__pyx_v_cns >> 28)]);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2803
+ * call._reference_base = rb
+ * call._genotype = bam_nt16_rev_table[cns>>28]
+ * call._consensus_quality = cns >> 8 & 0xff # <<<<<<<<<<<<<<
+ * call._snp_quality = cns & 0xff
+ * call._rms_mapping_quality = cns >> 16&0xff
+ */
+ __pyx_v_call->_consensus_quality = ((__pyx_v_cns >> 8) & 0xff);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2804
+ * call._genotype = bam_nt16_rev_table[cns>>28]
+ * call._consensus_quality = cns >> 8 & 0xff
+ * call._snp_quality = cns & 0xff # <<<<<<<<<<<<<<
+ * call._rms_mapping_quality = cns >> 16&0xff
+ * call._coverage = self.iter.n_plp
+ */
+ __pyx_v_call->_snp_quality = (__pyx_v_cns & 0xff);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2805
+ * call._consensus_quality = cns >> 8 & 0xff
+ * call._snp_quality = cns & 0xff
+ * call._rms_mapping_quality = cns >> 16&0xff # <<<<<<<<<<<<<<
+ * call._coverage = self.iter.n_plp
+ *
+ */
+ __pyx_v_call->_rms_mapping_quality = ((__pyx_v_cns >> 16) & 0xff);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2806
+ * call._snp_quality = cns & 0xff
+ * call._rms_mapping_quality = cns >> 16&0xff
+ * call._coverage = self.iter.n_plp # <<<<<<<<<<<<<<
+ *
+ * return call
+ */
+ __pyx_v_call->_coverage = ((struct __pyx_obj_9csamtools_IteratorSNPCalls *)__pyx_v_self)->__pyx_base.iter->n_plp;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2808
+ * call._coverage = self.iter.n_plp
+ *
+ * return call # <<<<<<<<<<<<<<
+ *
+ * cdef class SNPCaller( SNPCallerBase ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_v_call));
+ __pyx_r = ((PyObject *)__pyx_v_call);
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_AddTraceback("csamtools.IteratorSNPCalls.__next__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF((PyObject *)__pyx_v_call);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2824
+ *
+ *
+ * def __cinit__(self, # <<<<<<<<<<<<<<
+ * IteratorColumn iterator_column,
+ * **kwargs ):
+ */
+
+static int __pyx_pf_9csamtools_9SNPCaller_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_9SNPCaller_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_IteratorColumn *__pyx_v_iterator_column = 0;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_r;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__iterator_column,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 2824);
+ __pyx_v_kwargs = PyDict_New(); if (unlikely(!__pyx_v_kwargs)) return -1;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[1] = {0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__iterator_column);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_kwargs, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2824; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)values[0]);
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 1) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)PyTuple_GET_ITEM(__pyx_args, 0));
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2824; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_AddTraceback("csamtools.SNPCaller.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_iterator_column), __pyx_ptype_9csamtools_IteratorColumn, 1, "iterator_column", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2825; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.SNPCaller.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2830
+ * pass
+ *
+ * def call(self, reference, int pos ): # <<<<<<<<<<<<<<
+ * """call a snp on chromosome *reference*
+ * and position *pos*.
+ */
+
+static PyObject *__pyx_pf_9csamtools_9SNPCaller_1call(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_9SNPCaller_1call[] = "call a snp on chromosome *reference*\n and position *pos*.\n\n returns a :class:`SNPCall` object.\n ";
+static PyObject *__pyx_pf_9csamtools_9SNPCaller_1call(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_reference = 0;
+ int __pyx_v_pos;
+ int __pyx_v_tid;
+ char *__pyx_v_seq;
+ int __pyx_v_seq_len;
+ int __pyx_v_rb;
+ uint32_t __pyx_v_cns;
+ glf1_t *__pyx_v_g;
+ struct __pyx_obj_9csamtools_SNPCall *__pyx_v_call;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ int __pyx_t_4;
+ PyObject *__pyx_t_5 = NULL;
+ int __pyx_t_6;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__reference,&__pyx_n_s__pos,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("call");
+ __Pyx_TraceCall("call", __pyx_f[0], 2830);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[2] = {0,0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__reference);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__pos);
+ if (likely(values[1])) kw_args--;
+ else {
+ __Pyx_RaiseArgtupleInvalid("call", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2830; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "call") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2830; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_reference = values[0];
+ __pyx_v_pos = __Pyx_PyInt_AsInt(values[1]); if (unlikely((__pyx_v_pos == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2830; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 2) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_reference = PyTuple_GET_ITEM(__pyx_args, 0);
+ __pyx_v_pos = __Pyx_PyInt_AsInt(PyTuple_GET_ITEM(__pyx_args, 1)); if (unlikely((__pyx_v_pos == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2830; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("call", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2830; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.SNPCaller.call");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+ __pyx_v_call = ((struct __pyx_obj_9csamtools_SNPCall *)Py_None); __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2837
+ * """
+ *
+ * cdef int tid = self.iter.samfile.gettid( reference ) # <<<<<<<<<<<<<<
+ *
+ * self.iter.reset( tid, pos, pos + 1 )
+ */
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->samfile), __pyx_n_s__gettid); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2837; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2837; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(__pyx_v_reference);
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_reference);
+ __Pyx_GIVEREF(__pyx_v_reference);
+ __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2837; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __pyx_t_4 = __Pyx_PyInt_AsInt(__pyx_t_3); if (unlikely((__pyx_t_4 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2837; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_v_tid = __pyx_t_4;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2839
+ * cdef int tid = self.iter.samfile.gettid( reference )
+ *
+ * self.iter.reset( tid, pos, pos + 1 ) # <<<<<<<<<<<<<<
+ *
+ * while 1:
+ */
+ __pyx_t_3 = PyInt_FromLong(__pyx_v_tid); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2839; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_2 = PyInt_FromLong(__pyx_v_pos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2839; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyInt_FromLong((__pyx_v_pos + 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2839; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = ((struct __pyx_vtabstruct_9csamtools_IteratorColumn *)((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->__pyx_vtab)->reset(((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter, __pyx_t_3, __pyx_t_2, __pyx_t_1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2839; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2841
+ * self.iter.reset( tid, pos, pos + 1 )
+ *
+ * while 1: # <<<<<<<<<<<<<<
+ * self.iter.cnext()
+ *
+ */
+ while (1) {
+ if (!1) break;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2842
+ *
+ * while 1:
+ * self.iter.cnext() # <<<<<<<<<<<<<<
+ *
+ * if self.iter.n_plp < 0:
+ */
+ ((struct __pyx_vtabstruct_9csamtools_IteratorColumn *)((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->__pyx_vtab)->cnext(((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2844
+ * self.iter.cnext()
+ *
+ * if self.iter.n_plp < 0: # <<<<<<<<<<<<<<
+ * raise ValueError("error during iteration" )
+ *
+ */
+ __pyx_t_6 = (((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->n_plp < 0);
+ if (__pyx_t_6) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2845
+ *
+ * if self.iter.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.plp == NULL:
+ */
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_162), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2845; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_Raise(__pyx_t_5, 0, 0);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2845; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2847
+ * raise ValueError("error during iteration" )
+ *
+ * if self.iter.plp == NULL: # <<<<<<<<<<<<<<
+ * raise ValueError( "no reads in region - no call" )
+ *
+ */
+ __pyx_t_6 = (((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->plp == NULL);
+ if (__pyx_t_6) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2848
+ *
+ * if self.iter.plp == NULL:
+ * raise ValueError( "no reads in region - no call" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.pos == pos: break
+ */
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_164), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2848; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_Raise(__pyx_t_5, 0, 0);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2848; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L9;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2850
+ * raise ValueError( "no reads in region - no call" )
+ *
+ * if self.iter.pos == pos: break # <<<<<<<<<<<<<<
+ *
+ * cdef char * seq = self.iter.getSequence()
+ */
+ __pyx_t_6 = (((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->pos == __pyx_v_pos);
+ if (__pyx_t_6) {
+ goto __pyx_L7_break;
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+ }
+ __pyx_L7_break:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2852
+ * if self.iter.pos == pos: break
+ *
+ * cdef char * seq = self.iter.getSequence() # <<<<<<<<<<<<<<
+ * cdef int seq_len = self.iter.seq_len
+ *
+ */
+ __pyx_v_seq = ((struct __pyx_vtabstruct_9csamtools_IteratorColumn *)((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->__pyx_vtab)->getSequence(((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2853
+ *
+ * cdef char * seq = self.iter.getSequence()
+ * cdef int seq_len = self.iter.seq_len # <<<<<<<<<<<<<<
+ *
+ * assert seq != NULL
+ */
+ __pyx_t_5 = PyObject_GetAttr(((PyObject *)((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter), __pyx_n_s__seq_len); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2853; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_4 = __Pyx_PyInt_AsInt(__pyx_t_5); if (unlikely((__pyx_t_4 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2853; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_v_seq_len = __pyx_t_4;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2855
+ * cdef int seq_len = self.iter.seq_len
+ *
+ * assert seq != NULL # <<<<<<<<<<<<<<
+ *
+ * # reference base
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ if (unlikely(!(__pyx_v_seq != NULL))) {
+ PyErr_SetNone(PyExc_AssertionError);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2855; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2858
+ *
+ * # reference base
+ * if self.iter.pos >= seq_len: # <<<<<<<<<<<<<<
+ * raise ValueError( "position %i out of bounds on reference sequence (len=%i)" % (self.iter.pos, seq_len) )
+ *
+ */
+ __pyx_t_6 = (((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->pos >= __pyx_v_seq_len);
+ if (__pyx_t_6) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2859
+ * # reference base
+ * if self.iter.pos >= seq_len:
+ * raise ValueError( "position %i out of bounds on reference sequence (len=%i)" % (self.iter.pos, seq_len) ) # <<<<<<<<<<<<<<
+ *
+ * cdef int rb = seq[self.iter.pos]
+ */
+ __pyx_t_5 = PyInt_FromLong(((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->pos); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2859; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_1 = PyInt_FromLong(__pyx_v_seq_len); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2859; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2859; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_5 = 0;
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_161), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2859; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __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 = 2859; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ PyTuple_SET_ITEM(__pyx_t_2, 0, ((PyObject *)__pyx_t_1));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_1));
+ __pyx_t_1 = 0;
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2859; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __Pyx_Raise(__pyx_t_1, 0, 0);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2859; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L11;
+ }
+ __pyx_L11:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2861
+ * raise ValueError( "position %i out of bounds on reference sequence (len=%i)" % (self.iter.pos, seq_len) )
+ *
+ * cdef int rb = seq[self.iter.pos] # <<<<<<<<<<<<<<
+ * cdef uint32_t cns
+ * cdef glf1_t * g
+ */
+ __pyx_v_rb = (__pyx_v_seq[((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->pos]);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2868
+ * self.iter.plp,
+ * bam_nt16_table[rb],
+ * self.c ) # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ __pyx_v_g = bam_maqcns_glfgen(((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->n_plp, ((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->plp, (bam_nt16_table[__pyx_v_rb]), ((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.c);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2871
+ *
+ *
+ * if pysam_glf_depth( g ) == 0: # <<<<<<<<<<<<<<
+ * cns = 0xfu << 28 | 0xf << 24
+ * else:
+ */
+ __pyx_t_6 = (pysam_glf_depth(__pyx_v_g) == 0);
+ if (__pyx_t_6) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2872
+ *
+ * if pysam_glf_depth( g ) == 0:
+ * cns = 0xfu << 28 | 0xf << 24 # <<<<<<<<<<<<<<
+ * else:
+ * cns = glf2cns(g, <int>(self.c.q_r + .499))
+ */
+ __pyx_v_cns = 4278190080;
+ goto __pyx_L12;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2874
+ * cns = 0xfu << 28 | 0xf << 24
+ * else:
+ * cns = glf2cns(g, <int>(self.c.q_r + .499)) # <<<<<<<<<<<<<<
+ *
+ * free(g)
+ */
+ __pyx_v_cns = glf2cns(__pyx_v_g, ((int)(((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.c->q_r + .499)));
+ }
+ __pyx_L12:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2876
+ * cns = glf2cns(g, <int>(self.c.q_r + .499))
+ *
+ * free(g) # <<<<<<<<<<<<<<
+ *
+ * cdef SNPCall call
+ */
+ free(__pyx_v_g);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2880
+ * cdef SNPCall call
+ *
+ * call = SNPCall() # <<<<<<<<<<<<<<
+ * call._tid = self.iter.tid
+ * call._pos = self.iter.pos
+ */
+ __pyx_t_1 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_SNPCall)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2880; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(((PyObject *)__pyx_v_call));
+ __pyx_v_call = ((struct __pyx_obj_9csamtools_SNPCall *)__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2881
+ *
+ * call = SNPCall()
+ * call._tid = self.iter.tid # <<<<<<<<<<<<<<
+ * call._pos = self.iter.pos
+ * call._reference_base = rb
+ */
+ __pyx_v_call->_tid = ((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->tid;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2882
+ * call = SNPCall()
+ * call._tid = self.iter.tid
+ * call._pos = self.iter.pos # <<<<<<<<<<<<<<
+ * call._reference_base = rb
+ * call._genotype = bam_nt16_rev_table[cns>>28]
+ */
+ __pyx_v_call->_pos = ((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->pos;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2883
+ * call._tid = self.iter.tid
+ * call._pos = self.iter.pos
+ * call._reference_base = rb # <<<<<<<<<<<<<<
+ * call._genotype = bam_nt16_rev_table[cns>>28]
+ * call._consensus_quality = cns >> 8 & 0xff
+ */
+ __pyx_v_call->_reference_base = __pyx_v_rb;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2884
+ * call._pos = self.iter.pos
+ * call._reference_base = rb
+ * call._genotype = bam_nt16_rev_table[cns>>28] # <<<<<<<<<<<<<<
+ * call._consensus_quality = cns >> 8 & 0xff
+ * call._snp_quality = cns & 0xff
+ */
+ __pyx_v_call->_genotype = (__pyx_v_9csamtools_bam_nt16_rev_table[(__pyx_v_cns >> 28)]);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2885
+ * call._reference_base = rb
+ * call._genotype = bam_nt16_rev_table[cns>>28]
+ * call._consensus_quality = cns >> 8 & 0xff # <<<<<<<<<<<<<<
+ * call._snp_quality = cns & 0xff
+ * call._rms_mapping_quality = cns >> 16&0xff
+ */
+ __pyx_v_call->_consensus_quality = ((__pyx_v_cns >> 8) & 0xff);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2886
+ * call._genotype = bam_nt16_rev_table[cns>>28]
+ * call._consensus_quality = cns >> 8 & 0xff
+ * call._snp_quality = cns & 0xff # <<<<<<<<<<<<<<
+ * call._rms_mapping_quality = cns >> 16&0xff
+ * call._coverage = self.iter.n_plp
+ */
+ __pyx_v_call->_snp_quality = (__pyx_v_cns & 0xff);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2887
+ * call._consensus_quality = cns >> 8 & 0xff
+ * call._snp_quality = cns & 0xff
+ * call._rms_mapping_quality = cns >> 16&0xff # <<<<<<<<<<<<<<
+ * call._coverage = self.iter.n_plp
+ *
+ */
+ __pyx_v_call->_rms_mapping_quality = ((__pyx_v_cns >> 16) & 0xff);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2888
+ * call._snp_quality = cns & 0xff
+ * call._rms_mapping_quality = cns >> 16&0xff
+ * call._coverage = self.iter.n_plp # <<<<<<<<<<<<<<
+ *
+ * return call
+ */
+ __pyx_v_call->_coverage = ((struct __pyx_obj_9csamtools_SNPCaller *)__pyx_v_self)->__pyx_base.iter->n_plp;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2890
+ * call._coverage = self.iter.n_plp
+ *
+ * return call # <<<<<<<<<<<<<<
+ *
+ * cdef class IndelCall:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_v_call));
+ __pyx_r = ((PyObject *)__pyx_v_call);
+ 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_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_AddTraceback("csamtools.SNPCaller.call");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF((PyObject *)__pyx_v_call);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2900
+ * cdef bam_maqindel_ret_t * _r
+ *
+ * def __cinit__(self): # <<<<<<<<<<<<<<
+ * #assert r != NULL
+ * #self._r = r
+ */
+
+static int __pyx_pf_9csamtools_9IndelCall_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_9IndelCall_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ int __pyx_r;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 2900);
+ if (unlikely(PyTuple_GET_SIZE(__pyx_args) > 0)) {
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 0, 0, PyTuple_GET_SIZE(__pyx_args)); return -1;}
+ if (unlikely(__pyx_kwds) && unlikely(PyDict_Size(__pyx_kwds) > 0) && unlikely(!__Pyx_CheckKeywordStrings(__pyx_kwds, "__cinit__", 0))) return -1;
+
+ __pyx_r = 0;
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2907
+ * property tid:
+ * '''the chromosome ID as is defined in the header'''
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * return self._tid
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_3tid_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_3tid_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2907);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2908
+ * '''the chromosome ID as is defined in the header'''
+ * def __get__(self):
+ * return self._tid # <<<<<<<<<<<<<<
+ *
+ * property pos:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_tid); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2908; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IndelCall.tid.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2912
+ * property pos:
+ * '''nucleotide position of SNP.'''
+ * def __get__(self): return self._pos # <<<<<<<<<<<<<<
+ *
+ * property genotype:
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_3pos_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_3pos_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2912);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_pos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2912; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IndelCall.pos.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2916
+ * property genotype:
+ * '''the genotype called.'''
+ * def __get__(self): # <<<<<<<<<<<<<<
+ * if self._r.gt == 0:
+ * s = PyString_FromStringAndSize( self._r.s[0], self._r.indel1 + 1)
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_8genotype_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_8genotype_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_v_s;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2916);
+ __pyx_v_s = Py_None; __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2920
+ * s = PyString_FromStringAndSize( self._r.s[0], self._r.indel1 + 1)
+ * return "%s/%s" % (s,s)
+ * elif self._r.gt == 1: # <<<<<<<<<<<<<<
+ * s = PyString_FromStringAndSize( self._r.s[1], self._r.indel2 + 1)
+ * return "%s/%s" % (s,s)
+ */
+ switch (((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->gt) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2917
+ * '''the genotype called.'''
+ * def __get__(self):
+ * if self._r.gt == 0: # <<<<<<<<<<<<<<
+ * s = PyString_FromStringAndSize( self._r.s[0], self._r.indel1 + 1)
+ * return "%s/%s" % (s,s)
+ */
+ case 0:
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2918
+ * def __get__(self):
+ * if self._r.gt == 0:
+ * s = PyString_FromStringAndSize( self._r.s[0], self._r.indel1 + 1) # <<<<<<<<<<<<<<
+ * return "%s/%s" % (s,s)
+ * elif self._r.gt == 1:
+ */
+ __pyx_t_1 = PyString_FromStringAndSize((((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->s[0]), (((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->indel1 + 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2918; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_v_s);
+ __pyx_v_s = __pyx_t_1;
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2919
+ * if self._r.gt == 0:
+ * s = PyString_FromStringAndSize( self._r.s[0], self._r.indel1 + 1)
+ * return "%s/%s" % (s,s) # <<<<<<<<<<<<<<
+ * elif self._r.gt == 1:
+ * s = PyString_FromStringAndSize( self._r.s[1], self._r.indel2 + 1)
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyTuple_New(2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2919; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(__pyx_v_s);
+ PyTuple_SET_ITEM(__pyx_t_1, 0, __pyx_v_s);
+ __Pyx_GIVEREF(__pyx_v_s);
+ __Pyx_INCREF(__pyx_v_s);
+ PyTuple_SET_ITEM(__pyx_t_1, 1, __pyx_v_s);
+ __Pyx_GIVEREF(__pyx_v_s);
+ __pyx_t_2 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_165), ((PyObject *)__pyx_t_1)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2919; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+ __pyx_r = ((PyObject *)__pyx_t_2);
+ __pyx_t_2 = 0;
+ goto __pyx_L0;
+ break;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2920
+ * s = PyString_FromStringAndSize( self._r.s[0], self._r.indel1 + 1)
+ * return "%s/%s" % (s,s)
+ * elif self._r.gt == 1: # <<<<<<<<<<<<<<
+ * s = PyString_FromStringAndSize( self._r.s[1], self._r.indel2 + 1)
+ * return "%s/%s" % (s,s)
+ */
+ case 1:
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2921
+ * return "%s/%s" % (s,s)
+ * elif self._r.gt == 1:
+ * s = PyString_FromStringAndSize( self._r.s[1], self._r.indel2 + 1) # <<<<<<<<<<<<<<
+ * return "%s/%s" % (s,s)
+ * else:
+ */
+ __pyx_t_2 = PyString_FromStringAndSize((((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->s[1]), (((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->indel2 + 1)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2921; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_v_s);
+ __pyx_v_s = __pyx_t_2;
+ __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2922
+ * elif self._r.gt == 1:
+ * s = PyString_FromStringAndSize( self._r.s[1], self._r.indel2 + 1)
+ * return "%s/%s" % (s,s) # <<<<<<<<<<<<<<
+ * else:
+ * return "%s/%s" % (self.first_allele, self.second_allele )
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2922; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(__pyx_v_s);
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_s);
+ __Pyx_GIVEREF(__pyx_v_s);
+ __Pyx_INCREF(__pyx_v_s);
+ PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_v_s);
+ __Pyx_GIVEREF(__pyx_v_s);
+ __pyx_t_1 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_165), ((PyObject *)__pyx_t_2)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2922; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __pyx_r = ((PyObject *)__pyx_t_1);
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+ break;
+ default:
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2924
+ * return "%s/%s" % (s,s)
+ * else:
+ * return "%s/%s" % (self.first_allele, self.second_allele ) # <<<<<<<<<<<<<<
+ *
+ * property consensus_quality:
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__first_allele); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2924; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__second_allele); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2924; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyTuple_New(2); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2924; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ PyTuple_SET_ITEM(__pyx_t_3, 1, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ __pyx_t_1 = 0;
+ __pyx_t_2 = 0;
+ __pyx_t_2 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_165), ((PyObject *)__pyx_t_3)); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2924; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ __pyx_r = ((PyObject *)__pyx_t_2);
+ __pyx_t_2 = 0;
+ goto __pyx_L0;
+ break;
+ }
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.IndelCall.genotype.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_s);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2928
+ * property consensus_quality:
+ * '''the genotype quality (Phred-scaled).'''
+ * def __get__(self): return self._r.q_cns # <<<<<<<<<<<<<<
+ *
+ * property snp_quality:
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_17consensus_quality_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_17consensus_quality_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2928);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->q_cns); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2928; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IndelCall.consensus_quality.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2932
+ * property snp_quality:
+ * '''the snp quality (Phred scaled) - probability of consensus being identical to reference sequence.'''
+ * def __get__(self): return self._r.q_ref # <<<<<<<<<<<<<<
+ *
+ * property mapping_quality:
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_11snp_quality_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_11snp_quality_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2932);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->q_ref); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2932; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IndelCall.snp_quality.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2936
+ * property mapping_quality:
+ * '''the root mean square (rms) of the mapping quality of all reads involved in the call.'''
+ * def __get__(self): return self._rms_mapping_quality # <<<<<<<<<<<<<<
+ *
+ * property coverage:
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_15mapping_quality_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_15mapping_quality_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2936);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_rms_mapping_quality); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2936; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IndelCall.mapping_quality.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2940
+ * property coverage:
+ * '''coverage or read depth - the number of reads involved in the call.'''
+ * def __get__(self): return self._coverage # <<<<<<<<<<<<<<
+ *
+ * property first_allele:
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_8coverage_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_8coverage_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2940);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_coverage); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2940; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IndelCall.coverage.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2944
+ * property first_allele:
+ * '''sequence of first allele.'''
+ * def __get__(self): return PyString_FromStringAndSize( self._r.s[0], self._r.indel1 + 1) # <<<<<<<<<<<<<<
+ *
+ * property second_allele:
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_12first_allele_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_12first_allele_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2944);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyString_FromStringAndSize((((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->s[0]), (((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->indel1 + 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2944; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IndelCall.first_allele.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2948
+ * property second_allele:
+ * '''sequence of second allele.'''
+ * def __get__(self): return PyString_FromStringAndSize( self._r.s[1], self._r.indel2 + 1) # <<<<<<<<<<<<<<
+ *
+ * property reads_first:
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_13second_allele_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_13second_allele_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2948);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyString_FromStringAndSize((((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->s[1]), (((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->indel2 + 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2948; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IndelCall.second_allele.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2952
+ * property reads_first:
+ * '''reads supporting first allele.'''
+ * def __get__(self): return self._r.cnt1 # <<<<<<<<<<<<<<
+ *
+ * property reads_second:
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_11reads_first_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_11reads_first_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2952);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->cnt1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2952; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IndelCall.reads_first.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2956
+ * property reads_second:
+ * '''reads supporting first allele.'''
+ * def __get__(self): return self._r.cnt2 # <<<<<<<<<<<<<<
+ *
+ * property reads_diff:
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_12reads_second_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_12reads_second_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2956);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->cnt2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2956; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IndelCall.reads_second.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2960
+ * property reads_diff:
+ * '''reads supporting first allele.'''
+ * def __get__(self): return self._r.cnt_anti # <<<<<<<<<<<<<<
+ *
+ * def __str__(self):
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_10reads_diff_0__get__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_10reads_diff_0__get__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__get__");
+ __Pyx_TraceCall("__get__", __pyx_f[0], 2960);
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r->cnt_anti); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2960; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_AddTraceback("csamtools.IndelCall.reads_diff.__get__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2962
+ * def __get__(self): return self._r.cnt_anti
+ *
+ * def __str__(self): # <<<<<<<<<<<<<<
+ *
+ * return "\t".join( map(str, (
+ */
+
+static PyObject *__pyx_pf_9csamtools_9IndelCall_1__str__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_9IndelCall_1__str__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ 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;
+ PyObject *__pyx_t_7 = NULL;
+ 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;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__str__");
+ __Pyx_TraceCall("__str__", __pyx_f[0], 2962);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2964
+ * def __str__(self):
+ *
+ * return "\t".join( map(str, ( # <<<<<<<<<<<<<<
+ * self.tid,
+ * self.pos,
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_kp_s_1), __pyx_n_s__join); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2964; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2965
+ *
+ * return "\t".join( map(str, (
+ * self.tid, # <<<<<<<<<<<<<<
+ * self.pos,
+ * self.genotype,
+ */
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__tid); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2965; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2966
+ * return "\t".join( map(str, (
+ * self.tid,
+ * self.pos, # <<<<<<<<<<<<<<
+ * self.genotype,
+ * self.consensus_quality,
+ */
+ __pyx_t_3 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__pos); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2966; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2967
+ * self.tid,
+ * self.pos,
+ * self.genotype, # <<<<<<<<<<<<<<
+ * self.consensus_quality,
+ * self.snp_quality,
+ */
+ __pyx_t_4 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__genotype); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2967; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2968
+ * self.pos,
+ * self.genotype,
+ * self.consensus_quality, # <<<<<<<<<<<<<<
+ * self.snp_quality,
+ * self.mapping_quality,
+ */
+ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__consensus_quality); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2968; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2969
+ * self.genotype,
+ * self.consensus_quality,
+ * self.snp_quality, # <<<<<<<<<<<<<<
+ * self.mapping_quality,
+ * self.coverage,
+ */
+ __pyx_t_6 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__snp_quality); if (unlikely(!__pyx_t_6)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2969; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_6);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2970
+ * self.consensus_quality,
+ * self.snp_quality,
+ * self.mapping_quality, # <<<<<<<<<<<<<<
+ * self.coverage,
+ * self.first_allele,
+ */
+ __pyx_t_7 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__mapping_quality); if (unlikely(!__pyx_t_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2970; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_7);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2971
+ * self.snp_quality,
+ * self.mapping_quality,
+ * self.coverage, # <<<<<<<<<<<<<<
+ * self.first_allele,
+ * self.second_allele,
+ */
+ __pyx_t_8 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__coverage); if (unlikely(!__pyx_t_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2971; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_8);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2972
+ * self.mapping_quality,
+ * self.coverage,
+ * self.first_allele, # <<<<<<<<<<<<<<
+ * self.second_allele,
+ * self.reads_first,
+ */
+ __pyx_t_9 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__first_allele); if (unlikely(!__pyx_t_9)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2972; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_9);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2973
+ * self.coverage,
+ * self.first_allele,
+ * self.second_allele, # <<<<<<<<<<<<<<
+ * self.reads_first,
+ * self.reads_second,
+ */
+ __pyx_t_10 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__second_allele); if (unlikely(!__pyx_t_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2973; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_10);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2974
+ * self.first_allele,
+ * self.second_allele,
+ * self.reads_first, # <<<<<<<<<<<<<<
+ * self.reads_second,
+ * self.reads_diff ) ) )
+ */
+ __pyx_t_11 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__reads_first); if (unlikely(!__pyx_t_11)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2974; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_11);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2975
+ * self.second_allele,
+ * self.reads_first,
+ * self.reads_second, # <<<<<<<<<<<<<<
+ * self.reads_diff ) ) )
+ *
+ */
+ __pyx_t_12 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__reads_second); if (unlikely(!__pyx_t_12)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2975; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_12);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2976
+ * self.reads_first,
+ * self.reads_second,
+ * self.reads_diff ) ) ) # <<<<<<<<<<<<<<
+ *
+ * def __dealloc__(self ):
+ */
+ __pyx_t_13 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s__reads_diff); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2976; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_13);
+ __pyx_t_14 = PyTuple_New(12); if (unlikely(!__pyx_t_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2965; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_14));
+ PyTuple_SET_ITEM(__pyx_t_14, 0, __pyx_t_2);
+ __Pyx_GIVEREF(__pyx_t_2);
+ PyTuple_SET_ITEM(__pyx_t_14, 1, __pyx_t_3);
+ __Pyx_GIVEREF(__pyx_t_3);
+ PyTuple_SET_ITEM(__pyx_t_14, 2, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ PyTuple_SET_ITEM(__pyx_t_14, 3, __pyx_t_5);
+ __Pyx_GIVEREF(__pyx_t_5);
+ PyTuple_SET_ITEM(__pyx_t_14, 4, __pyx_t_6);
+ __Pyx_GIVEREF(__pyx_t_6);
+ PyTuple_SET_ITEM(__pyx_t_14, 5, __pyx_t_7);
+ __Pyx_GIVEREF(__pyx_t_7);
+ PyTuple_SET_ITEM(__pyx_t_14, 6, __pyx_t_8);
+ __Pyx_GIVEREF(__pyx_t_8);
+ PyTuple_SET_ITEM(__pyx_t_14, 7, __pyx_t_9);
+ __Pyx_GIVEREF(__pyx_t_9);
+ PyTuple_SET_ITEM(__pyx_t_14, 8, __pyx_t_10);
+ __Pyx_GIVEREF(__pyx_t_10);
+ PyTuple_SET_ITEM(__pyx_t_14, 9, __pyx_t_11);
+ __Pyx_GIVEREF(__pyx_t_11);
+ PyTuple_SET_ITEM(__pyx_t_14, 10, __pyx_t_12);
+ __Pyx_GIVEREF(__pyx_t_12);
+ PyTuple_SET_ITEM(__pyx_t_14, 11, __pyx_t_13);
+ __Pyx_GIVEREF(__pyx_t_13);
+ __pyx_t_2 = 0;
+ __pyx_t_3 = 0;
+ __pyx_t_4 = 0;
+ __pyx_t_5 = 0;
+ __pyx_t_6 = 0;
+ __pyx_t_7 = 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_13 = PyTuple_New(2); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2964; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_13));
+ __Pyx_INCREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_13, 0, ((PyObject *)((PyObject*)(&PyString_Type))));
+ __Pyx_GIVEREF(((PyObject *)((PyObject*)(&PyString_Type))));
+ PyTuple_SET_ITEM(__pyx_t_13, 1, ((PyObject *)__pyx_t_14));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_14));
+ __pyx_t_14 = 0;
+ __pyx_t_14 = PyObject_Call(__pyx_builtin_map, ((PyObject *)__pyx_t_13), NULL); if (unlikely(!__pyx_t_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2964; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_14);
+ __Pyx_DECREF(((PyObject *)__pyx_t_13)); __pyx_t_13 = 0;
+ __pyx_t_13 = PyTuple_New(1); if (unlikely(!__pyx_t_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2964; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_13));
+ PyTuple_SET_ITEM(__pyx_t_13, 0, __pyx_t_14);
+ __Pyx_GIVEREF(__pyx_t_14);
+ __pyx_t_14 = 0;
+ __pyx_t_14 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_13), NULL); if (unlikely(!__pyx_t_14)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2964; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_14);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_13)); __pyx_t_13 = 0;
+ __pyx_r = __pyx_t_14;
+ __pyx_t_14 = 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_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_4);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_XDECREF(__pyx_t_6);
+ __Pyx_XDECREF(__pyx_t_7);
+ __Pyx_XDECREF(__pyx_t_8);
+ __Pyx_XDECREF(__pyx_t_9);
+ __Pyx_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_AddTraceback("csamtools.IndelCall.__str__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2978
+ * self.reads_diff ) ) )
+ *
+ * def __dealloc__(self ): # <<<<<<<<<<<<<<
+ * bam_maqindel_ret_destroy(self._r)
+ *
+ */
+
+static void __pyx_pf_9csamtools_9IndelCall_2__dealloc__(PyObject *__pyx_v_self); /*proto*/
+static void __pyx_pf_9csamtools_9IndelCall_2__dealloc__(PyObject *__pyx_v_self) {
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__dealloc__");
+ __Pyx_TraceCall("__dealloc__", __pyx_f[0], 2978);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2979
+ *
+ * def __dealloc__(self ):
+ * bam_maqindel_ret_destroy(self._r) # <<<<<<<<<<<<<<
+ *
+ * cdef class IndelCallerBase:
+ */
+ bam_maqindel_ret_destroy(((struct __pyx_obj_9csamtools_IndelCall *)__pyx_v_self)->_r);
+
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3001
+ * cdef int max_depth
+ *
+ * def __cinit__(self, # <<<<<<<<<<<<<<
+ * IteratorColumn iterator_column,
+ * **kwargs ):
+ */
+
+static int __pyx_pf_9csamtools_15IndelCallerBase_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_15IndelCallerBase_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_IteratorColumn *__pyx_v_iterator_column = 0;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_r;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ int __pyx_t_3;
+ float __pyx_t_4;
+ int __pyx_t_5;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__iterator_column,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 3001);
+ __pyx_v_kwargs = PyDict_New(); if (unlikely(!__pyx_v_kwargs)) return -1;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[1] = {0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__iterator_column);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_kwargs, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3001; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)values[0]);
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 1) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)PyTuple_GET_ITEM(__pyx_args, 0));
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3001; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_AddTraceback("csamtools.IndelCallerBase.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_iterator_column), __pyx_ptype_9csamtools_IteratorColumn, 1, "iterator_column", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3002; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3006
+ *
+ *
+ * self.iter = iterator_column # <<<<<<<<<<<<<<
+ *
+ * assert iterator_column.hasReference(), "IndelCallerBase requires an pileup iterator with reference sequence"
+ */
+ __Pyx_INCREF(((PyObject *)__pyx_v_iterator_column));
+ __Pyx_GIVEREF(((PyObject *)__pyx_v_iterator_column));
+ __Pyx_GOTREF(((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter);
+ __Pyx_DECREF(((PyObject *)((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter));
+ ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter = __pyx_v_iterator_column;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3008
+ * self.iter = iterator_column
+ *
+ * assert iterator_column.hasReference(), "IndelCallerBase requires an pileup iterator with reference sequence" # <<<<<<<<<<<<<<
+ *
+ * self.options = bam_maqindel_opt_init()
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)__pyx_v_iterator_column), __pyx_n_s__hasReference); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3008; __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 = 3008; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_3 = __Pyx_PyObject_IsTrue(__pyx_t_2); if (unlikely(__pyx_t_3 < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3008; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ if (unlikely(!__pyx_t_3)) {
+ PyErr_SetObject(PyExc_AssertionError, ((PyObject *)__pyx_kp_s_166));
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3008; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3010
+ * assert iterator_column.hasReference(), "IndelCallerBase requires an pileup iterator with reference sequence"
+ *
+ * self.options = bam_maqindel_opt_init() # <<<<<<<<<<<<<<
+ *
+ * # set the default parameterization according to
+ */
+ ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->options = bam_maqindel_opt_init();
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3015
+ * # samtools
+ *
+ * self.options.r_indel = kwargs.get( "r_indel", 0.00015 ) # <<<<<<<<<<<<<<
+ * self.options.q_indel = kwargs.get( "q_indel", 40 )
+ * self.cap_mapQ = kwargs.get( "cap_mapQ", 60 )
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3015; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_2 = PyFloat_FromDouble(0.00015); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3015; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__r_indel), __pyx_t_2); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3015; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_t_4 = __pyx_PyFloat_AsDouble(__pyx_t_1); if (unlikely((__pyx_t_4 == (float)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3015; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->options->r_indel = __pyx_t_4;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3016
+ *
+ * self.options.r_indel = kwargs.get( "r_indel", 0.00015 )
+ * self.options.q_indel = kwargs.get( "q_indel", 40 ) # <<<<<<<<<<<<<<
+ * self.cap_mapQ = kwargs.get( "cap_mapQ", 60 )
+ * self.max_depth = kwargs.get( "max_depth", 1024 )
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3016; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_1 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__q_indel), __pyx_int_40); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3016; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = __Pyx_PyInt_AsInt(__pyx_t_1); if (unlikely((__pyx_t_5 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3016; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->options->q_indel = __pyx_t_5;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3017
+ * self.options.r_indel = kwargs.get( "r_indel", 0.00015 )
+ * self.options.q_indel = kwargs.get( "q_indel", 40 )
+ * self.cap_mapQ = kwargs.get( "cap_mapQ", 60 ) # <<<<<<<<<<<<<<
+ * self.max_depth = kwargs.get( "max_depth", 1024 )
+ *
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3017; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_1 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__cap_mapQ), __pyx_int_60); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3017; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = __Pyx_PyInt_AsInt(__pyx_t_1); if (unlikely((__pyx_t_5 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3017; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->cap_mapQ = __pyx_t_5;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3018
+ * self.options.q_indel = kwargs.get( "q_indel", 40 )
+ * self.cap_mapQ = kwargs.get( "cap_mapQ", 60 )
+ * self.max_depth = kwargs.get( "max_depth", 1024 ) # <<<<<<<<<<<<<<
+ *
+ * def __dealloc__(self):
+ */
+ if (unlikely(__pyx_v_kwargs == Py_None)) {
+ PyErr_SetString(PyExc_AttributeError, "'NoneType' object has no attribute 'get'"); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3018; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_t_1 = __Pyx_PyDict_GetItemDefault(((PyObject *)__pyx_v_kwargs), ((PyObject *)__pyx_n_s__max_depth), __pyx_int_1024); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3018; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = __Pyx_PyInt_AsInt(__pyx_t_1); if (unlikely((__pyx_t_5 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3018; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->max_depth = __pyx_t_5;
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_AddTraceback("csamtools.IndelCallerBase.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3020
+ * self.max_depth = kwargs.get( "max_depth", 1024 )
+ *
+ * def __dealloc__(self): # <<<<<<<<<<<<<<
+ * free( self.options )
+ *
+ */
+
+static void __pyx_pf_9csamtools_15IndelCallerBase_1__dealloc__(PyObject *__pyx_v_self); /*proto*/
+static void __pyx_pf_9csamtools_15IndelCallerBase_1__dealloc__(PyObject *__pyx_v_self) {
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__dealloc__");
+ __Pyx_TraceCall("__dealloc__", __pyx_f[0], 3020);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3021
+ *
+ * def __dealloc__(self):
+ * free( self.options ) # <<<<<<<<<<<<<<
+ *
+ * def _call( self ):
+ */
+ free(((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->options);
+
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3023
+ * free( self.options )
+ *
+ * def _call( self ): # <<<<<<<<<<<<<<
+ *
+ * cdef char * seq = self.iter.getSequence()
+ */
+
+static PyObject *__pyx_pf_9csamtools_15IndelCallerBase_2_call(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/
+static PyObject *__pyx_pf_9csamtools_15IndelCallerBase_2_call(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) {
+ char *__pyx_v_seq;
+ int __pyx_v_seq_len;
+ bam_maqindel_ret_t *__pyx_v_r;
+ int __pyx_v_m;
+ struct __pyx_obj_9csamtools_IndelCall *__pyx_v_call;
+ uint64_t __pyx_v_rms_aux;
+ int __pyx_v_i;
+ bam_pileup1_t *__pyx_v_p;
+ int __pyx_v_tmp;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ int __pyx_t_2;
+ int __pyx_t_3;
+ PyObject *__pyx_t_4 = NULL;
+ PyObject *__pyx_t_5 = NULL;
+ int __pyx_t_6;
+ int __pyx_t_7;
+ double __pyx_t_8;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("_call");
+ __Pyx_TraceCall("_call", __pyx_f[0], 3023);
+ __pyx_v_call = ((struct __pyx_obj_9csamtools_IndelCall *)Py_None); __Pyx_INCREF(Py_None);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3025
+ * def _call( self ):
+ *
+ * cdef char * seq = self.iter.getSequence() # <<<<<<<<<<<<<<
+ * cdef int seq_len = self.iter.seq_len
+ *
+ */
+ __pyx_v_seq = ((struct __pyx_vtabstruct_9csamtools_IteratorColumn *)((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->__pyx_vtab)->getSequence(((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3026
+ *
+ * cdef char * seq = self.iter.getSequence()
+ * cdef int seq_len = self.iter.seq_len # <<<<<<<<<<<<<<
+ *
+ * assert seq != NULL
+ */
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter), __pyx_n_s__seq_len); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3026; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = __Pyx_PyInt_AsInt(__pyx_t_1); if (unlikely((__pyx_t_2 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3026; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_v_seq_len = __pyx_t_2;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3028
+ * cdef int seq_len = self.iter.seq_len
+ *
+ * assert seq != NULL # <<<<<<<<<<<<<<
+ *
+ * # reference base
+ */
+ #ifndef CYTHON_WITHOUT_ASSERTIONS
+ if (unlikely(!(__pyx_v_seq != NULL))) {
+ PyErr_SetNone(PyExc_AssertionError);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3028; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ #endif
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3031
+ *
+ * # reference base
+ * if self.iter.pos >= seq_len: # <<<<<<<<<<<<<<
+ * raise ValueError( "position %i out of bounds on reference sequence (len=%i)" % (self.iter.pos, seq_len) )
+ *
+ */
+ __pyx_t_3 = (((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->pos >= __pyx_v_seq_len);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3032
+ * # reference base
+ * if self.iter.pos >= seq_len:
+ * raise ValueError( "position %i out of bounds on reference sequence (len=%i)" % (self.iter.pos, seq_len) ) # <<<<<<<<<<<<<<
+ *
+ * cdef bam_maqindel_ret_t * r
+ */
+ __pyx_t_1 = PyInt_FromLong(((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->pos); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_4 = PyInt_FromLong(__pyx_v_seq_len); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_1);
+ __Pyx_GIVEREF(__pyx_t_1);
+ PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_4);
+ __Pyx_GIVEREF(__pyx_t_4);
+ __pyx_t_1 = 0;
+ __pyx_t_4 = 0;
+ __pyx_t_4 = PyNumber_Remainder(((PyObject *)__pyx_kp_s_161), ((PyObject *)__pyx_t_5)); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_4));
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __pyx_t_5 = PyTuple_New(1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_5));
+ PyTuple_SET_ITEM(__pyx_t_5, 0, ((PyObject *)__pyx_t_4));
+ __Pyx_GIVEREF(((PyObject *)__pyx_t_4));
+ __pyx_t_4 = 0;
+ __pyx_t_4 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_t_5), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(((PyObject *)__pyx_t_5)); __pyx_t_5 = 0;
+ __Pyx_Raise(__pyx_t_4, 0, 0);
+ __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3032; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3036
+ * cdef bam_maqindel_ret_t * r
+ *
+ * cdef int m = min( self.max_depth, self.iter.n_plp ) # <<<<<<<<<<<<<<
+ *
+ * # printf("pysam: m=%i, q_indel=%i, r_indel=%f, r_snp=%i, mm_penalty=%i, indel_err=%i, ambi_thres=%i\n",
+ */
+ __pyx_t_2 = ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->n_plp;
+ __pyx_t_6 = ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->max_depth;
+ if ((__pyx_t_2 < __pyx_t_6)) {
+ __pyx_t_7 = __pyx_t_2;
+ } else {
+ __pyx_t_7 = __pyx_t_6;
+ }
+ __pyx_v_m = __pyx_t_7;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3048
+ * seq,
+ * 0,
+ * NULL) # <<<<<<<<<<<<<<
+ *
+ * if r == NULL: return None
+ */
+ __pyx_v_r = bam_maqindel(__pyx_v_m, ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->pos, ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->options, ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->plp, __pyx_v_seq, 0, NULL);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3050
+ * NULL)
+ *
+ * if r == NULL: return None # <<<<<<<<<<<<<<
+ *
+ * cdef IndelCall call
+ */
+ __pyx_t_3 = (__pyx_v_r == NULL);
+ if (__pyx_t_3) {
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(Py_None);
+ __pyx_r = Py_None;
+ goto __pyx_L0;
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3053
+ *
+ * cdef IndelCall call
+ * call = IndelCall() # <<<<<<<<<<<<<<
+ * call._r = r
+ * call._tid = self.iter.tid
+ */
+ __pyx_t_4 = PyObject_Call(((PyObject *)((PyObject*)__pyx_ptype_9csamtools_IndelCall)), ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3053; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_4);
+ __Pyx_DECREF(((PyObject *)__pyx_v_call));
+ __pyx_v_call = ((struct __pyx_obj_9csamtools_IndelCall *)__pyx_t_4);
+ __pyx_t_4 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3054
+ * cdef IndelCall call
+ * call = IndelCall()
+ * call._r = r # <<<<<<<<<<<<<<
+ * call._tid = self.iter.tid
+ * call._pos = self.iter.pos
+ */
+ __pyx_v_call->_r = __pyx_v_r;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3055
+ * call = IndelCall()
+ * call._r = r
+ * call._tid = self.iter.tid # <<<<<<<<<<<<<<
+ * call._pos = self.iter.pos
+ * call._coverage = self.iter.n_plp
+ */
+ __pyx_v_call->_tid = ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->tid;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3056
+ * call._r = r
+ * call._tid = self.iter.tid
+ * call._pos = self.iter.pos # <<<<<<<<<<<<<<
+ * call._coverage = self.iter.n_plp
+ *
+ */
+ __pyx_v_call->_pos = ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->pos;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3057
+ * call._tid = self.iter.tid
+ * call._pos = self.iter.pos
+ * call._coverage = self.iter.n_plp # <<<<<<<<<<<<<<
+ *
+ * cdef uint64_t rms_aux = 0
+ */
+ __pyx_v_call->_coverage = ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->n_plp;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3059
+ * call._coverage = self.iter.n_plp
+ *
+ * cdef uint64_t rms_aux = 0 # <<<<<<<<<<<<<<
+ * cdef int i = 0
+ * cdef bam_pileup1_t * p
+ */
+ __pyx_v_rms_aux = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3060
+ *
+ * cdef uint64_t rms_aux = 0
+ * cdef int i = 0 # <<<<<<<<<<<<<<
+ * cdef bam_pileup1_t * p
+ * cdef int tmp
+ */
+ __pyx_v_i = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3064
+ * cdef int tmp
+ *
+ * for i from 0 <= i < self.iter.n_plp: # <<<<<<<<<<<<<<
+ * p = self.iter.plp + i
+ * if p.b.core.qual < self.cap_mapQ:
+ */
+ __pyx_t_7 = ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->n_plp;
+ for (__pyx_v_i = 0; __pyx_v_i < __pyx_t_7; __pyx_v_i++) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3065
+ *
+ * for i from 0 <= i < self.iter.n_plp:
+ * p = self.iter.plp + i # <<<<<<<<<<<<<<
+ * if p.b.core.qual < self.cap_mapQ:
+ * tmp = p.b.core.qual
+ */
+ __pyx_v_p = (((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->plp + __pyx_v_i);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3066
+ * for i from 0 <= i < self.iter.n_plp:
+ * p = self.iter.plp + i
+ * if p.b.core.qual < self.cap_mapQ: # <<<<<<<<<<<<<<
+ * tmp = p.b.core.qual
+ * else:
+ */
+ __pyx_t_3 = (__pyx_v_p->b->core.qual < ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->cap_mapQ);
+ if (__pyx_t_3) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3067
+ * p = self.iter.plp + i
+ * if p.b.core.qual < self.cap_mapQ:
+ * tmp = p.b.core.qual # <<<<<<<<<<<<<<
+ * else:
+ * tmp = self.cap_mapQ
+ */
+ __pyx_v_tmp = __pyx_v_p->b->core.qual;
+ goto __pyx_L9;
+ }
+ /*else*/ {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3069
+ * tmp = p.b.core.qual
+ * else:
+ * tmp = self.cap_mapQ # <<<<<<<<<<<<<<
+ * rms_aux += tmp * tmp
+ *
+ */
+ __pyx_v_tmp = ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->cap_mapQ;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3070
+ * else:
+ * tmp = self.cap_mapQ
+ * rms_aux += tmp * tmp # <<<<<<<<<<<<<<
+ *
+ * call._rms_mapping_quality = <uint64_t>(sqrt(<double>rms_aux / self.iter.n_plp) + .499)
+ */
+ __pyx_v_rms_aux = (__pyx_v_rms_aux + (__pyx_v_tmp * __pyx_v_tmp));
+ }
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3072
+ * rms_aux += tmp * tmp
+ *
+ * call._rms_mapping_quality = <uint64_t>(sqrt(<double>rms_aux / self.iter.n_plp) + .499) # <<<<<<<<<<<<<<
+ *
+ * return call
+ */
+ __pyx_t_8 = ((double)__pyx_v_rms_aux);
+ if (unlikely(((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->n_plp == 0)) {
+ PyErr_Format(PyExc_ZeroDivisionError, "float division");
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3072; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ }
+ __pyx_v_call->_rms_mapping_quality = ((uint64_t)(sqrt((__pyx_t_8 / ((struct __pyx_obj_9csamtools_IndelCallerBase *)__pyx_v_self)->iter->n_plp)) + .499));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3074
+ * call._rms_mapping_quality = <uint64_t>(sqrt(<double>rms_aux / self.iter.n_plp) + .499)
+ *
+ * return call # <<<<<<<<<<<<<<
+ *
+ * cdef class IndelCaller( IndelCallerBase ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(((PyObject *)__pyx_v_call));
+ __pyx_r = ((PyObject *)__pyx_v_call);
+ 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_AddTraceback("csamtools.IndelCallerBase._call");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_DECREF((PyObject *)__pyx_v_call);
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3089
+ * '''
+ *
+ * def __cinit__(self, # <<<<<<<<<<<<<<
+ * IteratorColumn iterator_column,
+ * **kwargs ):
+ */
+
+static int __pyx_pf_9csamtools_11IndelCaller_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_11IndelCaller_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_IteratorColumn *__pyx_v_iterator_column = 0;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_r;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__iterator_column,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 3089);
+ __pyx_v_kwargs = PyDict_New(); if (unlikely(!__pyx_v_kwargs)) return -1;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[1] = {0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__iterator_column);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_kwargs, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3089; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)values[0]);
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 1) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)PyTuple_GET_ITEM(__pyx_args, 0));
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3089; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_AddTraceback("csamtools.IndelCaller.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_iterator_column), __pyx_ptype_9csamtools_IteratorColumn, 1, "iterator_column", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3090; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.IndelCaller.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3095
+ * pass
+ *
+ * def call(self, reference, int pos ): # <<<<<<<<<<<<<<
+ * """call a snp on chromosome *reference*
+ * and position *pos*.
+ */
+
+static PyObject *__pyx_pf_9csamtools_11IndelCaller_1call(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static char __pyx_doc_9csamtools_11IndelCaller_1call[] = "call a snp on chromosome *reference*\n and position *pos*.\n\n returns a :class:`SNPCall` object or None, if no indel call could be made.\n ";
+static PyObject *__pyx_pf_9csamtools_11IndelCaller_1call(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ PyObject *__pyx_v_reference = 0;
+ int __pyx_v_pos;
+ int __pyx_v_tid;
+ PyObject *__pyx_r = NULL;
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ int __pyx_t_4;
+ PyObject *__pyx_t_5 = NULL;
+ int __pyx_t_6;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__reference,&__pyx_n_s__pos,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("call");
+ __Pyx_TraceCall("call", __pyx_f[0], 3095);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[2] = {0,0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1);
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__reference);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ case 1:
+ values[1] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__pos);
+ if (likely(values[1])) kw_args--;
+ else {
+ __Pyx_RaiseArgtupleInvalid("call", 1, 2, 2, 1); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3095; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, PyTuple_GET_SIZE(__pyx_args), "call") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3095; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_reference = values[0];
+ __pyx_v_pos = __Pyx_PyInt_AsInt(values[1]); if (unlikely((__pyx_v_pos == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3095; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 2) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_reference = PyTuple_GET_ITEM(__pyx_args, 0);
+ __pyx_v_pos = __Pyx_PyInt_AsInt(PyTuple_GET_ITEM(__pyx_args, 1)); if (unlikely((__pyx_v_pos == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3095; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("call", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3095; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_AddTraceback("csamtools.IndelCaller.call");
+ __Pyx_RefNannyFinishContext();
+ return NULL;
+ __pyx_L4_argument_unpacking_done:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3102
+ * """
+ *
+ * cdef int tid = self.iter.samfile.gettid( reference ) # <<<<<<<<<<<<<<
+ *
+ * self.iter.reset( tid, pos, pos + 1 )
+ */
+ __pyx_t_1 = PyObject_GetAttr(((PyObject *)((struct __pyx_obj_9csamtools_IndelCaller *)__pyx_v_self)->__pyx_base.iter->samfile), __pyx_n_s__gettid); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3102; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3102; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(__pyx_v_reference);
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_v_reference);
+ __Pyx_GIVEREF(__pyx_v_reference);
+ __pyx_t_3 = PyObject_Call(__pyx_t_1, ((PyObject *)__pyx_t_2), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3102; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ __pyx_t_4 = __Pyx_PyInt_AsInt(__pyx_t_3); if (unlikely((__pyx_t_4 == (int)-1) && PyErr_Occurred())) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3102; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __pyx_v_tid = __pyx_t_4;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3104
+ * cdef int tid = self.iter.samfile.gettid( reference )
+ *
+ * self.iter.reset( tid, pos, pos + 1 ) # <<<<<<<<<<<<<<
+ *
+ * while 1:
+ */
+ __pyx_t_3 = PyInt_FromLong(__pyx_v_tid); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3104; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __pyx_t_2 = PyInt_FromLong(__pyx_v_pos); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3104; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_1 = PyInt_FromLong((__pyx_v_pos + 1)); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3104; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_t_5 = ((struct __pyx_vtabstruct_9csamtools_IteratorColumn *)((struct __pyx_obj_9csamtools_IndelCaller *)__pyx_v_self)->__pyx_base.iter->__pyx_vtab)->reset(((struct __pyx_obj_9csamtools_IndelCaller *)__pyx_v_self)->__pyx_base.iter, __pyx_t_3, __pyx_t_2, __pyx_t_1); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3104; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3106
+ * self.iter.reset( tid, pos, pos + 1 )
+ *
+ * while 1: # <<<<<<<<<<<<<<
+ * self.iter.cnext()
+ *
+ */
+ while (1) {
+ if (!1) break;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3107
+ *
+ * while 1:
+ * self.iter.cnext() # <<<<<<<<<<<<<<
+ *
+ * if self.iter.n_plp < 0:
+ */
+ ((struct __pyx_vtabstruct_9csamtools_IteratorColumn *)((struct __pyx_obj_9csamtools_IndelCaller *)__pyx_v_self)->__pyx_base.iter->__pyx_vtab)->cnext(((struct __pyx_obj_9csamtools_IndelCaller *)__pyx_v_self)->__pyx_base.iter);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3109
+ * self.iter.cnext()
+ *
+ * if self.iter.n_plp < 0: # <<<<<<<<<<<<<<
+ * raise ValueError("error during iteration" )
+ *
+ */
+ __pyx_t_6 = (((struct __pyx_obj_9csamtools_IndelCaller *)__pyx_v_self)->__pyx_base.iter->n_plp < 0);
+ if (__pyx_t_6) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3110
+ *
+ * if self.iter.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.plp == NULL:
+ */
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_167), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3110; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_Raise(__pyx_t_5, 0, 0);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3110; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L8;
+ }
+ __pyx_L8:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3112
+ * raise ValueError("error during iteration" )
+ *
+ * if self.iter.plp == NULL: # <<<<<<<<<<<<<<
+ * raise ValueError( "no reads in region - no call" )
+ *
+ */
+ __pyx_t_6 = (((struct __pyx_obj_9csamtools_IndelCaller *)__pyx_v_self)->__pyx_base.iter->plp == NULL);
+ if (__pyx_t_6) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3113
+ *
+ * if self.iter.plp == NULL:
+ * raise ValueError( "no reads in region - no call" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.pos == pos: break
+ */
+ __pyx_t_5 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_168), NULL); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3113; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __Pyx_Raise(__pyx_t_5, 0, 0);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3113; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L9;
+ }
+ __pyx_L9:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3115
+ * raise ValueError( "no reads in region - no call" )
+ *
+ * if self.iter.pos == pos: break # <<<<<<<<<<<<<<
+ *
+ * return self._call()
+ */
+ __pyx_t_6 = (((struct __pyx_obj_9csamtools_IndelCaller *)__pyx_v_self)->__pyx_base.iter->pos == __pyx_v_pos);
+ if (__pyx_t_6) {
+ goto __pyx_L7_break;
+ goto __pyx_L10;
+ }
+ __pyx_L10:;
+ }
+ __pyx_L7_break:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3117
+ * if self.iter.pos == pos: break
+ *
+ * return self._call() # <<<<<<<<<<<<<<
+ *
+ * cdef class IteratorIndelCalls( IndelCallerBase ):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_5 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___call); if (unlikely(!__pyx_t_5)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3117; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_5);
+ __pyx_t_1 = PyObject_Call(__pyx_t_5, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3117; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0;
+ __pyx_r = __pyx_t_1;
+ __pyx_t_1 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_XDECREF(__pyx_t_5);
+ __Pyx_AddTraceback("csamtools.IndelCaller.call");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3133
+ * """
+ *
+ * def __cinit__(self, # <<<<<<<<<<<<<<
+ * IteratorColumn iterator_column,
+ * **kwargs ):
+ */
+
+static int __pyx_pf_9csamtools_18IteratorIndelCalls_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/
+static int __pyx_pf_9csamtools_18IteratorIndelCalls_0__cinit__(PyObject *__pyx_v_self, PyObject *__pyx_args, PyObject *__pyx_kwds) {
+ struct __pyx_obj_9csamtools_IteratorColumn *__pyx_v_iterator_column = 0;
+ PyObject *__pyx_v_kwargs = 0;
+ int __pyx_r;
+ static PyObject **__pyx_pyargnames[] = {&__pyx_n_s__iterator_column,0};
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__cinit__");
+ __Pyx_TraceCall("__cinit__", __pyx_f[0], 3133);
+ __pyx_v_kwargs = PyDict_New(); if (unlikely(!__pyx_v_kwargs)) return -1;
+ __Pyx_GOTREF(__pyx_v_kwargs);
+ if (unlikely(__pyx_kwds)) {
+ Py_ssize_t kw_args = PyDict_Size(__pyx_kwds);
+ PyObject* values[1] = {0};
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0);
+ case 0: break;
+ default: goto __pyx_L5_argtuple_error;
+ }
+ switch (PyTuple_GET_SIZE(__pyx_args)) {
+ case 0:
+ values[0] = PyDict_GetItem(__pyx_kwds, __pyx_n_s__iterator_column);
+ if (likely(values[0])) kw_args--;
+ else goto __pyx_L5_argtuple_error;
+ }
+ if (unlikely(kw_args > 0)) {
+ if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, __pyx_v_kwargs, values, PyTuple_GET_SIZE(__pyx_args), "__cinit__") < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3133; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ }
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)values[0]);
+ } else if (PyTuple_GET_SIZE(__pyx_args) != 1) {
+ goto __pyx_L5_argtuple_error;
+ } else {
+ __pyx_v_iterator_column = ((struct __pyx_obj_9csamtools_IteratorColumn *)PyTuple_GET_ITEM(__pyx_args, 0));
+ }
+ goto __pyx_L4_argument_unpacking_done;
+ __pyx_L5_argtuple_error:;
+ __Pyx_RaiseArgtupleInvalid("__cinit__", 1, 1, 1, PyTuple_GET_SIZE(__pyx_args)); {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3133; __pyx_clineno = __LINE__; goto __pyx_L3_error;}
+ __pyx_L3_error:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_AddTraceback("csamtools.IteratorIndelCalls.__cinit__");
+ __Pyx_RefNannyFinishContext();
+ return -1;
+ __pyx_L4_argument_unpacking_done:;
+ if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_iterator_column), __pyx_ptype_9csamtools_IteratorColumn, 1, "iterator_column", 0))) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3134; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ __pyx_r = 0;
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_AddTraceback("csamtools.IteratorIndelCalls.__cinit__");
+ __pyx_r = -1;
+ __pyx_L0:;
+ __Pyx_DECREF(__pyx_v_kwargs);
+ __Pyx_TraceReturn(Py_None);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3139
+ *
+ *
+ * def __iter__(self): # <<<<<<<<<<<<<<
+ * return self
+ *
+ */
+
+static PyObject *__pyx_pf_9csamtools_18IteratorIndelCalls_1__iter__(PyObject *__pyx_v_self); /*proto*/
+static PyObject *__pyx_pf_9csamtools_18IteratorIndelCalls_1__iter__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__iter__");
+ __Pyx_TraceCall("__iter__", __pyx_f[0], 3139);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3140
+ *
+ * def __iter__(self):
+ * return self # <<<<<<<<<<<<<<
+ *
+ * def __next__(self):
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __Pyx_INCREF(__pyx_v_self);
+ __pyx_r = __pyx_v_self;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+/* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3142
+ * return self
+ *
+ * def __next__(self): # <<<<<<<<<<<<<<
+ * """python version of next().
+ * """
+ */
+
+static PyObject *__pyx_pf_9csamtools_18IteratorIndelCalls_2__next__(PyObject *__pyx_v_self); /*proto*/
+static char __pyx_doc_9csamtools_18IteratorIndelCalls_2__next__[] = "python version of next().\n ";
+struct wrapperbase __pyx_wrapperbase_9csamtools_18IteratorIndelCalls_2__next__;
+static PyObject *__pyx_pf_9csamtools_18IteratorIndelCalls_2__next__(PyObject *__pyx_v_self) {
+ PyObject *__pyx_r = NULL;
+ int __pyx_t_1;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ __Pyx_TraceDeclarations
+ __Pyx_RefNannySetupContext("__next__");
+ __Pyx_TraceCall("__next__", __pyx_f[0], 3142);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3147
+ *
+ * # the following code was adapted from bam_plcmd.c:pileup_func()
+ * self.iter.cnext() # <<<<<<<<<<<<<<
+ *
+ * if self.iter.n_plp < 0:
+ */
+ ((struct __pyx_vtabstruct_9csamtools_IteratorColumn *)((struct __pyx_obj_9csamtools_IteratorIndelCalls *)__pyx_v_self)->__pyx_base.iter->__pyx_vtab)->cnext(((struct __pyx_obj_9csamtools_IteratorIndelCalls *)__pyx_v_self)->__pyx_base.iter);
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3149
+ * self.iter.cnext()
+ *
+ * if self.iter.n_plp < 0: # <<<<<<<<<<<<<<
+ * raise ValueError("error during iteration" )
+ *
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorIndelCalls *)__pyx_v_self)->__pyx_base.iter->n_plp < 0);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3150
+ *
+ * if self.iter.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.plp == NULL:
+ */
+ __pyx_t_2 = PyObject_Call(__pyx_builtin_ValueError, ((PyObject *)__pyx_k_tuple_169), NULL); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3150; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __Pyx_Raise(__pyx_t_2, 0, 0);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3150; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L5;
+ }
+ __pyx_L5:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3152
+ * raise ValueError("error during iteration" )
+ *
+ * if self.iter.plp == NULL: # <<<<<<<<<<<<<<
+ * raise StopIteration
+ *
+ */
+ __pyx_t_1 = (((struct __pyx_obj_9csamtools_IteratorIndelCalls *)__pyx_v_self)->__pyx_base.iter->plp == NULL);
+ if (__pyx_t_1) {
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3153
+ *
+ * if self.iter.plp == NULL:
+ * raise StopIteration # <<<<<<<<<<<<<<
+ *
+ * return self._call()
+ */
+ __Pyx_Raise(__pyx_builtin_StopIteration, 0, 0);
+ {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3153; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ goto __pyx_L6;
+ }
+ __pyx_L6:;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3155
+ * raise StopIteration
+ *
+ * return self._call() # <<<<<<<<<<<<<<
+ *
+ * __all__ = ["Samfile",
+ */
+ __Pyx_XDECREF(__pyx_r);
+ __pyx_t_2 = PyObject_GetAttr(__pyx_v_self, __pyx_n_s___call); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3155; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ __pyx_t_3 = PyObject_Call(__pyx_t_2, ((PyObject *)__pyx_empty_tuple), NULL); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3155; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+ __pyx_r = __pyx_t_3;
+ __pyx_t_3 = 0;
+ goto __pyx_L0;
+
+ __pyx_r = Py_None; __Pyx_INCREF(Py_None);
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ __Pyx_AddTraceback("csamtools.IteratorIndelCalls.__next__");
+ __pyx_r = NULL;
+ __pyx_L0:;
+ __Pyx_XGIVEREF(__pyx_r);
+ __Pyx_TraceReturn(__pyx_r);
+ __Pyx_RefNannyFinishContext();
+ return __pyx_r;
+}
+
+static PyObject *__pyx_tp_new_9csamtools_AlignedRead(PyTypeObject *t, PyObject *a, PyObject *k) {
+ PyObject *o = (*t->tp_alloc)(t, 0);
+ if (!o) return 0;
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_AlignedRead(PyObject *o) {
+ {
+ PyObject *etype, *eval, *etb;
+ PyErr_Fetch(&etype, &eval, &etb);
+ ++Py_REFCNT(o);
+ __pyx_pf_9csamtools_11AlignedRead_1__dealloc__(o);
+ if (PyErr_Occurred()) PyErr_WriteUnraisable(o);
+ --Py_REFCNT(o);
+ PyErr_Restore(etype, eval, etb);
+ }
+ (*Py_TYPE(o)->tp_free)(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_qname(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_5qname_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_qname(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_5qname_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_cigar(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_5cigar_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_cigar(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_5cigar_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_seq(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_3seq_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_seq(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_3seq_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_qual(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_4qual_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_qual(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_4qual_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_query(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_5query_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_qqual(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_5qqual_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_qstart(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_6qstart_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_qend(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_4qend_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_qlen(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_4qlen_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_tags(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_4tags_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_tags(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_4tags_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_flag(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_4flag_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_flag(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_4flag_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_rname(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_5rname_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_rname(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_5rname_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_tid(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_3tid_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_tid(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_3tid_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_pos(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_3pos_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_pos(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_3pos_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_bin(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_3bin_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_bin(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_3bin_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_rlen(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_4rlen_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_aend(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_4aend_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_alen(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_4alen_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_mapq(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_4mapq_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_mapq(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_4mapq_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_mrnm(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_4mrnm_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_mrnm(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_4mrnm_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_mpos(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_4mpos_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_mpos(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_4mpos_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_isize(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_5isize_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_isize(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_5isize_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_is_paired(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_9is_paired_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_is_paired(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_9is_paired_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_is_proper_pair(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_14is_proper_pair_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_is_proper_pair(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_14is_proper_pair_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_is_unmapped(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_11is_unmapped_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_is_unmapped(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_11is_unmapped_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_mate_is_unmapped(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_16mate_is_unmapped_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_mate_is_unmapped(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_16mate_is_unmapped_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_is_reverse(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_10is_reverse_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_is_reverse(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_10is_reverse_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_mate_is_reverse(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_15mate_is_reverse_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_mate_is_reverse(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_15mate_is_reverse_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_is_read1(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_8is_read1_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_is_read1(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_8is_read1_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_is_read2(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_8is_read2_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_is_read2(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_8is_read2_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_is_secondary(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_12is_secondary_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_is_secondary(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_12is_secondary_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_is_qcfail(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_9is_qcfail_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_is_qcfail(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_9is_qcfail_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11AlignedRead_is_duplicate(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11AlignedRead_12is_duplicate_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11AlignedRead_is_duplicate(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11AlignedRead_12is_duplicate_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyMethodDef __pyx_methods_9csamtools_AlignedRead[] = {
+ {__Pyx_NAMESTR("compare"), (PyCFunction)__pyx_pf_9csamtools_11AlignedRead_3compare, METH_O, __Pyx_DOCSTR(__pyx_doc_9csamtools_11AlignedRead_3compare)},
+ {__Pyx_NAMESTR("opt"), (PyCFunction)__pyx_pf_9csamtools_11AlignedRead_5opt, METH_O, __Pyx_DOCSTR(__pyx_doc_9csamtools_11AlignedRead_5opt)},
+ {__Pyx_NAMESTR("fancy_str"), (PyCFunction)__pyx_pf_9csamtools_11AlignedRead_6fancy_str, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_9csamtools_11AlignedRead_6fancy_str)},
+ {0, 0, 0, 0}
+};
+
+static struct PyGetSetDef __pyx_getsets_9csamtools_AlignedRead[] = {
+ {(char *)"qname", __pyx_getprop_9csamtools_11AlignedRead_qname, __pyx_setprop_9csamtools_11AlignedRead_qname, __Pyx_DOCSTR(__pyx_k_170), 0},
+ {(char *)"cigar", __pyx_getprop_9csamtools_11AlignedRead_cigar, __pyx_setprop_9csamtools_11AlignedRead_cigar, __Pyx_DOCSTR(__pyx_k_171), 0},
+ {(char *)"seq", __pyx_getprop_9csamtools_11AlignedRead_seq, __pyx_setprop_9csamtools_11AlignedRead_seq, __Pyx_DOCSTR(__pyx_k_172), 0},
+ {(char *)"qual", __pyx_getprop_9csamtools_11AlignedRead_qual, __pyx_setprop_9csamtools_11AlignedRead_qual, __Pyx_DOCSTR(__pyx_k_173), 0},
+ {(char *)"query", __pyx_getprop_9csamtools_11AlignedRead_query, 0, __Pyx_DOCSTR(__pyx_k_174), 0},
+ {(char *)"qqual", __pyx_getprop_9csamtools_11AlignedRead_qqual, 0, __Pyx_DOCSTR(__pyx_k_175), 0},
+ {(char *)"qstart", __pyx_getprop_9csamtools_11AlignedRead_qstart, 0, __Pyx_DOCSTR(__pyx_k_176), 0},
+ {(char *)"qend", __pyx_getprop_9csamtools_11AlignedRead_qend, 0, __Pyx_DOCSTR(__pyx_k_177), 0},
+ {(char *)"qlen", __pyx_getprop_9csamtools_11AlignedRead_qlen, 0, __Pyx_DOCSTR(__pyx_k_178), 0},
+ {(char *)"tags", __pyx_getprop_9csamtools_11AlignedRead_tags, __pyx_setprop_9csamtools_11AlignedRead_tags, __Pyx_DOCSTR(__pyx_k_179), 0},
+ {(char *)"flag", __pyx_getprop_9csamtools_11AlignedRead_flag, __pyx_setprop_9csamtools_11AlignedRead_flag, __Pyx_DOCSTR(__pyx_k_180), 0},
+ {(char *)"rname", __pyx_getprop_9csamtools_11AlignedRead_rname, __pyx_setprop_9csamtools_11AlignedRead_rname, __Pyx_DOCSTR(__pyx_k_181), 0},
+ {(char *)"tid", __pyx_getprop_9csamtools_11AlignedRead_tid, __pyx_setprop_9csamtools_11AlignedRead_tid, __Pyx_DOCSTR(__pyx_k_182), 0},
+ {(char *)"pos", __pyx_getprop_9csamtools_11AlignedRead_pos, __pyx_setprop_9csamtools_11AlignedRead_pos, __Pyx_DOCSTR(__pyx_k_183), 0},
+ {(char *)"bin", __pyx_getprop_9csamtools_11AlignedRead_bin, __pyx_setprop_9csamtools_11AlignedRead_bin, __Pyx_DOCSTR(__pyx_k_184), 0},
+ {(char *)"rlen", __pyx_getprop_9csamtools_11AlignedRead_rlen, 0, __Pyx_DOCSTR(__pyx_k_185), 0},
+ {(char *)"aend", __pyx_getprop_9csamtools_11AlignedRead_aend, 0, __Pyx_DOCSTR(__pyx_k_186), 0},
+ {(char *)"alen", __pyx_getprop_9csamtools_11AlignedRead_alen, 0, __Pyx_DOCSTR(__pyx_k_187), 0},
+ {(char *)"mapq", __pyx_getprop_9csamtools_11AlignedRead_mapq, __pyx_setprop_9csamtools_11AlignedRead_mapq, __Pyx_DOCSTR(__pyx_k_188), 0},
+ {(char *)"mrnm", __pyx_getprop_9csamtools_11AlignedRead_mrnm, __pyx_setprop_9csamtools_11AlignedRead_mrnm, __Pyx_DOCSTR(__pyx_k_189), 0},
+ {(char *)"mpos", __pyx_getprop_9csamtools_11AlignedRead_mpos, __pyx_setprop_9csamtools_11AlignedRead_mpos, __Pyx_DOCSTR(__pyx_k_190), 0},
+ {(char *)"isize", __pyx_getprop_9csamtools_11AlignedRead_isize, __pyx_setprop_9csamtools_11AlignedRead_isize, __Pyx_DOCSTR(__pyx_k_191), 0},
+ {(char *)"is_paired", __pyx_getprop_9csamtools_11AlignedRead_is_paired, __pyx_setprop_9csamtools_11AlignedRead_is_paired, __Pyx_DOCSTR(__pyx_k_192), 0},
+ {(char *)"is_proper_pair", __pyx_getprop_9csamtools_11AlignedRead_is_proper_pair, __pyx_setprop_9csamtools_11AlignedRead_is_proper_pair, __Pyx_DOCSTR(__pyx_k_193), 0},
+ {(char *)"is_unmapped", __pyx_getprop_9csamtools_11AlignedRead_is_unmapped, __pyx_setprop_9csamtools_11AlignedRead_is_unmapped, __Pyx_DOCSTR(__pyx_k_194), 0},
+ {(char *)"mate_is_unmapped", __pyx_getprop_9csamtools_11AlignedRead_mate_is_unmapped, __pyx_setprop_9csamtools_11AlignedRead_mate_is_unmapped, __Pyx_DOCSTR(__pyx_k_195), 0},
+ {(char *)"is_reverse", __pyx_getprop_9csamtools_11AlignedRead_is_reverse, __pyx_setprop_9csamtools_11AlignedRead_is_reverse, __Pyx_DOCSTR(__pyx_k_196), 0},
+ {(char *)"mate_is_reverse", __pyx_getprop_9csamtools_11AlignedRead_mate_is_reverse, __pyx_setprop_9csamtools_11AlignedRead_mate_is_reverse, __Pyx_DOCSTR(__pyx_k_197), 0},
+ {(char *)"is_read1", __pyx_getprop_9csamtools_11AlignedRead_is_read1, __pyx_setprop_9csamtools_11AlignedRead_is_read1, __Pyx_DOCSTR(__pyx_k_198), 0},
+ {(char *)"is_read2", __pyx_getprop_9csamtools_11AlignedRead_is_read2, __pyx_setprop_9csamtools_11AlignedRead_is_read2, __Pyx_DOCSTR(__pyx_k_199), 0},
+ {(char *)"is_secondary", __pyx_getprop_9csamtools_11AlignedRead_is_secondary, __pyx_setprop_9csamtools_11AlignedRead_is_secondary, __Pyx_DOCSTR(__pyx_k_200), 0},
+ {(char *)"is_qcfail", __pyx_getprop_9csamtools_11AlignedRead_is_qcfail, __pyx_setprop_9csamtools_11AlignedRead_is_qcfail, __Pyx_DOCSTR(__pyx_k_201), 0},
+ {(char *)"is_duplicate", __pyx_getprop_9csamtools_11AlignedRead_is_duplicate, __pyx_setprop_9csamtools_11AlignedRead_is_duplicate, __Pyx_DOCSTR(__pyx_k_202), 0},
+ {0, 0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_AlignedRead = {
+ 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_AlignedRead = {
+ 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_AlignedRead = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_AlignedRead = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_AlignedRead = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.AlignedRead"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_AlignedRead), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_AlignedRead, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_AlignedRead, /*tp_as_number*/
+ &__pyx_tp_as_sequence_AlignedRead, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_AlignedRead, /*tp_as_mapping*/
+ __pyx_pf_9csamtools_11AlignedRead_4__hash__, /*tp_hash*/
+ 0, /*tp_call*/
+ __pyx_pf_9csamtools_11AlignedRead_2__str__, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_AlignedRead, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/
+ __Pyx_DOCSTR("\n Class representing an aligned read. see SAM format specification for meaning of fields (http://samtools.sourceforge.net/).\n\n This class stores a handle to the samtools C-structure representing\n an aligned read. Member read access is forwarded to the C-structure\n and converted into python objects. This implementation should be fast,\n as only the data needed is converted.\n\n For write access, the C-structure is updated in-place. This is\n not the most efficient way to build BAM entries, as the variable\n length data is concatenated and thus needs to resized if\n a field is updated. Furthermore, the BAM entry might be\n in an inconsistent state. The :meth:`~validate` method can\n be used to check if an entry is consistent.\n\n One issue to look out for is that the sequence should always\n be set *before* the quality scores. Setting the sequence will\n also erase any quality scores that were set previously.\n "), /*tp_doc*/
+ 0, /*tp_traverse*/
+ 0, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_AlignedRead, /*tp_methods*/
+ 0, /*tp_members*/
+ __pyx_getsets_9csamtools_AlignedRead, /*tp_getset*/
+ 0, /*tp_base*/
+ 0, /*tp_dict*/
+ 0, /*tp_descr_get*/
+ 0, /*tp_descr_set*/
+ 0, /*tp_dictoffset*/
+ __pyx_pf_9csamtools_11AlignedRead_0__init__, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_AlignedRead, /*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 PyObject *__pyx_tp_new_9csamtools_PileupProxy(PyTypeObject *t, PyObject *a, PyObject *k) {
+ PyObject *o = (*t->tp_alloc)(t, 0);
+ if (!o) return 0;
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_PileupProxy(PyObject *o) {
+ (*Py_TYPE(o)->tp_free)(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11PileupProxy_tid(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11PileupProxy_3tid_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11PileupProxy_n(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11PileupProxy_1n_0__get__(o);
+}
+
+static int __pyx_setprop_9csamtools_11PileupProxy_n(PyObject *o, PyObject *v, void *x) {
+ if (v) {
+ return __pyx_pf_9csamtools_11PileupProxy_1n_1__set__(o, v);
+ }
+ else {
+ PyErr_SetString(PyExc_NotImplementedError, "__del__");
+ return -1;
+ }
+}
+
+static PyObject *__pyx_getprop_9csamtools_11PileupProxy_pos(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11PileupProxy_3pos_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_11PileupProxy_pileups(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_11PileupProxy_7pileups_0__get__(o);
+}
+
+static PyMethodDef __pyx_methods_9csamtools_PileupProxy[] = {
+ {0, 0, 0, 0}
+};
+
+static struct PyGetSetDef __pyx_getsets_9csamtools_PileupProxy[] = {
+ {(char *)"tid", __pyx_getprop_9csamtools_11PileupProxy_tid, 0, __Pyx_DOCSTR(__pyx_k_203), 0},
+ {(char *)"n", __pyx_getprop_9csamtools_11PileupProxy_n, __pyx_setprop_9csamtools_11PileupProxy_n, __Pyx_DOCSTR(__pyx_k_204), 0},
+ {(char *)"pos", __pyx_getprop_9csamtools_11PileupProxy_pos, 0, 0, 0},
+ {(char *)"pileups", __pyx_getprop_9csamtools_11PileupProxy_pileups, 0, __Pyx_DOCSTR(__pyx_k_205), 0},
+ {0, 0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_PileupProxy = {
+ 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_PileupProxy = {
+ 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_PileupProxy = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_PileupProxy = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_PileupProxy = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.PileupProxy"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_PileupProxy), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_PileupProxy, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_PileupProxy, /*tp_as_number*/
+ &__pyx_tp_as_sequence_PileupProxy, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_PileupProxy, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ __pyx_pf_9csamtools_11PileupProxy_1__str__, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_PileupProxy, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/
+ __Pyx_DOCSTR("A pileup column. A pileup column contains\n all the reads that map to a certain target base.\n\n tid\n chromosome ID as is defined in the header\n pos\n the target base coordinate (0-based)\n n\n number of reads mapping to this column \n pileups\n list of reads (:class:`pysam.PileupRead`) aligned to this column\n\n This class is a proxy for results returned by the samtools pileup engine.\n If the underlying engine iterator advances, the results of this column\n will change.\n "), /*tp_doc*/
+ 0, /*tp_traverse*/
+ 0, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_PileupProxy, /*tp_methods*/
+ 0, /*tp_members*/
+ __pyx_getsets_9csamtools_PileupProxy, /*tp_getset*/
+ 0, /*tp_base*/
+ 0, /*tp_dict*/
+ 0, /*tp_descr_get*/
+ 0, /*tp_descr_set*/
+ 0, /*tp_dictoffset*/
+ __pyx_pf_9csamtools_11PileupProxy_0__init__, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_PileupProxy, /*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 PyObject *__pyx_tp_new_9csamtools_PileupRead(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_PileupRead *p;
+ PyObject *o = (*t->tp_alloc)(t, 0);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_PileupRead *)o);
+ p->_alignment = ((struct __pyx_obj_9csamtools_AlignedRead *)Py_None); Py_INCREF(Py_None);
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_PileupRead(PyObject *o) {
+ struct __pyx_obj_9csamtools_PileupRead *p = (struct __pyx_obj_9csamtools_PileupRead *)o;
+ Py_XDECREF(((PyObject *)p->_alignment));
+ (*Py_TYPE(o)->tp_free)(o);
+}
+
+static int __pyx_tp_traverse_9csamtools_PileupRead(PyObject *o, visitproc v, void *a) {
+ int e;
+ struct __pyx_obj_9csamtools_PileupRead *p = (struct __pyx_obj_9csamtools_PileupRead *)o;
+ if (p->_alignment) {
+ e = (*v)(((PyObject*)p->_alignment), a); if (e) return e;
+ }
+ return 0;
+}
+
+static int __pyx_tp_clear_9csamtools_PileupRead(PyObject *o) {
+ struct __pyx_obj_9csamtools_PileupRead *p = (struct __pyx_obj_9csamtools_PileupRead *)o;
+ PyObject* tmp;
+ tmp = ((PyObject*)p->_alignment);
+ p->_alignment = ((struct __pyx_obj_9csamtools_AlignedRead *)Py_None); Py_INCREF(Py_None);
+ Py_XDECREF(tmp);
+ return 0;
+}
+
+static PyObject *__pyx_getprop_9csamtools_10PileupRead_alignment(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_10PileupRead_9alignment_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_10PileupRead_qpos(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_10PileupRead_4qpos_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_10PileupRead_indel(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_10PileupRead_5indel_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_10PileupRead_is_del(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_10PileupRead_6is_del_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_10PileupRead_is_head(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_10PileupRead_7is_head_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_10PileupRead_is_tail(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_10PileupRead_7is_tail_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_10PileupRead_level(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_10PileupRead_5level_0__get__(o);
+}
+
+static PyMethodDef __pyx_methods_9csamtools_PileupRead[] = {
+ {0, 0, 0, 0}
+};
+
+static struct PyGetSetDef __pyx_getsets_9csamtools_PileupRead[] = {
+ {(char *)"alignment", __pyx_getprop_9csamtools_10PileupRead_alignment, 0, __Pyx_DOCSTR(__pyx_k_206), 0},
+ {(char *)"qpos", __pyx_getprop_9csamtools_10PileupRead_qpos, 0, __Pyx_DOCSTR(__pyx_k_207), 0},
+ {(char *)"indel", __pyx_getprop_9csamtools_10PileupRead_indel, 0, __Pyx_DOCSTR(__pyx_k_208), 0},
+ {(char *)"is_del", __pyx_getprop_9csamtools_10PileupRead_is_del, 0, __Pyx_DOCSTR(__pyx_k_209), 0},
+ {(char *)"is_head", __pyx_getprop_9csamtools_10PileupRead_is_head, 0, 0, 0},
+ {(char *)"is_tail", __pyx_getprop_9csamtools_10PileupRead_is_tail, 0, 0, 0},
+ {(char *)"level", __pyx_getprop_9csamtools_10PileupRead_level, 0, 0, 0},
+ {0, 0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_PileupRead = {
+ 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_PileupRead = {
+ 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_PileupRead = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_PileupRead = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_PileupRead = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.PileupRead"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_PileupRead), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_PileupRead, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_PileupRead, /*tp_as_number*/
+ &__pyx_tp_as_sequence_PileupRead, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_PileupRead, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ __pyx_pf_9csamtools_10PileupRead_1__str__, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_PileupRead, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("A read aligned to a column.\n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_PileupRead, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_PileupRead, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_PileupRead, /*tp_methods*/
+ 0, /*tp_members*/
+ __pyx_getsets_9csamtools_PileupRead, /*tp_getset*/
+ 0, /*tp_base*/
+ 0, /*tp_dict*/
+ 0, /*tp_descr_get*/
+ 0, /*tp_descr_set*/
+ 0, /*tp_dictoffset*/
+ __pyx_pf_9csamtools_10PileupRead_0__init__, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_PileupRead, /*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 struct __pyx_vtabstruct_9csamtools_Fastafile __pyx_vtable_9csamtools_Fastafile;
+
+static PyObject *__pyx_tp_new_9csamtools_Fastafile(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_Fastafile *p;
+ PyObject *o = (*t->tp_alloc)(t, 0);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_Fastafile *)o);
+ p->__pyx_vtab = __pyx_vtabptr_9csamtools_Fastafile;
+ if (__pyx_pf_9csamtools_9Fastafile_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_Fastafile(PyObject *o) {
+ {
+ PyObject *etype, *eval, *etb;
+ PyErr_Fetch(&etype, &eval, &etb);
+ ++Py_REFCNT(o);
+ __pyx_pf_9csamtools_9Fastafile_5__dealloc__(o);
+ if (PyErr_Occurred()) PyErr_WriteUnraisable(o);
+ --Py_REFCNT(o);
+ PyErr_Restore(etype, eval, etb);
+ }
+ (*Py_TYPE(o)->tp_free)(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9Fastafile_filename(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9Fastafile_8filename_0__get__(o);
+}
+
+static PyMethodDef __pyx_methods_9csamtools_Fastafile[] = {
+ {__Pyx_NAMESTR("_isOpen"), (PyCFunction)__pyx_pf_9csamtools_9Fastafile_1_isOpen, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_9csamtools_9Fastafile_1_isOpen)},
+ {__Pyx_NAMESTR("_open"), (PyCFunction)__pyx_pf_9csamtools_9Fastafile_3_open, METH_O, __Pyx_DOCSTR(__pyx_doc_9csamtools_9Fastafile_3_open)},
+ {__Pyx_NAMESTR("close"), (PyCFunction)__pyx_pf_9csamtools_9Fastafile_4close, METH_NOARGS, __Pyx_DOCSTR(0)},
+ {__Pyx_NAMESTR("fetch"), (PyCFunction)__pyx_pf_9csamtools_9Fastafile_6fetch, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_9Fastafile_6fetch)},
+ {0, 0, 0, 0}
+};
+
+static struct PyGetSetDef __pyx_getsets_9csamtools_Fastafile[] = {
+ {(char *)"filename", __pyx_getprop_9csamtools_9Fastafile_filename, 0, __Pyx_DOCSTR(__pyx_k_210), 0},
+ {0, 0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_Fastafile = {
+ 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_Fastafile = {
+ __pyx_pf_9csamtools_9Fastafile_2__len__, /*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_Fastafile = {
+ __pyx_pf_9csamtools_9Fastafile_2__len__, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_Fastafile = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_Fastafile = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.Fastafile"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_Fastafile), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_Fastafile, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_Fastafile, /*tp_as_number*/
+ &__pyx_tp_as_sequence_Fastafile, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_Fastafile, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_Fastafile, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/
+ __Pyx_DOCSTR("*(filename)*\n \n A *FASTA* file. The file is automatically opened.\n\n The file expects an indexed fasta file.\n\n TODO: \n add automatic indexing.\n add function to get sequence names.\n "), /*tp_doc*/
+ 0, /*tp_traverse*/
+ 0, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_Fastafile, /*tp_methods*/
+ 0, /*tp_members*/
+ __pyx_getsets_9csamtools_Fastafile, /*tp_getset*/
+ 0, /*tp_base*/
+ 0, /*tp_dict*/
+ 0, /*tp_descr_get*/
+ 0, /*tp_descr_set*/
+ 0, /*tp_dictoffset*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_Fastafile, /*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 struct __pyx_vtabstruct_9csamtools_Samfile __pyx_vtable_9csamtools_Samfile;
+
+static PyObject *__pyx_tp_new_9csamtools_Samfile(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_Samfile *p;
+ PyObject *o = (*t->tp_alloc)(t, 0);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_Samfile *)o);
+ p->__pyx_vtab = __pyx_vtabptr_9csamtools_Samfile;
+ if (__pyx_pf_9csamtools_7Samfile_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_Samfile(PyObject *o) {
+ {
+ PyObject *etype, *eval, *etb;
+ PyErr_Fetch(&etype, &eval, &etb);
+ ++Py_REFCNT(o);
+ __pyx_pf_9csamtools_7Samfile_14__dealloc__(o);
+ if (PyErr_Occurred()) PyErr_WriteUnraisable(o);
+ --Py_REFCNT(o);
+ PyErr_Restore(etype, eval, etb);
+ }
+ (*Py_TYPE(o)->tp_free)(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7Samfile_filename(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7Samfile_8filename_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7Samfile_nreferences(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7Samfile_11nreferences_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7Samfile_references(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7Samfile_10references_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7Samfile_lengths(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7Samfile_7lengths_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7Samfile_text(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7Samfile_4text_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7Samfile_header(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7Samfile_6header_0__get__(o);
+}
+
+static PyMethodDef __pyx_methods_9csamtools_Samfile[] = {
+ {__Pyx_NAMESTR("_isOpen"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_1_isOpen, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_1_isOpen)},
+ {__Pyx_NAMESTR("_hasIndex"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_2_hasIndex, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_2_hasIndex)},
+ {__Pyx_NAMESTR("_open"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_3_open, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_3_open)},
+ {__Pyx_NAMESTR("getrname"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_4getrname, METH_O, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_4getrname)},
+ {__Pyx_NAMESTR("gettid"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_5gettid, METH_O, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_5gettid)},
+ {__Pyx_NAMESTR("_parseRegion"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_6_parseRegion, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_6_parseRegion)},
+ {__Pyx_NAMESTR("seek"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_7seek, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_7seek)},
+ {__Pyx_NAMESTR("tell"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_8tell, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_8tell)},
+ {__Pyx_NAMESTR("fetch"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_9fetch, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_9fetch)},
+ {__Pyx_NAMESTR("mate"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_10mate, METH_O, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_10mate)},
+ {__Pyx_NAMESTR("count"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_11count, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_11count)},
+ {__Pyx_NAMESTR("pileup"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_12pileup, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_12pileup)},
+ {__Pyx_NAMESTR("close"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_13close, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_13close)},
+ {__Pyx_NAMESTR("write"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_15write, METH_O, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_15write)},
+ {__Pyx_NAMESTR("__enter__"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_16__enter__, METH_NOARGS, __Pyx_DOCSTR(0)},
+ {__Pyx_NAMESTR("__exit__"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_17__exit__, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(0)},
+ {__Pyx_NAMESTR("_buildLine"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_18_buildLine, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_18_buildLine)},
+ {__Pyx_NAMESTR("__next__"), (PyCFunction)__pyx_pf_9csamtools_7Samfile_20__next__, METH_NOARGS|METH_COEXIST, __Pyx_DOCSTR(__pyx_doc_9csamtools_7Samfile_20__next__)},
+ {0, 0, 0, 0}
+};
+
+static struct PyGetSetDef __pyx_getsets_9csamtools_Samfile[] = {
+ {(char *)"filename", __pyx_getprop_9csamtools_7Samfile_filename, 0, __Pyx_DOCSTR(__pyx_k_210), 0},
+ {(char *)"nreferences", __pyx_getprop_9csamtools_7Samfile_nreferences, 0, __Pyx_DOCSTR(__pyx_k_211), 0},
+ {(char *)"references", __pyx_getprop_9csamtools_7Samfile_references, 0, __Pyx_DOCSTR(__pyx_k_212), 0},
+ {(char *)"lengths", __pyx_getprop_9csamtools_7Samfile_lengths, 0, __Pyx_DOCSTR(__pyx_k_213), 0},
+ {(char *)"text", __pyx_getprop_9csamtools_7Samfile_text, 0, __Pyx_DOCSTR(__pyx_k_214), 0},
+ {(char *)"header", __pyx_getprop_9csamtools_7Samfile_header, 0, __Pyx_DOCSTR(__pyx_k_215), 0},
+ {0, 0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_Samfile = {
+ 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_Samfile = {
+ 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_Samfile = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_Samfile = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_Samfile = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.Samfile"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_Samfile), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_Samfile, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_Samfile, /*tp_as_number*/
+ &__pyx_tp_as_sequence_Samfile, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_Samfile, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_Samfile, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/
+ __Pyx_DOCSTR("*(filename, mode='r', template = None, referencenames = None, referencelengths = None, text = NULL, header = None)*\n \n A :term:`SAM`/:term:`BAM` formatted file. The file is automatically opened.\n \n *mode* should be ``r`` for reading or ``w`` for writing. The default is text mode so for binary \n (:term:`BAM`) I/O you should append ``b`` for compressed or ``u`` for uncompressed :term:`BAM` output. \n Use ``h`` to output header information in text (:term:`TAM`) mode.\n\n If ``b`` is present, it must immediately follow ``r`` or ``w``. \n Valid modes are ``r``, ``w``, ``wh``, ``rb``, ``wb`` and ``wbu``. For instance, to open \n a :term:`BAM` formatted file for reading, type::\n\n import pysam\n f = pysam.Samfile('ex1.bam','rb')\n\n If an index for a BAM file exists (.bai), it will be opened automatically. Without an index random\n access to reads via :meth:`fetch` and :meth:`pileup` is disabled.\n\n For writing, the header of a :term:`SAM` file/:term:`BAM` file can be constituted from several\n sources (see also the samtools format specification):\n\n 1. If *template* is given, the header is copied from a another *Samfile* \n (*template* must be of type *Samfile*).\n\n 2. If *header* is given, the header is built from a multi-level dictionary. The first level \n are the four types ('HD', 'SQ', ...). The second level are a list of lines, with each line \n being a list of tag-value pairs.\n\n 3. If *text* is given, new header text is copied from raw text.\n\n 4. The names (*referencenames*) and lengths (*referencelengths*) are supplied directly as lists. \n\n "), /*tp_doc*/
+ 0, /*tp_traverse*/
+ 0, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ __pyx_pf_9csamtools_7Samfile_19__iter__, /*tp_iter*/
+ __pyx_pf_9csamtools_7Samfile_20__next__, /*tp_iternext*/
+ __pyx_methods_9csamtools_Samfile, /*tp_methods*/
+ 0, /*tp_members*/
+ __pyx_getsets_9csamtools_Samfile, /*tp_getset*/
+ 0, /*tp_base*/
+ 0, /*tp_dict*/
+ 0, /*tp_descr_get*/
+ 0, /*tp_descr_set*/
+ 0, /*tp_dictoffset*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_Samfile, /*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 PyObject *__pyx_tp_new_9csamtools_IteratorRow(PyTypeObject *t, PyObject *a, PyObject *k) {
+ PyObject *o = (*t->tp_alloc)(t, 0);
+ if (!o) return 0;
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_IteratorRow(PyObject *o) {
+ (*Py_TYPE(o)->tp_free)(o);
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IteratorRow[] = {
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IteratorRow = {
+ 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_IteratorRow = {
+ 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_IteratorRow = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IteratorRow = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IteratorRow = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IteratorRow"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IteratorRow), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_IteratorRow, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IteratorRow, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IteratorRow, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IteratorRow, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IteratorRow, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/
+ __Pyx_DOCSTR("abstract base class for iterators over mapped reads.\n\n Various iterators implement different behaviours for wrapping around\n contig boundaries. Examples include:\n\n :class:`pysam.IteratorRowRegion`\n iterate within a single contig and a defined region.\n\n :class:`pysam.IteratorRowAll`\n iterate until EOF. This iterator will also include unmapped reads.\n\n :class:`pysam.IteratorRowAllRefs`\n iterate over all reads in all reference sequences.\n \n The method :meth:`Samfile.fetch` returns an IteratorRow.\n "), /*tp_doc*/
+ 0, /*tp_traverse*/
+ 0, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_IteratorRow, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IteratorRow, /*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 struct __pyx_vtabstruct_9csamtools_IteratorRowRegion __pyx_vtable_9csamtools_IteratorRowRegion;
+
+static PyObject *__pyx_tp_new_9csamtools_IteratorRowRegion(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_IteratorRowRegion *p;
+ PyObject *o = __pyx_tp_new_9csamtools_IteratorRow(t, a, k);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_IteratorRowRegion *)o);
+ p->__pyx_vtab = __pyx_vtabptr_9csamtools_IteratorRowRegion;
+ p->samfile = ((struct __pyx_obj_9csamtools_Samfile *)Py_None); Py_INCREF(Py_None);
+ if (__pyx_pf_9csamtools_17IteratorRowRegion_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_IteratorRowRegion(PyObject *o) {
+ struct __pyx_obj_9csamtools_IteratorRowRegion *p = (struct __pyx_obj_9csamtools_IteratorRowRegion *)o;
+ {
+ PyObject *etype, *eval, *etb;
+ PyErr_Fetch(&etype, &eval, &etb);
+ ++Py_REFCNT(o);
+ __pyx_pf_9csamtools_17IteratorRowRegion_3__dealloc__(o);
+ if (PyErr_Occurred()) PyErr_WriteUnraisable(o);
+ --Py_REFCNT(o);
+ PyErr_Restore(etype, eval, etb);
+ }
+ Py_XDECREF(((PyObject *)p->samfile));
+ __pyx_tp_dealloc_9csamtools_IteratorRow(o);
+}
+
+static int __pyx_tp_traverse_9csamtools_IteratorRowRegion(PyObject *o, visitproc v, void *a) {
+ int e;
+ struct __pyx_obj_9csamtools_IteratorRowRegion *p = (struct __pyx_obj_9csamtools_IteratorRowRegion *)o;
+ if (__pyx_ptype_9csamtools_IteratorRow->tp_traverse) {
+ e = __pyx_ptype_9csamtools_IteratorRow->tp_traverse(o, v, a); if (e) return e;
+ }
+ if (p->samfile) {
+ e = (*v)(((PyObject*)p->samfile), a); if (e) return e;
+ }
+ return 0;
+}
+
+static int __pyx_tp_clear_9csamtools_IteratorRowRegion(PyObject *o) {
+ struct __pyx_obj_9csamtools_IteratorRowRegion *p = (struct __pyx_obj_9csamtools_IteratorRowRegion *)o;
+ PyObject* tmp;
+ if (__pyx_ptype_9csamtools_IteratorRow->tp_clear) {
+ __pyx_ptype_9csamtools_IteratorRow->tp_clear(o);
+ }
+ tmp = ((PyObject*)p->samfile);
+ p->samfile = ((struct __pyx_obj_9csamtools_Samfile *)Py_None); Py_INCREF(Py_None);
+ Py_XDECREF(tmp);
+ return 0;
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IteratorRowRegion[] = {
+ {__Pyx_NAMESTR("__next__"), (PyCFunction)__pyx_pf_9csamtools_17IteratorRowRegion_2__next__, METH_NOARGS|METH_COEXIST, __Pyx_DOCSTR(__pyx_doc_9csamtools_17IteratorRowRegion_2__next__)},
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IteratorRowRegion = {
+ 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_IteratorRowRegion = {
+ 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_IteratorRowRegion = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IteratorRowRegion = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IteratorRowRegion = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IteratorRowRegion"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IteratorRowRegion), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_IteratorRowRegion, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IteratorRowRegion, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IteratorRowRegion, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IteratorRowRegion, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IteratorRowRegion, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("*(Samfile samfile, int tid, int beg, int end, int reopen = True )*\n\n iterate over mapped reads in a region.\n\n By default, the file is re-openend to avoid conflicts if\n multiple operators work on the same file. Set *reopen* = False\n to not re-open *samfile*.\n\n The samtools iterators assume that the file\n position between iterations do not change.\n As a consequence, no two iterators can work\n on the same file. To permit this, each iterator\n creates its own file handle by re-opening the\n file.\n\n Note that the index will be shared between \n samfile and the iterator.\n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_IteratorRowRegion, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_IteratorRowRegion, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ __pyx_pf_9csamtools_17IteratorRowRegion_1__iter__, /*tp_iter*/
+ __pyx_pf_9csamtools_17IteratorRowRegion_2__next__, /*tp_iternext*/
+ __pyx_methods_9csamtools_IteratorRowRegion, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IteratorRowRegion, /*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 struct __pyx_vtabstruct_9csamtools_IteratorRowAll __pyx_vtable_9csamtools_IteratorRowAll;
+
+static PyObject *__pyx_tp_new_9csamtools_IteratorRowAll(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_IteratorRowAll *p;
+ PyObject *o = __pyx_tp_new_9csamtools_IteratorRow(t, a, k);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_IteratorRowAll *)o);
+ p->__pyx_vtab = __pyx_vtabptr_9csamtools_IteratorRowAll;
+ if (__pyx_pf_9csamtools_14IteratorRowAll_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_IteratorRowAll(PyObject *o) {
+ {
+ PyObject *etype, *eval, *etb;
+ PyErr_Fetch(&etype, &eval, &etb);
+ ++Py_REFCNT(o);
+ __pyx_pf_9csamtools_14IteratorRowAll_3__dealloc__(o);
+ if (PyErr_Occurred()) PyErr_WriteUnraisable(o);
+ --Py_REFCNT(o);
+ PyErr_Restore(etype, eval, etb);
+ }
+ __pyx_tp_dealloc_9csamtools_IteratorRow(o);
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IteratorRowAll[] = {
+ {__Pyx_NAMESTR("__next__"), (PyCFunction)__pyx_pf_9csamtools_14IteratorRowAll_2__next__, METH_NOARGS|METH_COEXIST, __Pyx_DOCSTR(__pyx_doc_9csamtools_14IteratorRowAll_2__next__)},
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IteratorRowAll = {
+ 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_IteratorRowAll = {
+ 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_IteratorRowAll = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IteratorRowAll = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IteratorRowAll = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IteratorRowAll"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IteratorRowAll), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_IteratorRowAll, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IteratorRowAll, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IteratorRowAll, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IteratorRowAll, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IteratorRowAll, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/
+ __Pyx_DOCSTR("*(Samfile samfile, int reopen = True)*\n\n iterate over all reads in *samfile*\n\n By default, the file is re-openend to avoid conflicts if\n multiple operators work on the same file. Set *reopen* = False\n to not re-open *samfile*.\n "), /*tp_doc*/
+ 0, /*tp_traverse*/
+ 0, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ __pyx_pf_9csamtools_14IteratorRowAll_1__iter__, /*tp_iter*/
+ __pyx_pf_9csamtools_14IteratorRowAll_2__next__, /*tp_iternext*/
+ __pyx_methods_9csamtools_IteratorRowAll, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IteratorRowAll, /*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 PyObject *__pyx_tp_new_9csamtools_IteratorRowAllRefs(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_IteratorRowAllRefs *p;
+ PyObject *o = __pyx_tp_new_9csamtools_IteratorRow(t, a, k);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_IteratorRowAllRefs *)o);
+ p->samfile = ((struct __pyx_obj_9csamtools_Samfile *)Py_None); Py_INCREF(Py_None);
+ p->rowiter = ((struct __pyx_obj_9csamtools_IteratorRowRegion *)Py_None); Py_INCREF(Py_None);
+ if (__pyx_pf_9csamtools_18IteratorRowAllRefs_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_IteratorRowAllRefs(PyObject *o) {
+ struct __pyx_obj_9csamtools_IteratorRowAllRefs *p = (struct __pyx_obj_9csamtools_IteratorRowAllRefs *)o;
+ Py_XDECREF(((PyObject *)p->samfile));
+ Py_XDECREF(((PyObject *)p->rowiter));
+ __pyx_tp_dealloc_9csamtools_IteratorRow(o);
+}
+
+static int __pyx_tp_traverse_9csamtools_IteratorRowAllRefs(PyObject *o, visitproc v, void *a) {
+ int e;
+ struct __pyx_obj_9csamtools_IteratorRowAllRefs *p = (struct __pyx_obj_9csamtools_IteratorRowAllRefs *)o;
+ if (__pyx_ptype_9csamtools_IteratorRow->tp_traverse) {
+ e = __pyx_ptype_9csamtools_IteratorRow->tp_traverse(o, v, a); if (e) return e;
+ }
+ if (p->samfile) {
+ e = (*v)(((PyObject*)p->samfile), a); if (e) return e;
+ }
+ if (p->rowiter) {
+ e = (*v)(((PyObject*)p->rowiter), a); if (e) return e;
+ }
+ return 0;
+}
+
+static int __pyx_tp_clear_9csamtools_IteratorRowAllRefs(PyObject *o) {
+ struct __pyx_obj_9csamtools_IteratorRowAllRefs *p = (struct __pyx_obj_9csamtools_IteratorRowAllRefs *)o;
+ PyObject* tmp;
+ if (__pyx_ptype_9csamtools_IteratorRow->tp_clear) {
+ __pyx_ptype_9csamtools_IteratorRow->tp_clear(o);
+ }
+ tmp = ((PyObject*)p->samfile);
+ p->samfile = ((struct __pyx_obj_9csamtools_Samfile *)Py_None); Py_INCREF(Py_None);
+ Py_XDECREF(tmp);
+ tmp = ((PyObject*)p->rowiter);
+ p->rowiter = ((struct __pyx_obj_9csamtools_IteratorRowRegion *)Py_None); Py_INCREF(Py_None);
+ Py_XDECREF(tmp);
+ return 0;
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IteratorRowAllRefs[] = {
+ {__Pyx_NAMESTR("nextiter"), (PyCFunction)__pyx_pf_9csamtools_18IteratorRowAllRefs_1nextiter, METH_NOARGS, __Pyx_DOCSTR(0)},
+ {__Pyx_NAMESTR("__next__"), (PyCFunction)__pyx_pf_9csamtools_18IteratorRowAllRefs_3__next__, METH_NOARGS|METH_COEXIST, __Pyx_DOCSTR(__pyx_doc_9csamtools_18IteratorRowAllRefs_3__next__)},
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IteratorRowAllRefs = {
+ 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_IteratorRowAllRefs = {
+ 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_IteratorRowAllRefs = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IteratorRowAllRefs = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IteratorRowAllRefs = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IteratorRowAllRefs"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IteratorRowAllRefs), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_IteratorRowAllRefs, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IteratorRowAllRefs, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IteratorRowAllRefs, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IteratorRowAllRefs, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IteratorRowAllRefs, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("iterates over all mapped reads by chaining iterators over each reference\n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_IteratorRowAllRefs, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_IteratorRowAllRefs, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ __pyx_pf_9csamtools_18IteratorRowAllRefs_2__iter__, /*tp_iter*/
+ __pyx_pf_9csamtools_18IteratorRowAllRefs_3__next__, /*tp_iternext*/
+ __pyx_methods_9csamtools_IteratorRowAllRefs, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IteratorRowAllRefs, /*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 struct __pyx_vtabstruct_9csamtools_IteratorColumn __pyx_vtable_9csamtools_IteratorColumn;
+
+static PyObject *__pyx_tp_new_9csamtools_IteratorColumn(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_IteratorColumn *p;
+ PyObject *o = (*t->tp_alloc)(t, 0);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_IteratorColumn *)o);
+ p->__pyx_vtab = __pyx_vtabptr_9csamtools_IteratorColumn;
+ p->iter = ((struct __pyx_obj_9csamtools_IteratorRowRegion *)Py_None); Py_INCREF(Py_None);
+ p->samfile = ((struct __pyx_obj_9csamtools_Samfile *)Py_None); Py_INCREF(Py_None);
+ p->fastafile = ((struct __pyx_obj_9csamtools_Fastafile *)Py_None); Py_INCREF(Py_None);
+ p->stepper = Py_None; Py_INCREF(Py_None);
+ if (__pyx_pf_9csamtools_14IteratorColumn_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_IteratorColumn(PyObject *o) {
+ struct __pyx_obj_9csamtools_IteratorColumn *p = (struct __pyx_obj_9csamtools_IteratorColumn *)o;
+ {
+ PyObject *etype, *eval, *etb;
+ PyErr_Fetch(&etype, &eval, &etb);
+ ++Py_REFCNT(o);
+ __pyx_pf_9csamtools_14IteratorColumn_4__dealloc__(o);
+ if (PyErr_Occurred()) PyErr_WriteUnraisable(o);
+ --Py_REFCNT(o);
+ PyErr_Restore(etype, eval, etb);
+ }
+ Py_XDECREF(((PyObject *)p->iter));
+ Py_XDECREF(((PyObject *)p->samfile));
+ Py_XDECREF(((PyObject *)p->fastafile));
+ Py_XDECREF(p->stepper);
+ (*Py_TYPE(o)->tp_free)(o);
+}
+
+static int __pyx_tp_traverse_9csamtools_IteratorColumn(PyObject *o, visitproc v, void *a) {
+ int e;
+ struct __pyx_obj_9csamtools_IteratorColumn *p = (struct __pyx_obj_9csamtools_IteratorColumn *)o;
+ if (p->iter) {
+ e = (*v)(((PyObject*)p->iter), a); if (e) return e;
+ }
+ if (p->samfile) {
+ e = (*v)(((PyObject*)p->samfile), a); if (e) return e;
+ }
+ if (p->fastafile) {
+ e = (*v)(((PyObject*)p->fastafile), a); if (e) return e;
+ }
+ if (p->stepper) {
+ e = (*v)(p->stepper, a); if (e) return e;
+ }
+ return 0;
+}
+
+static int __pyx_tp_clear_9csamtools_IteratorColumn(PyObject *o) {
+ struct __pyx_obj_9csamtools_IteratorColumn *p = (struct __pyx_obj_9csamtools_IteratorColumn *)o;
+ PyObject* tmp;
+ tmp = ((PyObject*)p->iter);
+ p->iter = ((struct __pyx_obj_9csamtools_IteratorRowRegion *)Py_None); Py_INCREF(Py_None);
+ Py_XDECREF(tmp);
+ tmp = ((PyObject*)p->samfile);
+ p->samfile = ((struct __pyx_obj_9csamtools_Samfile *)Py_None); Py_INCREF(Py_None);
+ Py_XDECREF(tmp);
+ tmp = ((PyObject*)p->fastafile);
+ p->fastafile = ((struct __pyx_obj_9csamtools_Fastafile *)Py_None); Py_INCREF(Py_None);
+ Py_XDECREF(tmp);
+ tmp = ((PyObject*)p->stepper);
+ p->stepper = Py_None; Py_INCREF(Py_None);
+ Py_XDECREF(tmp);
+ return 0;
+}
+
+static PyObject *__pyx_getprop_9csamtools_14IteratorColumn_seq_len(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_14IteratorColumn_7seq_len_0__get__(o);
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IteratorColumn[] = {
+ {__Pyx_NAMESTR("addReference"), (PyCFunction)__pyx_pf_9csamtools_14IteratorColumn_2addReference, METH_O, __Pyx_DOCSTR(__pyx_doc_9csamtools_14IteratorColumn_2addReference)},
+ {__Pyx_NAMESTR("hasReference"), (PyCFunction)__pyx_pf_9csamtools_14IteratorColumn_3hasReference, METH_NOARGS, __Pyx_DOCSTR(__pyx_doc_9csamtools_14IteratorColumn_3hasReference)},
+ {0, 0, 0, 0}
+};
+
+static struct PyGetSetDef __pyx_getsets_9csamtools_IteratorColumn[] = {
+ {(char *)"seq_len", __pyx_getprop_9csamtools_14IteratorColumn_seq_len, 0, __Pyx_DOCSTR(__pyx_k_216), 0},
+ {0, 0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IteratorColumn = {
+ 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_IteratorColumn = {
+ 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_IteratorColumn = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IteratorColumn = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IteratorColumn = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IteratorColumn"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IteratorColumn), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_IteratorColumn, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IteratorColumn, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IteratorColumn, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IteratorColumn, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IteratorColumn, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("abstract base class for iterators over columns.\n\n IteratorColumn objects wrap the pileup functionality of samtools.\n \n For reasons of efficiency, the iterator points to the current \n pileup buffer. The pileup buffer is updated at every iteration.\n This might cause some unexpected behavious. For example,\n consider the conversion to a list::\n \n f = Samfile(\"file.bam\", \"rb\")\n result = list( f.pileup() )\n\n Here, ``result`` will contain ``n`` objects of type :class:`PileupProxy` for ``n`` columns, \n but each object in ``result`` will contain the same information.\n \n The desired behaviour can be achieved by list comprehension::\n\n result = [ x.pileups() for x in f.pileup() ]\n\n ``result`` will be a list of ``n`` lists of objects of type :class:`PileupRead`.\n\n If the iterator is associated with a :class:`Fastafile` using the :meth:`addReference`\n method, then the iterator will export the current sequence via the methods :meth:`getSequence`\n and :meth:`seq_len`.\n\n Optional kwargs to the iterator\n\n stepper\n The stepper controlls how the iterator advances. \n Possible options for the stepper are \n \n all\n use all reads for pileup.\n samtools\n same filter and read processing as in :term:`csamtools` pileup\n fastafile\n A :class:`FastaFile` object\n mask\n Skip all reads with bits set in mask.\n \n \n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_IteratorColumn, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_IteratorColumn, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ __pyx_pf_9csamtools_14IteratorColumn_1__iter__, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_IteratorColumn, /*tp_methods*/
+ 0, /*tp_members*/
+ __pyx_getsets_9csamtools_IteratorColumn, /*tp_getset*/
+ 0, /*tp_base*/
+ 0, /*tp_dict*/
+ 0, /*tp_descr_get*/
+ 0, /*tp_descr_set*/
+ 0, /*tp_dictoffset*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IteratorColumn, /*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 struct __pyx_vtabstruct_9csamtools_IteratorColumnRegion __pyx_vtable_9csamtools_IteratorColumnRegion;
+
+static PyObject *__pyx_tp_new_9csamtools_IteratorColumnRegion(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_IteratorColumnRegion *p;
+ PyObject *o = __pyx_tp_new_9csamtools_IteratorColumn(t, a, k);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_IteratorColumnRegion *)o);
+ p->__pyx_base.__pyx_vtab = (struct __pyx_vtabstruct_9csamtools_IteratorColumn*)__pyx_vtabptr_9csamtools_IteratorColumnRegion;
+ if (__pyx_pf_9csamtools_20IteratorColumnRegion_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IteratorColumnRegion[] = {
+ {__Pyx_NAMESTR("__next__"), (PyCFunction)__pyx_pf_9csamtools_20IteratorColumnRegion_1__next__, METH_NOARGS|METH_COEXIST, __Pyx_DOCSTR(__pyx_doc_9csamtools_20IteratorColumnRegion_1__next__)},
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IteratorColumnRegion = {
+ 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_IteratorColumnRegion = {
+ 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_IteratorColumnRegion = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IteratorColumnRegion = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IteratorColumnRegion = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IteratorColumnRegion"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IteratorColumnRegion), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_IteratorColumn, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IteratorColumnRegion, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IteratorColumnRegion, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IteratorColumnRegion, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IteratorColumnRegion, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("iterates over a region only.\n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_IteratorColumn, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_IteratorColumn, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ __pyx_pf_9csamtools_20IteratorColumnRegion_1__next__, /*tp_iternext*/
+ __pyx_methods_9csamtools_IteratorColumnRegion, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IteratorColumnRegion, /*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 struct __pyx_vtabstruct_9csamtools_IteratorColumnAllRefs __pyx_vtable_9csamtools_IteratorColumnAllRefs;
+
+static PyObject *__pyx_tp_new_9csamtools_IteratorColumnAllRefs(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_IteratorColumnAllRefs *p;
+ PyObject *o = __pyx_tp_new_9csamtools_IteratorColumn(t, a, k);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_IteratorColumnAllRefs *)o);
+ p->__pyx_base.__pyx_vtab = (struct __pyx_vtabstruct_9csamtools_IteratorColumn*)__pyx_vtabptr_9csamtools_IteratorColumnAllRefs;
+ if (__pyx_pf_9csamtools_21IteratorColumnAllRefs_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IteratorColumnAllRefs[] = {
+ {__Pyx_NAMESTR("__next__"), (PyCFunction)__pyx_pf_9csamtools_21IteratorColumnAllRefs_1__next__, METH_NOARGS|METH_COEXIST, __Pyx_DOCSTR(__pyx_doc_9csamtools_21IteratorColumnAllRefs_1__next__)},
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IteratorColumnAllRefs = {
+ 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_IteratorColumnAllRefs = {
+ 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_IteratorColumnAllRefs = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IteratorColumnAllRefs = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IteratorColumnAllRefs = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IteratorColumnAllRefs"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IteratorColumnAllRefs), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_IteratorColumn, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IteratorColumnAllRefs, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IteratorColumnAllRefs, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IteratorColumnAllRefs, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IteratorColumnAllRefs, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("iterates over all columns by chaining iterators over each reference\n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_IteratorColumn, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_IteratorColumn, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ __pyx_pf_9csamtools_21IteratorColumnAllRefs_1__next__, /*tp_iternext*/
+ __pyx_methods_9csamtools_IteratorColumnAllRefs, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IteratorColumnAllRefs, /*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 PyObject *__pyx_tp_new_9csamtools_SNPCall(PyTypeObject *t, PyObject *a, PyObject *k) {
+ PyObject *o = (*t->tp_alloc)(t, 0);
+ if (!o) return 0;
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_SNPCall(PyObject *o) {
+ (*Py_TYPE(o)->tp_free)(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7SNPCall_tid(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7SNPCall_3tid_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7SNPCall_pos(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7SNPCall_3pos_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7SNPCall_reference_base(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7SNPCall_14reference_base_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7SNPCall_genotype(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7SNPCall_8genotype_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7SNPCall_consensus_quality(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7SNPCall_17consensus_quality_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7SNPCall_snp_quality(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7SNPCall_11snp_quality_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7SNPCall_mapping_quality(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7SNPCall_15mapping_quality_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_7SNPCall_coverage(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_7SNPCall_8coverage_0__get__(o);
+}
+
+static PyMethodDef __pyx_methods_9csamtools_SNPCall[] = {
+ {0, 0, 0, 0}
+};
+
+static struct PyGetSetDef __pyx_getsets_9csamtools_SNPCall[] = {
+ {(char *)"tid", __pyx_getprop_9csamtools_7SNPCall_tid, 0, __Pyx_DOCSTR(__pyx_k_203), 0},
+ {(char *)"pos", __pyx_getprop_9csamtools_7SNPCall_pos, 0, __Pyx_DOCSTR(__pyx_k_217), 0},
+ {(char *)"reference_base", __pyx_getprop_9csamtools_7SNPCall_reference_base, 0, __Pyx_DOCSTR(__pyx_k_218), 0},
+ {(char *)"genotype", __pyx_getprop_9csamtools_7SNPCall_genotype, 0, __Pyx_DOCSTR(__pyx_k_219), 0},
+ {(char *)"consensus_quality", __pyx_getprop_9csamtools_7SNPCall_consensus_quality, 0, __Pyx_DOCSTR(__pyx_k_220), 0},
+ {(char *)"snp_quality", __pyx_getprop_9csamtools_7SNPCall_snp_quality, 0, __Pyx_DOCSTR(__pyx_k_221), 0},
+ {(char *)"mapping_quality", __pyx_getprop_9csamtools_7SNPCall_mapping_quality, 0, __Pyx_DOCSTR(__pyx_k_222), 0},
+ {(char *)"coverage", __pyx_getprop_9csamtools_7SNPCall_coverage, 0, __Pyx_DOCSTR(__pyx_k_223), 0},
+ {0, 0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_SNPCall = {
+ 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_SNPCall = {
+ 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_SNPCall = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_SNPCall = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_SNPCall = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.SNPCall"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_SNPCall), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_SNPCall, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_SNPCall, /*tp_as_number*/
+ &__pyx_tp_as_sequence_SNPCall, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_SNPCall, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ __pyx_pf_9csamtools_7SNPCall_0__str__, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_SNPCall, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/
+ __Pyx_DOCSTR("the results of a SNP call."), /*tp_doc*/
+ 0, /*tp_traverse*/
+ 0, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_SNPCall, /*tp_methods*/
+ 0, /*tp_members*/
+ __pyx_getsets_9csamtools_SNPCall, /*tp_getset*/
+ 0, /*tp_base*/
+ 0, /*tp_dict*/
+ 0, /*tp_descr_get*/
+ 0, /*tp_descr_set*/
+ 0, /*tp_dictoffset*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_SNPCall, /*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 struct __pyx_vtabstruct_9csamtools_SNPCallerBase __pyx_vtable_9csamtools_SNPCallerBase;
+
+static PyObject *__pyx_tp_new_9csamtools_SNPCallerBase(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_SNPCallerBase *p;
+ PyObject *o = (*t->tp_alloc)(t, 0);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_SNPCallerBase *)o);
+ p->__pyx_vtab = __pyx_vtabptr_9csamtools_SNPCallerBase;
+ p->iter = ((struct __pyx_obj_9csamtools_IteratorColumn *)Py_None); Py_INCREF(Py_None);
+ if (__pyx_pf_9csamtools_13SNPCallerBase_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_SNPCallerBase(PyObject *o) {
+ struct __pyx_obj_9csamtools_SNPCallerBase *p = (struct __pyx_obj_9csamtools_SNPCallerBase *)o;
+ {
+ PyObject *etype, *eval, *etb;
+ PyErr_Fetch(&etype, &eval, &etb);
+ ++Py_REFCNT(o);
+ __pyx_pf_9csamtools_13SNPCallerBase_1__dealloc__(o);
+ if (PyErr_Occurred()) PyErr_WriteUnraisable(o);
+ --Py_REFCNT(o);
+ PyErr_Restore(etype, eval, etb);
+ }
+ Py_XDECREF(((PyObject *)p->iter));
+ (*Py_TYPE(o)->tp_free)(o);
+}
+
+static int __pyx_tp_traverse_9csamtools_SNPCallerBase(PyObject *o, visitproc v, void *a) {
+ int e;
+ struct __pyx_obj_9csamtools_SNPCallerBase *p = (struct __pyx_obj_9csamtools_SNPCallerBase *)o;
+ if (p->iter) {
+ e = (*v)(((PyObject*)p->iter), a); if (e) return e;
+ }
+ return 0;
+}
+
+static int __pyx_tp_clear_9csamtools_SNPCallerBase(PyObject *o) {
+ struct __pyx_obj_9csamtools_SNPCallerBase *p = (struct __pyx_obj_9csamtools_SNPCallerBase *)o;
+ PyObject* tmp;
+ tmp = ((PyObject*)p->iter);
+ p->iter = ((struct __pyx_obj_9csamtools_IteratorColumn *)Py_None); Py_INCREF(Py_None);
+ Py_XDECREF(tmp);
+ return 0;
+}
+
+static PyMethodDef __pyx_methods_9csamtools_SNPCallerBase[] = {
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_SNPCallerBase = {
+ 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_SNPCallerBase = {
+ 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_SNPCallerBase = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_SNPCallerBase = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_SNPCallerBase = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.SNPCallerBase"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_SNPCallerBase), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_SNPCallerBase, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_SNPCallerBase, /*tp_as_number*/
+ &__pyx_tp_as_sequence_SNPCallerBase, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_SNPCallerBase, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_SNPCallerBase, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("Base class for SNP callers.\n\n *min_baseQ*\n minimum base quality (possibly capped by BAQ)\n *capQ_threshold*\n coefficient for adjusting mapQ of poor mappings\n *theta*\n theta in maq consensus calling model\n *n_haplotypes*\n number of haplotypes in the sample\n *het_rate*\n prior of a difference between two haplotypes\n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_SNPCallerBase, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_SNPCallerBase, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_SNPCallerBase, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_SNPCallerBase, /*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 struct __pyx_vtabstruct_9csamtools_IteratorSNPCalls __pyx_vtable_9csamtools_IteratorSNPCalls;
+
+static PyObject *__pyx_tp_new_9csamtools_IteratorSNPCalls(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_IteratorSNPCalls *p;
+ PyObject *o = __pyx_tp_new_9csamtools_SNPCallerBase(t, a, k);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_IteratorSNPCalls *)o);
+ p->__pyx_base.__pyx_vtab = (struct __pyx_vtabstruct_9csamtools_SNPCallerBase*)__pyx_vtabptr_9csamtools_IteratorSNPCalls;
+ if (__pyx_pf_9csamtools_16IteratorSNPCalls_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IteratorSNPCalls[] = {
+ {__Pyx_NAMESTR("__next__"), (PyCFunction)__pyx_pf_9csamtools_16IteratorSNPCalls_2__next__, METH_NOARGS|METH_COEXIST, __Pyx_DOCSTR(__pyx_doc_9csamtools_16IteratorSNPCalls_2__next__)},
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IteratorSNPCalls = {
+ 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_IteratorSNPCalls = {
+ 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_IteratorSNPCalls = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IteratorSNPCalls = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IteratorSNPCalls = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IteratorSNPCalls"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IteratorSNPCalls), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_SNPCallerBase, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IteratorSNPCalls, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IteratorSNPCalls, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IteratorSNPCalls, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IteratorSNPCalls, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("*(IteratorColumn iterator)*\n\n call SNPs within a region.\n\n *iterator* is a pileup iterator. SNPs will be called\n on all positions returned by this iterator.\n\n This caller is fast if SNPs are called over large continuous\n regions. It is slow, if instantiated frequently and in random\n order as the sequence will have to be reloaded.\n\n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_SNPCallerBase, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_SNPCallerBase, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ __pyx_pf_9csamtools_16IteratorSNPCalls_1__iter__, /*tp_iter*/
+ __pyx_pf_9csamtools_16IteratorSNPCalls_2__next__, /*tp_iternext*/
+ __pyx_methods_9csamtools_IteratorSNPCalls, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IteratorSNPCalls, /*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 struct __pyx_vtabstruct_9csamtools_SNPCaller __pyx_vtable_9csamtools_SNPCaller;
+
+static PyObject *__pyx_tp_new_9csamtools_SNPCaller(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_SNPCaller *p;
+ PyObject *o = __pyx_tp_new_9csamtools_SNPCallerBase(t, a, k);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_SNPCaller *)o);
+ p->__pyx_base.__pyx_vtab = (struct __pyx_vtabstruct_9csamtools_SNPCallerBase*)__pyx_vtabptr_9csamtools_SNPCaller;
+ if (__pyx_pf_9csamtools_9SNPCaller_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static PyMethodDef __pyx_methods_9csamtools_SNPCaller[] = {
+ {__Pyx_NAMESTR("call"), (PyCFunction)__pyx_pf_9csamtools_9SNPCaller_1call, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_9SNPCaller_1call)},
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_SNPCaller = {
+ 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_SNPCaller = {
+ 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_SNPCaller = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_SNPCaller = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_SNPCaller = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.SNPCaller"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_SNPCaller), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_SNPCallerBase, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_SNPCaller, /*tp_as_number*/
+ &__pyx_tp_as_sequence_SNPCaller, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_SNPCaller, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_SNPCaller, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("*(IteratorColumn iterator_column )*\n\n The samtools SNP caller.\n\n This object will call SNPs in *samfile* against the reference\n sequence in *fasta*.\n\n This caller is fast for calling few SNPs in selected regions.\n\n It is slow, if called over large genomic regions.\n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_SNPCallerBase, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_SNPCallerBase, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_SNPCaller, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_SNPCaller, /*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 PyObject *__pyx_tp_new_9csamtools_IndelCall(PyTypeObject *t, PyObject *a, PyObject *k) {
+ PyObject *o = (*t->tp_alloc)(t, 0);
+ if (!o) return 0;
+ if (__pyx_pf_9csamtools_9IndelCall_0__cinit__(o, __pyx_empty_tuple, NULL) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_IndelCall(PyObject *o) {
+ {
+ PyObject *etype, *eval, *etb;
+ PyErr_Fetch(&etype, &eval, &etb);
+ ++Py_REFCNT(o);
+ __pyx_pf_9csamtools_9IndelCall_2__dealloc__(o);
+ if (PyErr_Occurred()) PyErr_WriteUnraisable(o);
+ --Py_REFCNT(o);
+ PyErr_Restore(etype, eval, etb);
+ }
+ (*Py_TYPE(o)->tp_free)(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_tid(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_3tid_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_pos(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_3pos_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_genotype(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_8genotype_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_consensus_quality(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_17consensus_quality_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_snp_quality(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_11snp_quality_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_mapping_quality(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_15mapping_quality_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_coverage(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_8coverage_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_first_allele(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_12first_allele_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_second_allele(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_13second_allele_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_reads_first(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_11reads_first_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_reads_second(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_12reads_second_0__get__(o);
+}
+
+static PyObject *__pyx_getprop_9csamtools_9IndelCall_reads_diff(PyObject *o, void *x) {
+ return __pyx_pf_9csamtools_9IndelCall_10reads_diff_0__get__(o);
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IndelCall[] = {
+ {0, 0, 0, 0}
+};
+
+static struct PyGetSetDef __pyx_getsets_9csamtools_IndelCall[] = {
+ {(char *)"tid", __pyx_getprop_9csamtools_9IndelCall_tid, 0, __Pyx_DOCSTR(__pyx_k_203), 0},
+ {(char *)"pos", __pyx_getprop_9csamtools_9IndelCall_pos, 0, __Pyx_DOCSTR(__pyx_k_217), 0},
+ {(char *)"genotype", __pyx_getprop_9csamtools_9IndelCall_genotype, 0, __Pyx_DOCSTR(__pyx_k_219), 0},
+ {(char *)"consensus_quality", __pyx_getprop_9csamtools_9IndelCall_consensus_quality, 0, __Pyx_DOCSTR(__pyx_k_220), 0},
+ {(char *)"snp_quality", __pyx_getprop_9csamtools_9IndelCall_snp_quality, 0, __Pyx_DOCSTR(__pyx_k_221), 0},
+ {(char *)"mapping_quality", __pyx_getprop_9csamtools_9IndelCall_mapping_quality, 0, __Pyx_DOCSTR(__pyx_k_222), 0},
+ {(char *)"coverage", __pyx_getprop_9csamtools_9IndelCall_coverage, 0, __Pyx_DOCSTR(__pyx_k_223), 0},
+ {(char *)"first_allele", __pyx_getprop_9csamtools_9IndelCall_first_allele, 0, __Pyx_DOCSTR(__pyx_k_224), 0},
+ {(char *)"second_allele", __pyx_getprop_9csamtools_9IndelCall_second_allele, 0, __Pyx_DOCSTR(__pyx_k_225), 0},
+ {(char *)"reads_first", __pyx_getprop_9csamtools_9IndelCall_reads_first, 0, __Pyx_DOCSTR(__pyx_k_226), 0},
+ {(char *)"reads_second", __pyx_getprop_9csamtools_9IndelCall_reads_second, 0, __Pyx_DOCSTR(__pyx_k_226), 0},
+ {(char *)"reads_diff", __pyx_getprop_9csamtools_9IndelCall_reads_diff, 0, __Pyx_DOCSTR(__pyx_k_226), 0},
+ {0, 0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IndelCall = {
+ 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_IndelCall = {
+ 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_IndelCall = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IndelCall = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IndelCall = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IndelCall"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IndelCall), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_IndelCall, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IndelCall, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IndelCall, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IndelCall, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ __pyx_pf_9csamtools_9IndelCall_1__str__, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IndelCall, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/
+ __Pyx_DOCSTR("the results of an indel call."), /*tp_doc*/
+ 0, /*tp_traverse*/
+ 0, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_IndelCall, /*tp_methods*/
+ 0, /*tp_members*/
+ __pyx_getsets_9csamtools_IndelCall, /*tp_getset*/
+ 0, /*tp_base*/
+ 0, /*tp_dict*/
+ 0, /*tp_descr_get*/
+ 0, /*tp_descr_set*/
+ 0, /*tp_dictoffset*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IndelCall, /*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 PyObject *__pyx_tp_new_9csamtools_IndelCallerBase(PyTypeObject *t, PyObject *a, PyObject *k) {
+ struct __pyx_obj_9csamtools_IndelCallerBase *p;
+ PyObject *o = (*t->tp_alloc)(t, 0);
+ if (!o) return 0;
+ p = ((struct __pyx_obj_9csamtools_IndelCallerBase *)o);
+ p->iter = ((struct __pyx_obj_9csamtools_IteratorColumn *)Py_None); Py_INCREF(Py_None);
+ if (__pyx_pf_9csamtools_15IndelCallerBase_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static void __pyx_tp_dealloc_9csamtools_IndelCallerBase(PyObject *o) {
+ struct __pyx_obj_9csamtools_IndelCallerBase *p = (struct __pyx_obj_9csamtools_IndelCallerBase *)o;
+ {
+ PyObject *etype, *eval, *etb;
+ PyErr_Fetch(&etype, &eval, &etb);
+ ++Py_REFCNT(o);
+ __pyx_pf_9csamtools_15IndelCallerBase_1__dealloc__(o);
+ if (PyErr_Occurred()) PyErr_WriteUnraisable(o);
+ --Py_REFCNT(o);
+ PyErr_Restore(etype, eval, etb);
+ }
+ Py_XDECREF(((PyObject *)p->iter));
+ (*Py_TYPE(o)->tp_free)(o);
+}
+
+static int __pyx_tp_traverse_9csamtools_IndelCallerBase(PyObject *o, visitproc v, void *a) {
+ int e;
+ struct __pyx_obj_9csamtools_IndelCallerBase *p = (struct __pyx_obj_9csamtools_IndelCallerBase *)o;
+ if (p->iter) {
+ e = (*v)(((PyObject*)p->iter), a); if (e) return e;
+ }
+ return 0;
+}
+
+static int __pyx_tp_clear_9csamtools_IndelCallerBase(PyObject *o) {
+ struct __pyx_obj_9csamtools_IndelCallerBase *p = (struct __pyx_obj_9csamtools_IndelCallerBase *)o;
+ PyObject* tmp;
+ tmp = ((PyObject*)p->iter);
+ p->iter = ((struct __pyx_obj_9csamtools_IteratorColumn *)Py_None); Py_INCREF(Py_None);
+ Py_XDECREF(tmp);
+ return 0;
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IndelCallerBase[] = {
+ {__Pyx_NAMESTR("_call"), (PyCFunction)__pyx_pf_9csamtools_15IndelCallerBase_2_call, METH_NOARGS, __Pyx_DOCSTR(0)},
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IndelCallerBase = {
+ 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_IndelCallerBase = {
+ 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_IndelCallerBase = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IndelCallerBase = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IndelCallerBase = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IndelCallerBase"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IndelCallerBase), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_IndelCallerBase, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IndelCallerBase, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IndelCallerBase, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IndelCallerBase, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IndelCallerBase, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("Base class for SNP callers.\n\n *min_baseQ*\n minimum base quality (possibly capped by BAQ)\n *capQ_threshold*\n coefficient for adjusting mapQ of poor mappings\n *theta*\n theta in maq consensus calling model\n *n_haplotypes*\n number of haplotypes in the sample\n *het_rate*\n prior of a difference between two haplotypes\n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_IndelCallerBase, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_IndelCallerBase, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_IndelCallerBase, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IndelCallerBase, /*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 PyObject *__pyx_tp_new_9csamtools_IndelCaller(PyTypeObject *t, PyObject *a, PyObject *k) {
+ PyObject *o = __pyx_tp_new_9csamtools_IndelCallerBase(t, a, k);
+ if (!o) return 0;
+ if (__pyx_pf_9csamtools_11IndelCaller_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IndelCaller[] = {
+ {__Pyx_NAMESTR("call"), (PyCFunction)__pyx_pf_9csamtools_11IndelCaller_1call, METH_VARARGS|METH_KEYWORDS, __Pyx_DOCSTR(__pyx_doc_9csamtools_11IndelCaller_1call)},
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IndelCaller = {
+ 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_IndelCaller = {
+ 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_IndelCaller = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IndelCaller = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IndelCaller = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IndelCaller"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IndelCaller), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_IndelCallerBase, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IndelCaller, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IndelCaller, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IndelCaller, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IndelCaller, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("*(IteratorColumn iterator_column )*\n\n The samtools SNP caller.\n\n This object will call SNPs in *samfile* against the reference\n sequence in *fasta*.\n\n This caller is fast for calling few SNPs in selected regions.\n\n It is slow, if called over large genomic regions.\n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_IndelCallerBase, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_IndelCallerBase, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ 0, /*tp_iter*/
+ 0, /*tp_iternext*/
+ __pyx_methods_9csamtools_IndelCaller, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IndelCaller, /*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 PyObject *__pyx_tp_new_9csamtools_IteratorIndelCalls(PyTypeObject *t, PyObject *a, PyObject *k) {
+ PyObject *o = __pyx_tp_new_9csamtools_IndelCallerBase(t, a, k);
+ if (!o) return 0;
+ if (__pyx_pf_9csamtools_18IteratorIndelCalls_0__cinit__(o, a, k) < 0) {
+ Py_DECREF(o); o = 0;
+ }
+ return o;
+}
+
+static PyMethodDef __pyx_methods_9csamtools_IteratorIndelCalls[] = {
+ {__Pyx_NAMESTR("__next__"), (PyCFunction)__pyx_pf_9csamtools_18IteratorIndelCalls_2__next__, METH_NOARGS|METH_COEXIST, __Pyx_DOCSTR(__pyx_doc_9csamtools_18IteratorIndelCalls_2__next__)},
+ {0, 0, 0, 0}
+};
+
+static PyNumberMethods __pyx_tp_as_number_IteratorIndelCalls = {
+ 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_IteratorIndelCalls = {
+ 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_IteratorIndelCalls = {
+ 0, /*mp_length*/
+ 0, /*mp_subscript*/
+ 0, /*mp_ass_subscript*/
+};
+
+static PyBufferProcs __pyx_tp_as_buffer_IteratorIndelCalls = {
+ #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
+};
+
+PyTypeObject __pyx_type_9csamtools_IteratorIndelCalls = {
+ PyVarObject_HEAD_INIT(0, 0)
+ __Pyx_NAMESTR("csamtools.IteratorIndelCalls"), /*tp_name*/
+ sizeof(struct __pyx_obj_9csamtools_IteratorIndelCalls), /*tp_basicsize*/
+ 0, /*tp_itemsize*/
+ __pyx_tp_dealloc_9csamtools_IndelCallerBase, /*tp_dealloc*/
+ 0, /*tp_print*/
+ 0, /*tp_getattr*/
+ 0, /*tp_setattr*/
+ #if PY_MAJOR_VERSION < 3
+ 0, /*tp_compare*/
+ #else
+ 0, /*reserved*/
+ #endif
+ 0, /*tp_repr*/
+ &__pyx_tp_as_number_IteratorIndelCalls, /*tp_as_number*/
+ &__pyx_tp_as_sequence_IteratorIndelCalls, /*tp_as_sequence*/
+ &__pyx_tp_as_mapping_IteratorIndelCalls, /*tp_as_mapping*/
+ 0, /*tp_hash*/
+ 0, /*tp_call*/
+ 0, /*tp_str*/
+ 0, /*tp_getattro*/
+ 0, /*tp_setattro*/
+ &__pyx_tp_as_buffer_IteratorIndelCalls, /*tp_as_buffer*/
+ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_GC, /*tp_flags*/
+ __Pyx_DOCSTR("*(IteratorColumn iterator)*\n\n call indels within a region.\n\n *iterator* is a pileup iterator. SNPs will be called\n on all positions returned by this iterator.\n\n This caller is fast if SNPs are called over large continuous\n regions. It is slow, if instantiated frequently and in random\n order as the sequence will have to be reloaded.\n\n "), /*tp_doc*/
+ __pyx_tp_traverse_9csamtools_IndelCallerBase, /*tp_traverse*/
+ __pyx_tp_clear_9csamtools_IndelCallerBase, /*tp_clear*/
+ 0, /*tp_richcompare*/
+ 0, /*tp_weaklistoffset*/
+ __pyx_pf_9csamtools_18IteratorIndelCalls_1__iter__, /*tp_iter*/
+ __pyx_pf_9csamtools_18IteratorIndelCalls_2__next__, /*tp_iternext*/
+ __pyx_methods_9csamtools_IteratorIndelCalls, /*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*/
+ 0, /*tp_init*/
+ 0, /*tp_alloc*/
+ __pyx_tp_new_9csamtools_IteratorIndelCalls, /*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("csamtools"),
+ 0, /* m_doc */
+ -1, /* m_size */
+ __pyx_methods /* m_methods */,
+ NULL, /* m_reload */
+ NULL, /* m_traverse */
+ NULL, /* m_clear */
+ NULL /* m_free */
+};
+#endif
+
+static __Pyx_StringTabEntry __pyx_string_tab[] = {
+ {&__pyx_kp_s_1, __pyx_k_1, sizeof(__pyx_k_1), 0, 0, 1, 0},
+ {&__pyx_kp_s_102, __pyx_k_102, sizeof(__pyx_k_102), 0, 0, 1, 0},
+ {&__pyx_kp_s_103, __pyx_k_103, sizeof(__pyx_k_103), 0, 0, 1, 0},
+ {&__pyx_kp_s_105, __pyx_k_105, sizeof(__pyx_k_105), 0, 0, 1, 0},
+ {&__pyx_kp_s_109, __pyx_k_109, sizeof(__pyx_k_109), 0, 0, 1, 0},
+ {&__pyx_kp_s_11, __pyx_k_11, sizeof(__pyx_k_11), 0, 0, 1, 0},
+ {&__pyx_kp_s_110, __pyx_k_110, sizeof(__pyx_k_110), 0, 0, 1, 0},
+ {&__pyx_n_s_111, __pyx_k_111, sizeof(__pyx_k_111), 0, 0, 1, 1},
+ {&__pyx_kp_s_112, __pyx_k_112, sizeof(__pyx_k_112), 0, 0, 1, 0},
+ {&__pyx_kp_s_113, __pyx_k_113, sizeof(__pyx_k_113), 0, 0, 1, 0},
+ {&__pyx_kp_s_114, __pyx_k_114, sizeof(__pyx_k_114), 0, 0, 1, 0},
+ {&__pyx_kp_s_115, __pyx_k_115, sizeof(__pyx_k_115), 0, 0, 1, 0},
+ {&__pyx_kp_s_116, __pyx_k_116, sizeof(__pyx_k_116), 0, 0, 1, 0},
+ {&__pyx_kp_s_117, __pyx_k_117, sizeof(__pyx_k_117), 0, 0, 1, 0},
+ {&__pyx_kp_s_118, __pyx_k_118, sizeof(__pyx_k_118), 0, 0, 1, 0},
+ {&__pyx_kp_s_119, __pyx_k_119, sizeof(__pyx_k_119), 0, 0, 1, 0},
+ {&__pyx_kp_s_12, __pyx_k_12, sizeof(__pyx_k_12), 0, 0, 1, 0},
+ {&__pyx_kp_s_120, __pyx_k_120, sizeof(__pyx_k_120), 0, 0, 1, 0},
+ {&__pyx_kp_s_121, __pyx_k_121, sizeof(__pyx_k_121), 0, 0, 1, 0},
+ {&__pyx_kp_s_122, __pyx_k_122, sizeof(__pyx_k_122), 0, 0, 1, 0},
+ {&__pyx_kp_s_124, __pyx_k_124, sizeof(__pyx_k_124), 0, 0, 1, 0},
+ {&__pyx_kp_s_125, __pyx_k_125, sizeof(__pyx_k_125), 0, 0, 1, 0},
+ {&__pyx_kp_s_126, __pyx_k_126, sizeof(__pyx_k_126), 0, 0, 1, 0},
+ {&__pyx_kp_s_127, __pyx_k_127, sizeof(__pyx_k_127), 0, 0, 1, 0},
+ {&__pyx_kp_s_128, __pyx_k_128, sizeof(__pyx_k_128), 0, 0, 1, 0},
+ {&__pyx_kp_s_129, __pyx_k_129, sizeof(__pyx_k_129), 0, 0, 1, 0},
+ {&__pyx_kp_s_13, __pyx_k_13, sizeof(__pyx_k_13), 0, 0, 1, 0},
+ {&__pyx_kp_s_130, __pyx_k_130, sizeof(__pyx_k_130), 0, 0, 1, 0},
+ {&__pyx_kp_s_131, __pyx_k_131, sizeof(__pyx_k_131), 0, 0, 1, 0},
+ {&__pyx_kp_s_132, __pyx_k_132, sizeof(__pyx_k_132), 0, 0, 1, 0},
+ {&__pyx_kp_s_133, __pyx_k_133, sizeof(__pyx_k_133), 0, 0, 1, 0},
+ {&__pyx_kp_s_134, __pyx_k_134, sizeof(__pyx_k_134), 0, 0, 1, 0},
+ {&__pyx_kp_s_135, __pyx_k_135, sizeof(__pyx_k_135), 0, 0, 1, 0},
+ {&__pyx_kp_s_136, __pyx_k_136, sizeof(__pyx_k_136), 0, 0, 1, 0},
+ {&__pyx_kp_s_137, __pyx_k_137, sizeof(__pyx_k_137), 0, 0, 1, 0},
+ {&__pyx_kp_s_138, __pyx_k_138, sizeof(__pyx_k_138), 0, 0, 1, 0},
+ {&__pyx_kp_s_139, __pyx_k_139, sizeof(__pyx_k_139), 0, 0, 1, 0},
+ {&__pyx_kp_s_14, __pyx_k_14, sizeof(__pyx_k_14), 0, 0, 1, 0},
+ {&__pyx_kp_s_140, __pyx_k_140, sizeof(__pyx_k_140), 0, 0, 1, 0},
+ {&__pyx_kp_s_141, __pyx_k_141, sizeof(__pyx_k_141), 0, 0, 1, 0},
+ {&__pyx_kp_s_142, __pyx_k_142, sizeof(__pyx_k_142), 0, 0, 1, 0},
+ {&__pyx_kp_s_143, __pyx_k_143, sizeof(__pyx_k_143), 0, 0, 1, 0},
+ {&__pyx_kp_s_144, __pyx_k_144, sizeof(__pyx_k_144), 0, 0, 1, 0},
+ {&__pyx_kp_s_145, __pyx_k_145, sizeof(__pyx_k_145), 0, 0, 1, 0},
+ {&__pyx_kp_s_146, __pyx_k_146, sizeof(__pyx_k_146), 0, 0, 1, 0},
+ {&__pyx_kp_s_15, __pyx_k_15, sizeof(__pyx_k_15), 0, 0, 1, 0},
+ {&__pyx_kp_s_151, __pyx_k_151, sizeof(__pyx_k_151), 0, 0, 1, 0},
+ {&__pyx_kp_s_152, __pyx_k_152, sizeof(__pyx_k_152), 0, 0, 1, 0},
+ {&__pyx_kp_s_153, __pyx_k_153, sizeof(__pyx_k_153), 0, 0, 1, 0},
+ {&__pyx_n_s_155, __pyx_k_155, sizeof(__pyx_k_155), 0, 0, 1, 1},
+ {&__pyx_kp_s_156, __pyx_k_156, sizeof(__pyx_k_156), 0, 0, 1, 0},
+ {&__pyx_kp_s_157, __pyx_k_157, sizeof(__pyx_k_157), 0, 0, 1, 0},
+ {&__pyx_kp_s_159, __pyx_k_159, sizeof(__pyx_k_159), 0, 0, 1, 0},
+ {&__pyx_kp_s_16, __pyx_k_16, sizeof(__pyx_k_16), 0, 0, 1, 0},
+ {&__pyx_kp_s_161, __pyx_k_161, sizeof(__pyx_k_161), 0, 0, 1, 0},
+ {&__pyx_kp_s_163, __pyx_k_163, sizeof(__pyx_k_163), 0, 0, 1, 0},
+ {&__pyx_kp_s_165, __pyx_k_165, sizeof(__pyx_k_165), 0, 0, 1, 0},
+ {&__pyx_kp_s_166, __pyx_k_166, sizeof(__pyx_k_166), 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_22, __pyx_k_22, sizeof(__pyx_k_22), 0, 0, 1, 0},
+ {&__pyx_kp_s_228, __pyx_k_228, sizeof(__pyx_k_228), 0, 0, 1, 0},
+ {&__pyx_kp_s_23, __pyx_k_23, sizeof(__pyx_k_23), 0, 0, 1, 0},
+ {&__pyx_kp_s_230, __pyx_k_230, sizeof(__pyx_k_230), 0, 0, 1, 0},
+ {&__pyx_kp_s_231, __pyx_k_231, sizeof(__pyx_k_231), 0, 0, 1, 0},
+ {&__pyx_kp_s_237, __pyx_k_237, sizeof(__pyx_k_237), 0, 0, 1, 0},
+ {&__pyx_kp_s_27, __pyx_k_27, sizeof(__pyx_k_27), 0, 0, 1, 0},
+ {&__pyx_kp_s_28, __pyx_k_28, sizeof(__pyx_k_28), 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_32, __pyx_k_32, sizeof(__pyx_k_32), 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_37, __pyx_k_37, sizeof(__pyx_k_37), 0, 0, 1, 0},
+ {&__pyx_kp_s_43, __pyx_k_43, sizeof(__pyx_k_43), 0, 0, 1, 0},
+ {&__pyx_kp_s_45, __pyx_k_45, sizeof(__pyx_k_45), 0, 0, 1, 0},
+ {&__pyx_kp_s_47, __pyx_k_47, sizeof(__pyx_k_47), 0, 0, 1, 0},
+ {&__pyx_kp_s_49, __pyx_k_49, sizeof(__pyx_k_49), 0, 0, 1, 0},
+ {&__pyx_kp_s_5, __pyx_k_5, sizeof(__pyx_k_5), 0, 0, 1, 0},
+ {&__pyx_kp_s_51, __pyx_k_51, sizeof(__pyx_k_51), 0, 0, 1, 0},
+ {&__pyx_kp_s_53, __pyx_k_53, sizeof(__pyx_k_53), 0, 0, 1, 0},
+ {&__pyx_kp_s_55, __pyx_k_55, sizeof(__pyx_k_55), 0, 0, 1, 0},
+ {&__pyx_kp_s_57, __pyx_k_57, sizeof(__pyx_k_57), 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_64, __pyx_k_64, sizeof(__pyx_k_64), 0, 0, 1, 0},
+ {&__pyx_kp_s_67, __pyx_k_67, sizeof(__pyx_k_67), 0, 0, 1, 0},
+ {&__pyx_kp_s_70, __pyx_k_70, sizeof(__pyx_k_70), 0, 0, 1, 0},
+ {&__pyx_kp_s_73, __pyx_k_73, sizeof(__pyx_k_73), 0, 0, 1, 0},
+ {&__pyx_kp_s_83, __pyx_k_83, sizeof(__pyx_k_83), 0, 0, 1, 0},
+ {&__pyx_kp_s_85, __pyx_k_85, sizeof(__pyx_k_85), 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_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_98, __pyx_k_98, sizeof(__pyx_k_98), 0, 0, 1, 0},
+ {&__pyx_n_s__A, __pyx_k__A, sizeof(__pyx_k__A), 0, 0, 1, 1},
+ {&__pyx_n_s__AS, __pyx_k__AS, sizeof(__pyx_k__AS), 0, 0, 1, 1},
+ {&__pyx_n_s__AlignedRead, __pyx_k__AlignedRead, sizeof(__pyx_k__AlignedRead), 0, 0, 1, 1},
+ {&__pyx_n_s__C, __pyx_k__C, sizeof(__pyx_k__C), 0, 0, 1, 1},
+ {&__pyx_n_s__CL, __pyx_k__CL, sizeof(__pyx_k__CL), 0, 0, 1, 1},
+ {&__pyx_n_s__CN, __pyx_k__CN, sizeof(__pyx_k__CN), 0, 0, 1, 1},
+ {&__pyx_n_s__CO, __pyx_k__CO, sizeof(__pyx_k__CO), 0, 0, 1, 1},
+ {&__pyx_n_s__D, __pyx_k__D, sizeof(__pyx_k__D), 0, 0, 1, 1},
+ {&__pyx_n_s__DS, __pyx_k__DS, sizeof(__pyx_k__DS), 0, 0, 1, 1},
+ {&__pyx_n_s__DT, __pyx_k__DT, sizeof(__pyx_k__DT), 0, 0, 1, 1},
+ {&__pyx_n_s__DictType, __pyx_k__DictType, sizeof(__pyx_k__DictType), 0, 0, 1, 1},
+ {&__pyx_n_s__F, __pyx_k__F, sizeof(__pyx_k__F), 0, 0, 1, 1},
+ {&__pyx_n_s__Fastafile, __pyx_k__Fastafile, sizeof(__pyx_k__Fastafile), 0, 0, 1, 1},
+ {&__pyx_n_s__FloatType, __pyx_k__FloatType, sizeof(__pyx_k__FloatType), 0, 0, 1, 1},
+ {&__pyx_n_s__GO, __pyx_k__GO, sizeof(__pyx_k__GO), 0, 0, 1, 1},
+ {&__pyx_n_s__HD, __pyx_k__HD, sizeof(__pyx_k__HD), 0, 0, 1, 1},
+ {&__pyx_n_s__I, __pyx_k__I, sizeof(__pyx_k__I), 0, 0, 1, 1},
+ {&__pyx_n_s__ID, __pyx_k__ID, sizeof(__pyx_k__ID), 0, 0, 1, 1},
+ {&__pyx_n_s__IOError, __pyx_k__IOError, sizeof(__pyx_k__IOError), 0, 0, 1, 1},
+ {&__pyx_n_s__IndelCaller, __pyx_k__IndelCaller, sizeof(__pyx_k__IndelCaller), 0, 0, 1, 1},
+ {&__pyx_n_s__IntType, __pyx_k__IntType, sizeof(__pyx_k__IntType), 0, 0, 1, 1},
+ {&__pyx_n_s__IteratorColumn, __pyx_k__IteratorColumn, sizeof(__pyx_k__IteratorColumn), 0, 0, 1, 1},
+ {&__pyx_n_s__IteratorIndelCalls, __pyx_k__IteratorIndelCalls, sizeof(__pyx_k__IteratorIndelCalls), 0, 0, 1, 1},
+ {&__pyx_n_s__IteratorRow, __pyx_k__IteratorRow, sizeof(__pyx_k__IteratorRow), 0, 0, 1, 1},
+ {&__pyx_n_s__IteratorSNPCalls, __pyx_k__IteratorSNPCalls, sizeof(__pyx_k__IteratorSNPCalls), 0, 0, 1, 1},
+ {&__pyx_n_s__KeyError, __pyx_k__KeyError, sizeof(__pyx_k__KeyError), 0, 0, 1, 1},
+ {&__pyx_n_s__LB, __pyx_k__LB, sizeof(__pyx_k__LB), 0, 0, 1, 1},
+ {&__pyx_n_s__LN, __pyx_k__LN, sizeof(__pyx_k__LN), 0, 0, 1, 1},
+ {&__pyx_n_s__M5, __pyx_k__M5, sizeof(__pyx_k__M5), 0, 0, 1, 1},
+ {&__pyx_n_s__NotImplementedError, __pyx_k__NotImplementedError, sizeof(__pyx_k__NotImplementedError), 0, 0, 1, 1},
+ {&__pyx_n_s__O_CREAT, __pyx_k__O_CREAT, sizeof(__pyx_k__O_CREAT), 0, 0, 1, 1},
+ {&__pyx_n_s__O_WRONLY, __pyx_k__O_WRONLY, sizeof(__pyx_k__O_WRONLY), 0, 0, 1, 1},
+ {&__pyx_n_s__Outs, __pyx_k__Outs, sizeof(__pyx_k__Outs), 0, 0, 1, 1},
+ {&__pyx_n_s__PG, __pyx_k__PG, sizeof(__pyx_k__PG), 0, 0, 1, 1},
+ {&__pyx_n_s__PI, __pyx_k__PI, sizeof(__pyx_k__PI), 0, 0, 1, 1},
+ {&__pyx_n_s__PL, __pyx_k__PL, sizeof(__pyx_k__PL), 0, 0, 1, 1},
+ {&__pyx_n_s__PN, __pyx_k__PN, sizeof(__pyx_k__PN), 0, 0, 1, 1},
+ {&__pyx_n_s__PU, __pyx_k__PU, sizeof(__pyx_k__PU), 0, 0, 1, 1},
+ {&__pyx_n_s__PileupColumn, __pyx_k__PileupColumn, sizeof(__pyx_k__PileupColumn), 0, 0, 1, 1},
+ {&__pyx_n_s__PileupProxy, __pyx_k__PileupProxy, sizeof(__pyx_k__PileupProxy), 0, 0, 1, 1},
+ {&__pyx_n_s__PileupRead, __pyx_k__PileupRead, sizeof(__pyx_k__PileupRead), 0, 0, 1, 1},
+ {&__pyx_n_s__RG, __pyx_k__RG, sizeof(__pyx_k__RG), 0, 0, 1, 1},
+ {&__pyx_n_s__S, __pyx_k__S, sizeof(__pyx_k__S), 0, 0, 1, 1},
+ {&__pyx_n_s__SM, __pyx_k__SM, sizeof(__pyx_k__SM), 0, 0, 1, 1},
+ {&__pyx_n_s__SN, __pyx_k__SN, sizeof(__pyx_k__SN), 0, 0, 1, 1},
+ {&__pyx_n_s__SNPCaller, __pyx_k__SNPCaller, sizeof(__pyx_k__SNPCaller), 0, 0, 1, 1},
+ {&__pyx_n_s__SO, __pyx_k__SO, sizeof(__pyx_k__SO), 0, 0, 1, 1},
+ {&__pyx_n_s__SP, __pyx_k__SP, sizeof(__pyx_k__SP), 0, 0, 1, 1},
+ {&__pyx_n_s__SQ, __pyx_k__SQ, sizeof(__pyx_k__SQ), 0, 0, 1, 1},
+ {&__pyx_n_s__Samfile, __pyx_k__Samfile, sizeof(__pyx_k__Samfile), 0, 0, 1, 1},
+ {&__pyx_n_s__StderrStore, __pyx_k__StderrStore, sizeof(__pyx_k__StderrStore), 0, 0, 1, 1},
+ {&__pyx_n_s__StopIteration, __pyx_k__StopIteration, sizeof(__pyx_k__StopIteration), 0, 0, 1, 1},
+ {&__pyx_n_s__TypeError, __pyx_k__TypeError, sizeof(__pyx_k__TypeError), 0, 0, 1, 1},
+ {&__pyx_n_s__UR, __pyx_k__UR, sizeof(__pyx_k__UR), 0, 0, 1, 1},
+ {&__pyx_n_s__VALID_HEADERS, __pyx_k__VALID_HEADERS, sizeof(__pyx_k__VALID_HEADERS), 0, 0, 1, 1},
+ {&__pyx_n_s__VALID_HEADER_FIELDS, __pyx_k__VALID_HEADER_FIELDS, sizeof(__pyx_k__VALID_HEADER_FIELDS), 0, 0, 1, 1},
+ {&__pyx_n_s__VALID_HEADER_ORDER, __pyx_k__VALID_HEADER_ORDER, sizeof(__pyx_k__VALID_HEADER_ORDER), 0, 0, 1, 1},
+ {&__pyx_n_s__VALID_HEADER_TYPES, __pyx_k__VALID_HEADER_TYPES, sizeof(__pyx_k__VALID_HEADER_TYPES), 0, 0, 1, 1},
+ {&__pyx_n_s__VN, __pyx_k__VN, sizeof(__pyx_k__VN), 0, 0, 1, 1},
+ {&__pyx_n_s__ValueError, __pyx_k__ValueError, sizeof(__pyx_k__ValueError), 0, 0, 1, 1},
+ {&__pyx_n_s__Z, __pyx_k__Z, sizeof(__pyx_k__Z), 0, 0, 1, 1},
+ {&__pyx_n_s____all__, __pyx_k____all__, sizeof(__pyx_k____all__), 0, 0, 1, 1},
+ {&__pyx_n_s____del__, __pyx_k____del__, sizeof(__pyx_k____del__), 0, 0, 1, 1},
+ {&__pyx_n_s____dict__, __pyx_k____dict__, sizeof(__pyx_k____dict__), 0, 0, 1, 1},
+ {&__pyx_n_s____getattribute__, __pyx_k____getattribute__, sizeof(__pyx_k____getattribute__), 0, 0, 1, 1},
+ {&__pyx_n_s____init__, __pyx_k____init__, sizeof(__pyx_k____init__), 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___alignment, __pyx_k___alignment, sizeof(__pyx_k___alignment), 0, 0, 1, 1},
+ {&__pyx_n_s___buildHeader, __pyx_k___buildHeader, sizeof(__pyx_k___buildHeader), 0, 0, 1, 1},
+ {&__pyx_n_s___buildLine, __pyx_k___buildLine, sizeof(__pyx_k___buildLine), 0, 0, 1, 1},
+ {&__pyx_n_s___call, __pyx_k___call, sizeof(__pyx_k___call), 0, 0, 1, 1},
+ {&__pyx_n_s___consensus_quality, __pyx_k___consensus_quality, sizeof(__pyx_k___consensus_quality), 0, 0, 1, 1},
+ {&__pyx_n_s___coverage, __pyx_k___coverage, sizeof(__pyx_k___coverage), 0, 0, 1, 1},
+ {&__pyx_n_s___delegate, __pyx_k___delegate, sizeof(__pyx_k___delegate), 0, 0, 1, 1},
+ {&__pyx_n_s___filename, __pyx_k___filename, sizeof(__pyx_k___filename), 0, 0, 1, 1},
+ {&__pyx_n_s___genotype, __pyx_k___genotype, sizeof(__pyx_k___genotype), 0, 0, 1, 1},
+ {&__pyx_n_s___hasIndex, __pyx_k___hasIndex, sizeof(__pyx_k___hasIndex), 0, 0, 1, 1},
+ {&__pyx_n_s___indel, __pyx_k___indel, sizeof(__pyx_k___indel), 0, 0, 1, 1},
+ {&__pyx_n_s___isOpen, __pyx_k___isOpen, sizeof(__pyx_k___isOpen), 0, 0, 1, 1},
+ {&__pyx_n_s___is_del, __pyx_k___is_del, sizeof(__pyx_k___is_del), 0, 0, 1, 1},
+ {&__pyx_n_s___is_head, __pyx_k___is_head, sizeof(__pyx_k___is_head), 0, 0, 1, 1},
+ {&__pyx_n_s___is_tail, __pyx_k___is_tail, sizeof(__pyx_k___is_tail), 0, 0, 1, 1},
+ {&__pyx_n_s___level, __pyx_k___level, sizeof(__pyx_k___level), 0, 0, 1, 1},
+ {&__pyx_n_s___logfile, __pyx_k___logfile, sizeof(__pyx_k___logfile), 0, 0, 1, 1},
+ {&__pyx_n_s___open, __pyx_k___open, sizeof(__pyx_k___open), 0, 0, 1, 1},
+ {&__pyx_n_s___parseRegion, __pyx_k___parseRegion, sizeof(__pyx_k___parseRegion), 0, 0, 1, 1},
+ {&__pyx_n_s___pos, __pyx_k___pos, sizeof(__pyx_k___pos), 0, 0, 1, 1},
+ {&__pyx_n_s___qpos, __pyx_k___qpos, sizeof(__pyx_k___qpos), 0, 0, 1, 1},
+ {&__pyx_n_s___r, __pyx_k___r, sizeof(__pyx_k___r), 0, 0, 1, 1},
+ {&__pyx_n_s___reference_base, __pyx_k___reference_base, sizeof(__pyx_k___reference_base), 0, 0, 1, 1},
+ {&__pyx_n_s___samtools_dispatch, __pyx_k___samtools_dispatch, sizeof(__pyx_k___samtools_dispatch), 0, 0, 1, 1},
+ {&__pyx_n_s___snp_quality, __pyx_k___snp_quality, sizeof(__pyx_k___snp_quality), 0, 0, 1, 1},
+ {&__pyx_n_s___tid, __pyx_k___tid, sizeof(__pyx_k___tid), 0, 0, 1, 1},
+ {&__pyx_n_s__alignment, __pyx_k__alignment, sizeof(__pyx_k__alignment), 0, 0, 1, 1},
+ {&__pyx_n_s__all, __pyx_k__all, sizeof(__pyx_k__all), 0, 0, 1, 1},
+ {&__pyx_n_s__append, __pyx_k__append, sizeof(__pyx_k__append), 0, 0, 1, 1},
+ {&__pyx_n_s__args, __pyx_k__args, sizeof(__pyx_k__args), 0, 0, 1, 1},
+ {&__pyx_n_s__b, __pyx_k__b, sizeof(__pyx_k__b), 0, 0, 1, 1},
+ {&__pyx_n_s__bam, __pyx_k__bam, sizeof(__pyx_k__bam), 0, 0, 1, 1},
+ {&__pyx_n_s__beg, __pyx_k__beg, sizeof(__pyx_k__beg), 0, 0, 1, 1},
+ {&__pyx_n_s__bin, __pyx_k__bin, sizeof(__pyx_k__bin), 0, 0, 1, 1},
+ {&__pyx_n_s__bqual, __pyx_k__bqual, sizeof(__pyx_k__bqual), 0, 0, 1, 1},
+ {&__pyx_n_s__c, __pyx_k__c, sizeof(__pyx_k__c), 0, 0, 1, 1},
+ {&__pyx_n_s__calcsize, __pyx_k__calcsize, sizeof(__pyx_k__calcsize), 0, 0, 1, 1},
+ {&__pyx_n_s__callback, __pyx_k__callback, sizeof(__pyx_k__callback), 0, 0, 1, 1},
+ {&__pyx_n_s__cap_mapQ, __pyx_k__cap_mapQ, sizeof(__pyx_k__cap_mapQ), 0, 0, 1, 1},
+ {&__pyx_n_s__catch_stderr, __pyx_k__catch_stderr, sizeof(__pyx_k__catch_stderr), 0, 0, 1, 1},
+ {&__pyx_n_s__catch_stdout, __pyx_k__catch_stdout, sizeof(__pyx_k__catch_stdout), 0, 0, 1, 1},
+ {&__pyx_n_s__chr, __pyx_k__chr, sizeof(__pyx_k__chr), 0, 0, 1, 1},
+ {&__pyx_n_s__cigar, __pyx_k__cigar, sizeof(__pyx_k__cigar), 0, 0, 1, 1},
+ {&__pyx_n_s__close, __pyx_k__close, sizeof(__pyx_k__close), 0, 0, 1, 1},
+ {&__pyx_n_s__cmp, __pyx_k__cmp, sizeof(__pyx_k__cmp), 0, 0, 1, 1},
+ {&__pyx_n_s__cnext, __pyx_k__cnext, sizeof(__pyx_k__cnext), 0, 0, 1, 1},
+ {&__pyx_n_s__cnt1, __pyx_k__cnt1, sizeof(__pyx_k__cnt1), 0, 0, 1, 1},
+ {&__pyx_n_s__cnt2, __pyx_k__cnt2, sizeof(__pyx_k__cnt2), 0, 0, 1, 1},
+ {&__pyx_n_s__cnt_anti, __pyx_k__cnt_anti, sizeof(__pyx_k__cnt_anti), 0, 0, 1, 1},
+ {&__pyx_n_s__collections, __pyx_k__collections, sizeof(__pyx_k__collections), 0, 0, 1, 1},
+ {&__pyx_n_s__consensus_quality, __pyx_k__consensus_quality, sizeof(__pyx_k__consensus_quality), 0, 0, 1, 1},
+ {&__pyx_n_s__core, __pyx_k__core, sizeof(__pyx_k__core), 0, 0, 1, 1},
+ {&__pyx_n_s__coverage, __pyx_k__coverage, sizeof(__pyx_k__coverage), 0, 0, 1, 1},
+ {&__pyx_n_s__csamtools, __pyx_k__csamtools, sizeof(__pyx_k__csamtools), 0, 0, 1, 1},
+ {&__pyx_n_s__ctypes, __pyx_k__ctypes, sizeof(__pyx_k__ctypes), 0, 0, 1, 1},
+ {&__pyx_n_s__d, __pyx_k__d, sizeof(__pyx_k__d), 0, 0, 1, 1},
+ {&__pyx_n_s__data, __pyx_k__data, sizeof(__pyx_k__data), 0, 0, 1, 1},
+ {&__pyx_n_s__data_len, __pyx_k__data_len, sizeof(__pyx_k__data_len), 0, 0, 1, 1},
+ {&__pyx_n_s__dup, __pyx_k__dup, sizeof(__pyx_k__dup), 0, 0, 1, 1},
+ {&__pyx_n_s__dup2, __pyx_k__dup2, sizeof(__pyx_k__dup2), 0, 0, 1, 1},
+ {&__pyx_n_s__end, __pyx_k__end, sizeof(__pyx_k__end), 0, 0, 1, 1},
+ {&__pyx_n_s__errmod, __pyx_k__errmod, sizeof(__pyx_k__errmod), 0, 0, 1, 1},
+ {&__pyx_n_s__exc_type, __pyx_k__exc_type, sizeof(__pyx_k__exc_type), 0, 0, 1, 1},
+ {&__pyx_n_s__exc_value, __pyx_k__exc_value, sizeof(__pyx_k__exc_value), 0, 0, 1, 1},
+ {&__pyx_n_s__exists, __pyx_k__exists, sizeof(__pyx_k__exists), 0, 0, 1, 1},
+ {&__pyx_n_s__f, __pyx_k__f, sizeof(__pyx_k__f), 0, 0, 1, 1},
+ {&__pyx_n_s__fastafile, __pyx_k__fastafile, sizeof(__pyx_k__fastafile), 0, 0, 1, 1},
+ {&__pyx_n_s__fd, __pyx_k__fd, sizeof(__pyx_k__fd), 0, 0, 1, 1},
+ {&__pyx_n_s__fields, __pyx_k__fields, sizeof(__pyx_k__fields), 0, 0, 1, 1},
+ {&__pyx_n_s__filename, __pyx_k__filename, sizeof(__pyx_k__filename), 0, 0, 1, 1},
+ {&__pyx_n_s__fileno, __pyx_k__fileno, sizeof(__pyx_k__fileno), 0, 0, 1, 1},
+ {&__pyx_n_s__first_allele, __pyx_k__first_allele, sizeof(__pyx_k__first_allele), 0, 0, 1, 1},
+ {&__pyx_n_s__flag, __pyx_k__flag, sizeof(__pyx_k__flag), 0, 0, 1, 1},
+ {&__pyx_n_s__flush, __pyx_k__flush, sizeof(__pyx_k__flush), 0, 0, 1, 1},
+ {&__pyx_n_s__fp, __pyx_k__fp, sizeof(__pyx_k__fp), 0, 0, 1, 1},
+ {&__pyx_n_s__genotype, __pyx_k__genotype, sizeof(__pyx_k__genotype), 0, 0, 1, 1},
+ {&__pyx_n_s__getSequence, __pyx_k__getSequence, sizeof(__pyx_k__getSequence), 0, 0, 1, 1},
+ {&__pyx_n_s__gettid, __pyx_k__gettid, sizeof(__pyx_k__gettid), 0, 0, 1, 1},
+ {&__pyx_n_s__gt, __pyx_k__gt, sizeof(__pyx_k__gt), 0, 0, 1, 1},
+ {&__pyx_n_s__hasReference, __pyx_k__hasReference, sizeof(__pyx_k__hasReference), 0, 0, 1, 1},
+ {&__pyx_n_s__hash, __pyx_k__hash, sizeof(__pyx_k__hash), 0, 0, 1, 1},
+ {&__pyx_n_s__header, __pyx_k__header, sizeof(__pyx_k__header), 0, 0, 1, 1},
+ {&__pyx_n_s__het_rate, __pyx_k__het_rate, sizeof(__pyx_k__het_rate), 0, 0, 1, 1},
+ {&__pyx_n_s__i, __pyx_k__i, sizeof(__pyx_k__i), 0, 0, 1, 1},
+ {&__pyx_n_s__id, __pyx_k__id, sizeof(__pyx_k__id), 0, 0, 1, 1},
+ {&__pyx_n_s__indel, __pyx_k__indel, sizeof(__pyx_k__indel), 0, 0, 1, 1},
+ {&__pyx_n_s__indel1, __pyx_k__indel1, sizeof(__pyx_k__indel1), 0, 0, 1, 1},
+ {&__pyx_n_s__indel2, __pyx_k__indel2, sizeof(__pyx_k__indel2), 0, 0, 1, 1},
+ {&__pyx_n_s__index, __pyx_k__index, sizeof(__pyx_k__index), 0, 0, 1, 1},
+ {&__pyx_n_s__is_del, __pyx_k__is_del, sizeof(__pyx_k__is_del), 0, 0, 1, 1},
+ {&__pyx_n_s__is_head, __pyx_k__is_head, sizeof(__pyx_k__is_head), 0, 0, 1, 1},
+ {&__pyx_n_s__is_paired, __pyx_k__is_paired, sizeof(__pyx_k__is_paired), 0, 0, 1, 1},
+ {&__pyx_n_s__is_tail, __pyx_k__is_tail, sizeof(__pyx_k__is_tail), 0, 0, 1, 1},
+ {&__pyx_n_s__isbam, __pyx_k__isbam, sizeof(__pyx_k__isbam), 0, 0, 1, 1},
+ {&__pyx_n_s__isize, __pyx_k__isize, sizeof(__pyx_k__isize), 0, 0, 1, 1},
+ {&__pyx_n_s__isremote, __pyx_k__isremote, sizeof(__pyx_k__isremote), 0, 0, 1, 1},
+ {&__pyx_n_s__iter, __pyx_k__iter, sizeof(__pyx_k__iter), 0, 0, 1, 1},
+ {&__pyx_n_s__iterator_column, __pyx_k__iterator_column, sizeof(__pyx_k__iterator_column), 0, 0, 1, 1},
+ {&__pyx_n_s__iterdata, __pyx_k__iterdata, sizeof(__pyx_k__iterdata), 0, 0, 1, 1},
+ {&__pyx_n_s__join, __pyx_k__join, sizeof(__pyx_k__join), 0, 0, 1, 1},
+ {&__pyx_n_s__l_aux, __pyx_k__l_aux, sizeof(__pyx_k__l_aux), 0, 0, 1, 1},
+ {&__pyx_n_s__l_qname, __pyx_k__l_qname, sizeof(__pyx_k__l_qname), 0, 0, 1, 1},
+ {&__pyx_n_s__l_qseq, __pyx_k__l_qseq, sizeof(__pyx_k__l_qseq), 0, 0, 1, 1},
+ {&__pyx_n_s__l_text, __pyx_k__l_text, sizeof(__pyx_k__l_text), 0, 0, 1, 1},
+ {&__pyx_n_s__level, __pyx_k__level, sizeof(__pyx_k__level), 0, 0, 1, 1},
+ {&__pyx_n_s__m_data, __pyx_k__m_data, sizeof(__pyx_k__m_data), 0, 0, 1, 1},
+ {&__pyx_n_s__map, __pyx_k__map, sizeof(__pyx_k__map), 0, 0, 1, 1},
+ {&__pyx_n_s__mapping_quality, __pyx_k__mapping_quality, sizeof(__pyx_k__mapping_quality), 0, 0, 1, 1},
+ {&__pyx_n_s__mapq, __pyx_k__mapq, sizeof(__pyx_k__mapq), 0, 0, 1, 1},
+ {&__pyx_n_s__mask, __pyx_k__mask, sizeof(__pyx_k__mask), 0, 0, 1, 1},
+ {&__pyx_n_s__mate, __pyx_k__mate, sizeof(__pyx_k__mate), 0, 0, 1, 1},
+ {&__pyx_n_s__mate_is_unmapped, __pyx_k__mate_is_unmapped, sizeof(__pyx_k__mate_is_unmapped), 0, 0, 1, 1},
+ {&__pyx_n_s__max_depth, __pyx_k__max_depth, sizeof(__pyx_k__max_depth), 0, 0, 1, 1},
+ {&__pyx_n_s__method, __pyx_k__method, sizeof(__pyx_k__method), 0, 0, 1, 1},
+ {&__pyx_n_s__min_baseQ, __pyx_k__min_baseQ, sizeof(__pyx_k__min_baseQ), 0, 0, 1, 1},
+ {&__pyx_n_s__mkstemp, __pyx_k__mkstemp, sizeof(__pyx_k__mkstemp), 0, 0, 1, 1},
+ {&__pyx_n_s__mode, __pyx_k__mode, sizeof(__pyx_k__mode), 0, 0, 1, 1},
+ {&__pyx_n_s__mpos, __pyx_k__mpos, sizeof(__pyx_k__mpos), 0, 0, 1, 1},
+ {&__pyx_n_s__mtid, __pyx_k__mtid, sizeof(__pyx_k__mtid), 0, 0, 1, 1},
+ {&__pyx_n_s__n, __pyx_k__n, sizeof(__pyx_k__n), 0, 0, 1, 1},
+ {&__pyx_n_s__n_cigar, __pyx_k__n_cigar, sizeof(__pyx_k__n_cigar), 0, 0, 1, 1},
+ {&__pyx_n_s__n_hap, __pyx_k__n_hap, sizeof(__pyx_k__n_hap), 0, 0, 1, 1},
+ {&__pyx_n_s__n_haplotypes, __pyx_k__n_haplotypes, sizeof(__pyx_k__n_haplotypes), 0, 0, 1, 1},
+ {&__pyx_n_s__n_plp, __pyx_k__n_plp, sizeof(__pyx_k__n_plp), 0, 0, 1, 1},
+ {&__pyx_n_s__n_pu, __pyx_k__n_pu, sizeof(__pyx_k__n_pu), 0, 0, 1, 1},
+ {&__pyx_n_s__n_targets, __pyx_k__n_targets, sizeof(__pyx_k__n_targets), 0, 0, 1, 1},
+ {&__pyx_n_s__name, __pyx_k__name, sizeof(__pyx_k__name), 0, 0, 1, 1},
+ {&__pyx_n_s__nextiter, __pyx_k__nextiter, sizeof(__pyx_k__nextiter), 0, 0, 1, 1},
+ {&__pyx_n_s__nreferences, __pyx_k__nreferences, sizeof(__pyx_k__nreferences), 0, 0, 1, 1},
+ {&__pyx_n_s__object, __pyx_k__object, sizeof(__pyx_k__object), 0, 0, 1, 1},
+ {&__pyx_n_s__offset, __pyx_k__offset, sizeof(__pyx_k__offset), 0, 0, 1, 1},
+ {&__pyx_n_s__open, __pyx_k__open, sizeof(__pyx_k__open), 0, 0, 1, 1},
+ {&__pyx_n_s__options, __pyx_k__options, sizeof(__pyx_k__options), 0, 0, 1, 1},
+ {&__pyx_n_s__os, __pyx_k__os, sizeof(__pyx_k__os), 0, 0, 1, 1},
+ {&__pyx_n_s__pack_into, __pyx_k__pack_into, sizeof(__pyx_k__pack_into), 0, 0, 1, 1},
+ {&__pyx_n_s__path, __pyx_k__path, sizeof(__pyx_k__path), 0, 0, 1, 1},
+ {&__pyx_n_s__pileup_iter, __pyx_k__pileup_iter, sizeof(__pyx_k__pileup_iter), 0, 0, 1, 1},
+ {&__pyx_n_s__pileups, __pyx_k__pileups, sizeof(__pyx_k__pileups), 0, 0, 1, 1},
+ {&__pyx_n_s__plp, __pyx_k__plp, sizeof(__pyx_k__plp), 0, 0, 1, 1},
+ {&__pyx_n_s__port, __pyx_k__port, sizeof(__pyx_k__port), 0, 0, 1, 1},
+ {&__pyx_n_s__pos, __pyx_k__pos, sizeof(__pyx_k__pos), 0, 0, 1, 1},
+ {&__pyx_n_s__q_cns, __pyx_k__q_cns, sizeof(__pyx_k__q_cns), 0, 0, 1, 1},
+ {&__pyx_n_s__q_indel, __pyx_k__q_indel, sizeof(__pyx_k__q_indel), 0, 0, 1, 1},
+ {&__pyx_n_s__q_r, __pyx_k__q_r, sizeof(__pyx_k__q_r), 0, 0, 1, 1},
+ {&__pyx_n_s__q_ref, __pyx_k__q_ref, sizeof(__pyx_k__q_ref), 0, 0, 1, 1},
+ {&__pyx_n_s__qname, __pyx_k__qname, sizeof(__pyx_k__qname), 0, 0, 1, 1},
+ {&__pyx_n_s__qpos, __pyx_k__qpos, sizeof(__pyx_k__qpos), 0, 0, 1, 1},
+ {&__pyx_n_s__qseq, __pyx_k__qseq, sizeof(__pyx_k__qseq), 0, 0, 1, 1},
+ {&__pyx_n_s__qual, __pyx_k__qual, sizeof(__pyx_k__qual), 0, 0, 1, 1},
+ {&__pyx_n_s__r, __pyx_k__r, sizeof(__pyx_k__r), 0, 0, 1, 1},
+ {&__pyx_n_s__r_indel, __pyx_k__r_indel, sizeof(__pyx_k__r_indel), 0, 0, 1, 1},
+ {&__pyx_n_s__range, __pyx_k__range, sizeof(__pyx_k__range), 0, 0, 1, 1},
+ {&__pyx_n_s__raw, __pyx_k__raw, sizeof(__pyx_k__raw), 0, 0, 1, 1},
+ {&__pyx_n_s__rb, __pyx_k__rb, sizeof(__pyx_k__rb), 0, 0, 1, 1},
+ {&__pyx_n_s__re, __pyx_k__re, sizeof(__pyx_k__re), 0, 0, 1, 1},
+ {&__pyx_n_s__readAndRelease, __pyx_k__readAndRelease, sizeof(__pyx_k__readAndRelease), 0, 0, 1, 1},
+ {&__pyx_n_s__readlines, __pyx_k__readlines, sizeof(__pyx_k__readlines), 0, 0, 1, 1},
+ {&__pyx_n_s__reads_diff, __pyx_k__reads_diff, sizeof(__pyx_k__reads_diff), 0, 0, 1, 1},
+ {&__pyx_n_s__reads_first, __pyx_k__reads_first, sizeof(__pyx_k__reads_first), 0, 0, 1, 1},
+ {&__pyx_n_s__reads_second, __pyx_k__reads_second, sizeof(__pyx_k__reads_second), 0, 0, 1, 1},
+ {&__pyx_n_s__record, __pyx_k__record, sizeof(__pyx_k__record), 0, 0, 1, 1},
+ {&__pyx_n_s__reference, __pyx_k__reference, sizeof(__pyx_k__reference), 0, 0, 1, 1},
+ {&__pyx_n_s__reference_base, __pyx_k__reference_base, sizeof(__pyx_k__reference_base), 0, 0, 1, 1},
+ {&__pyx_n_s__referencelengths, __pyx_k__referencelengths, sizeof(__pyx_k__referencelengths), 0, 0, 1, 1},
+ {&__pyx_n_s__referencenames, __pyx_k__referencenames, sizeof(__pyx_k__referencenames), 0, 0, 1, 1},
+ {&__pyx_n_s__region, __pyx_k__region, sizeof(__pyx_k__region), 0, 0, 1, 1},
+ {&__pyx_n_s__release, __pyx_k__release, sizeof(__pyx_k__release), 0, 0, 1, 1},
+ {&__pyx_n_s__remove, __pyx_k__remove, sizeof(__pyx_k__remove), 0, 0, 1, 1},
+ {&__pyx_n_s__reopen, __pyx_k__reopen, sizeof(__pyx_k__reopen), 0, 0, 1, 1},
+ {&__pyx_n_s__reset, __pyx_k__reset, sizeof(__pyx_k__reset), 0, 0, 1, 1},
+ {&__pyx_n_s__restore, __pyx_k__restore, sizeof(__pyx_k__restore), 0, 0, 1, 1},
+ {&__pyx_n_s__retval, __pyx_k__retval, sizeof(__pyx_k__retval), 0, 0, 1, 1},
+ {&__pyx_n_s__rg2lib, __pyx_k__rg2lib, sizeof(__pyx_k__rg2lib), 0, 0, 1, 1},
+ {&__pyx_n_s__rname, __pyx_k__rname, sizeof(__pyx_k__rname), 0, 0, 1, 1},
+ {&__pyx_n_s__rowiter, __pyx_k__rowiter, sizeof(__pyx_k__rowiter), 0, 0, 1, 1},
+ {&__pyx_n_s__s, __pyx_k__s, sizeof(__pyx_k__s), 0, 0, 1, 1},
+ {&__pyx_n_s__samfile, __pyx_k__samfile, sizeof(__pyx_k__samfile), 0, 0, 1, 1},
+ {&__pyx_n_s__samtools, __pyx_k__samtools, sizeof(__pyx_k__samtools), 0, 0, 1, 1},
+ {&__pyx_n_s__second_allele, __pyx_k__second_allele, sizeof(__pyx_k__second_allele), 0, 0, 1, 1},
+ {&__pyx_n_s__self, __pyx_k__self, sizeof(__pyx_k__self), 0, 0, 1, 1},
+ {&__pyx_n_s__seq, __pyx_k__seq, sizeof(__pyx_k__seq), 0, 0, 1, 1},
+ {&__pyx_n_s__seq_len, __pyx_k__seq_len, sizeof(__pyx_k__seq_len), 0, 0, 1, 1},
+ {&__pyx_n_s__setdevice, __pyx_k__setdevice, sizeof(__pyx_k__setdevice), 0, 0, 1, 1},
+ {&__pyx_n_s__setfd, __pyx_k__setfd, sizeof(__pyx_k__setfd), 0, 0, 1, 1},
+ {&__pyx_n_s__setfile, __pyx_k__setfile, sizeof(__pyx_k__setfile), 0, 0, 1, 1},
+ {&__pyx_n_s__setupIteratorData, __pyx_k__setupIteratorData, sizeof(__pyx_k__setupIteratorData), 0, 0, 1, 1},
+ {&__pyx_n_s__snp_quality, __pyx_k__snp_quality, sizeof(__pyx_k__snp_quality), 0, 0, 1, 1},
+ {&__pyx_n_s__split, __pyx_k__split, sizeof(__pyx_k__split), 0, 0, 1, 1},
+ {&__pyx_n_s__start, __pyx_k__start, sizeof(__pyx_k__start), 0, 0, 1, 1},
+ {&__pyx_n_s__startswith, __pyx_k__startswith, sizeof(__pyx_k__startswith), 0, 0, 1, 1},
+ {&__pyx_n_s__stderr, __pyx_k__stderr, sizeof(__pyx_k__stderr), 0, 0, 1, 1},
+ {&__pyx_n_s__stderr_f, __pyx_k__stderr_f, sizeof(__pyx_k__stderr_f), 0, 0, 1, 1},
+ {&__pyx_n_s__stderr_h, __pyx_k__stderr_h, sizeof(__pyx_k__stderr_h), 0, 0, 1, 1},
+ {&__pyx_n_s__stderr_save, __pyx_k__stderr_save, sizeof(__pyx_k__stderr_save), 0, 0, 1, 1},
+ {&__pyx_n_s__stdout, __pyx_k__stdout, sizeof(__pyx_k__stdout), 0, 0, 1, 1},
+ {&__pyx_n_s__stepper, __pyx_k__stepper, sizeof(__pyx_k__stepper), 0, 0, 1, 1},
+ {&__pyx_n_s__streams, __pyx_k__streams, sizeof(__pyx_k__streams), 0, 0, 1, 1},
+ {&__pyx_n_s__strip, __pyx_k__strip, sizeof(__pyx_k__strip), 0, 0, 1, 1},
+ {&__pyx_n_s__struct, __pyx_k__struct, sizeof(__pyx_k__struct), 0, 0, 1, 1},
+ {&__pyx_n_s__sys, __pyx_k__sys, sizeof(__pyx_k__sys), 0, 0, 1, 1},
+ {&__pyx_n_s__tags, __pyx_k__tags, sizeof(__pyx_k__tags), 0, 0, 1, 1},
+ {&__pyx_n_s__target_len, __pyx_k__target_len, sizeof(__pyx_k__target_len), 0, 0, 1, 1},
+ {&__pyx_n_s__target_name, __pyx_k__target_name, sizeof(__pyx_k__target_name), 0, 0, 1, 1},
+ {&__pyx_n_s__tempfile, __pyx_k__tempfile, sizeof(__pyx_k__tempfile), 0, 0, 1, 1},
+ {&__pyx_n_s__template, __pyx_k__template, sizeof(__pyx_k__template), 0, 0, 1, 1},
+ {&__pyx_n_s__text, __pyx_k__text, sizeof(__pyx_k__text), 0, 0, 1, 1},
+ {&__pyx_n_s__theta, __pyx_k__theta, sizeof(__pyx_k__theta), 0, 0, 1, 1},
+ {&__pyx_n_s__tid, __pyx_k__tid, sizeof(__pyx_k__tid), 0, 0, 1, 1},
+ {&__pyx_n_s__traceback, __pyx_k__traceback, sizeof(__pyx_k__traceback), 0, 0, 1, 1},
+ {&__pyx_n_s__types, __pyx_k__types, sizeof(__pyx_k__types), 0, 0, 1, 1},
+ {&__pyx_n_s__until_eof, __pyx_k__until_eof, sizeof(__pyx_k__until_eof), 0, 0, 1, 1},
+ {&__pyx_n_s__view, __pyx_k__view, sizeof(__pyx_k__view), 0, 0, 1, 1},
+ {&__pyx_n_s__w, __pyx_k__w, sizeof(__pyx_k__w), 0, 0, 1, 1},
+ {&__pyx_n_s__wb, __pyx_k__wb, sizeof(__pyx_k__wb), 0, 0, 1, 1},
+ {&__pyx_n_s__wbu, __pyx_k__wbu, sizeof(__pyx_k__wbu), 0, 0, 1, 1},
+ {&__pyx_n_s__wh, __pyx_k__wh, sizeof(__pyx_k__wh), 0, 0, 1, 1},
+ {&__pyx_n_s__where, __pyx_k__where, sizeof(__pyx_k__where), 0, 0, 1, 1},
+ {&__pyx_n_s__x, __pyx_k__x, sizeof(__pyx_k__x), 0, 0, 1, 1},
+ {0, 0, 0, 0, 0, 0, 0}
+};
+static int __Pyx_InitCachedBuiltins(void) {
+ __pyx_builtin_open = __Pyx_GetName(__pyx_b, __pyx_n_s__open); if (!__pyx_builtin_open) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 56; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_builtin_object = __Pyx_GetName(__pyx_b, __pyx_n_s__object); if (!__pyx_builtin_object) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 106; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_builtin_map = __Pyx_GetName(__pyx_b, __pyx_n_s__map); if (!__pyx_builtin_map) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_builtin_ValueError = __Pyx_GetName(__pyx_b, __pyx_n_s__ValueError); if (!__pyx_builtin_ValueError) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_builtin_IOError = __Pyx_GetName(__pyx_b, __pyx_n_s__IOError); if (!__pyx_builtin_IOError) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 267; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_builtin_NotImplementedError = __Pyx_GetName(__pyx_b, __pyx_n_s__NotImplementedError); if (!__pyx_builtin_NotImplementedError) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 652; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_builtin_KeyError = __Pyx_GetName(__pyx_b, __pyx_n_s__KeyError); if (!__pyx_builtin_KeyError) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1074; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_builtin_StopIteration = __Pyx_GetName(__pyx_b, __pyx_n_s__StopIteration); if (!__pyx_builtin_StopIteration) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1120; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_builtin_cmp = __Pyx_GetName(__pyx_b, __pyx_n_s__cmp); if (!__pyx_builtin_cmp) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1797; __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 = 2337; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_builtin_TypeError = __Pyx_GetName(__pyx_b, __pyx_n_s__TypeError); if (!__pyx_builtin_TypeError) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2414; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_builtin_range = __Pyx_GetName(__pyx_b, __pyx_n_s__range); if (!__pyx_builtin_range) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2713; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ return 0;
+ __pyx_L1_error:;
+ return -1;
+}
+
+static int __Pyx_InitCachedConstants(void) {
+ __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants");
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":249
+ * def __len__(self):
+ * if self.fastafile == NULL:
+ * raise ValueError( "calling len() on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * return faidx_fetch_nseq(self.fastafile)
+ */
+ __pyx_k_tuple_4 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_4)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 249; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_4));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_3));
+ PyTuple_SET_ITEM(__pyx_k_tuple_4, 0, ((PyObject *)__pyx_kp_s_3));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_3));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_4));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":281
+ * '''number of :term:`filename` associated with this object.'''
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return self._filename
+ *
+ */
+ __pyx_k_tuple_7 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_7)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 281; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_7));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_7, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_7));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":306
+ *
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * cdef int length
+ */
+ __pyx_k_tuple_8 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_8)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 306; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_8));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_8, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_8));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":312
+ *
+ * if not region:
+ * if reference is None: raise ValueError( 'no sequence/region supplied.' ) # <<<<<<<<<<<<<<
+ * if start is None: start = 0
+ * if end is None: end = max_pos -1
+ */
+ __pyx_k_tuple_10 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_10)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 312; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__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));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":555
+ * self.samfile = samopen( filename, mode, NULL )
+ * if self.samfile == NULL:
+ * raise ValueError( "could not open file - is it SAM/BAM format?") # <<<<<<<<<<<<<<
+ *
+ * if self.samfile.header == NULL:
+ */
+ __pyx_k_tuple_24 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_24)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 555; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_24));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_23));
+ PyTuple_SET_ITEM(__pyx_k_tuple_24, 0, ((PyObject *)__pyx_kp_s_23));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_23));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_24));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":558
+ *
+ * if self.samfile.header == NULL:
+ * raise ValueError( "could not open file - is it SAM/BAM format?") # <<<<<<<<<<<<<<
+ *
+ * if self.samfile.header.n_targets == 0:
+ */
+ __pyx_k_tuple_25 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_25)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 558; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_25));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_23));
+ PyTuple_SET_ITEM(__pyx_k_tuple_25, 0, ((PyObject *)__pyx_kp_s_23));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_23));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_25));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":561
+ *
+ * if self.samfile.header.n_targets == 0:
+ * raise ValueError( "could not open file - is it SAM/BAM format?") # <<<<<<<<<<<<<<
+ *
+ * if self.samfile == NULL:
+ */
+ __pyx_k_tuple_26 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_26)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 561; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_26));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_23));
+ PyTuple_SET_ITEM(__pyx_k_tuple_26, 0, ((PyObject *)__pyx_kp_s_23));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_23));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_26));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":585
+ * '''
+ * convert numerical :term:`tid` into :term:`reference` name.'''
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * if not 0 <= tid < self.samfile.header.n_targets:
+ * raise ValueError( "tid out of range 0<=tid<%i" % self.samfile.header.n_targets )
+ */
+ __pyx_k_tuple_29 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_29)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 585; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_29));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_29, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_29));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":596
+ * returns -1 if reference is not known.
+ * '''
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return pysam_reference2tid( self.samfile.header, reference )
+ *
+ */
+ __pyx_k_tuple_31 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_31)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_31));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_31, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_31));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":634
+ * if len(parts) >= 3: rend = int(parts[2])
+ *
+ * if not reference: return 0, 0, 0, 0 # <<<<<<<<<<<<<<
+ *
+ * rtid = self.gettid( reference )
+ */
+ __pyx_k_tuple_33 = PyTuple_New(4); if (unlikely(!__pyx_k_tuple_33)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 634; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_33));
+ __Pyx_INCREF(__pyx_int_0);
+ PyTuple_SET_ITEM(__pyx_k_tuple_33, 0, __pyx_int_0);
+ __Pyx_GIVEREF(__pyx_int_0);
+ __Pyx_INCREF(__pyx_int_0);
+ PyTuple_SET_ITEM(__pyx_k_tuple_33, 1, __pyx_int_0);
+ __Pyx_GIVEREF(__pyx_int_0);
+ __Pyx_INCREF(__pyx_int_0);
+ PyTuple_SET_ITEM(__pyx_k_tuple_33, 2, __pyx_int_0);
+ __Pyx_GIVEREF(__pyx_int_0);
+ __Pyx_INCREF(__pyx_int_0);
+ PyTuple_SET_ITEM(__pyx_k_tuple_33, 3, __pyx_int_0);
+ __Pyx_GIVEREF(__pyx_int_0);
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_33));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":650
+ *
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * if not self.isbam:
+ * raise NotImplementedError("seek only available in bam files")
+ */
+ __pyx_k_tuple_36 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_36)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 650; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_36));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_36, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_36));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":652
+ * raise ValueError( "I/O operation on closed file" )
+ * if not self.isbam:
+ * raise NotImplementedError("seek only available in bam files") # <<<<<<<<<<<<<<
+ * return bam_seek( self.samfile.x.bam, offset, where )
+ *
+ */
+ __pyx_k_tuple_38 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_38)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 652; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_38));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_37));
+ PyTuple_SET_ITEM(__pyx_k_tuple_38, 0, ((PyObject *)__pyx_kp_s_37));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_37));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_38));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":660
+ * '''
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * if not self.isbam:
+ * raise NotImplementedError("seek only available in bam files")
+ */
+ __pyx_k_tuple_39 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_39)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 660; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_39));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_39, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_39));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":662
+ * raise ValueError( "I/O operation on closed file" )
+ * if not self.isbam:
+ * raise NotImplementedError("seek only available in bam files") # <<<<<<<<<<<<<<
+ *
+ * return bam_tell( self.samfile.x.bam )
+ */
+ __pyx_k_tuple_40 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_40)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 662; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_40));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_37));
+ PyTuple_SET_ITEM(__pyx_k_tuple_40, 0, ((PyObject *)__pyx_kp_s_37));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_37));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_40));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":696
+ *
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * has_coord, rtid, rstart, rend = self._parseRegion( reference, start, end, region )
+ */
+ __pyx_k_tuple_42 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_42)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 696; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_42));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_42, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_42));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":702
+ * if self.isbam:
+ * if not until_eof and not self._hasIndex() and not self.isremote:
+ * raise ValueError( "fetch called on bamfile without index" ) # <<<<<<<<<<<<<<
+ *
+ * if callback:
+ */
+ __pyx_k_tuple_44 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_44)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 702; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_44));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_43));
+ PyTuple_SET_ITEM(__pyx_k_tuple_44, 0, ((PyObject *)__pyx_kp_s_43));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_43));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_44));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":705
+ *
+ * if callback:
+ * if not has_coord: raise ValueError( "callback functionality requires a region/reference" ) # <<<<<<<<<<<<<<
+ * if not self._hasIndex(): raise ValueError( "no index available for fetch" )
+ * return bam_fetch(self.samfile.x.bam,
+ */
+ __pyx_k_tuple_46 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_46)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 705; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_46));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_45));
+ PyTuple_SET_ITEM(__pyx_k_tuple_46, 0, ((PyObject *)__pyx_kp_s_45));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_45));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_46));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":706
+ * if callback:
+ * if not has_coord: raise ValueError( "callback functionality requires a region/reference" )
+ * if not self._hasIndex(): raise ValueError( "no index available for fetch" ) # <<<<<<<<<<<<<<
+ * return bam_fetch(self.samfile.x.bam,
+ * self.index,
+ */
+ __pyx_k_tuple_48 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_48)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 706; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_48));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_47));
+ PyTuple_SET_ITEM(__pyx_k_tuple_48, 0, ((PyObject *)__pyx_kp_s_47));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_47));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_48));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":726
+ * # this happens if a bamfile is opened with mode 'r'
+ * if self.samfile.header.n_targets == 0:
+ * raise ValueError( "fetch called for samfile without header") # <<<<<<<<<<<<<<
+ *
+ * if region != None:
+ */
+ __pyx_k_tuple_50 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_50)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 726; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_50));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_49));
+ PyTuple_SET_ITEM(__pyx_k_tuple_50, 0, ((PyObject *)__pyx_kp_s_49));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_49));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_50));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":729
+ *
+ * if region != None:
+ * raise ValueError ("fetch for a region is not available for sam files" ) # <<<<<<<<<<<<<<
+ * if callback:
+ * raise NotImplementedError( "callback not implemented yet" )
+ */
+ __pyx_k_tuple_52 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_52)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 729; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_52));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_51));
+ PyTuple_SET_ITEM(__pyx_k_tuple_52, 0, ((PyObject *)__pyx_kp_s_51));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_51));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_52));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":731
+ * raise ValueError ("fetch for a region is not available for sam files" )
+ * if callback:
+ * raise NotImplementedError( "callback not implemented yet" ) # <<<<<<<<<<<<<<
+ * else:
+ * return IteratorRowAll( self )
+ */
+ __pyx_k_tuple_54 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_54)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 731; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_54));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_53));
+ PyTuple_SET_ITEM(__pyx_k_tuple_54, 0, ((PyObject *)__pyx_kp_s_53));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_53));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_54));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":749
+ * '''
+ * if not read.is_paired:
+ * raise ValueError( "read is unpaired" ) # <<<<<<<<<<<<<<
+ * if read.mate_is_unmapped:
+ * raise ValueError( "mate is unmapped" )
+ */
+ __pyx_k_tuple_56 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_56)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 749; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_56));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_55));
+ PyTuple_SET_ITEM(__pyx_k_tuple_56, 0, ((PyObject *)__pyx_kp_s_55));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_55));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_56));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":751
+ * raise ValueError( "read is unpaired" )
+ * if read.mate_is_unmapped:
+ * raise ValueError( "mate is unmapped" ) # <<<<<<<<<<<<<<
+ *
+ * cdef MateData mate_data
+ */
+ __pyx_k_tuple_58 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_58)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 751; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_58));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_57));
+ PyTuple_SET_ITEM(__pyx_k_tuple_58, 0, ((PyObject *)__pyx_kp_s_57));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_57));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_58));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":770
+ *
+ * if mate_data.mate == NULL:
+ * raise ValueError( "mate not found" ) # <<<<<<<<<<<<<<
+ *
+ * cdef AlignedRead dest = AlignedRead.__new__(AlignedRead)
+ */
+ __pyx_k_tuple_60 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_60)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 770; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_60));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_59));
+ PyTuple_SET_ITEM(__pyx_k_tuple_60, 0, ((PyObject *)__pyx_kp_s_59));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_59));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_60));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":795
+ *
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * region, rtid, rstart, rend = self._parseRegion( reference, start, end, region )
+ */
+ __pyx_k_tuple_62 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_62)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 795; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_62));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_62, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_62));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":804
+ * if self.isbam:
+ * if not until_eof and not self._hasIndex() and not self.isremote:
+ * raise ValueError( "fetch called on bamfile without index" ) # <<<<<<<<<<<<<<
+ *
+ * if not region:
+ */
+ __pyx_k_tuple_63 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_63)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 804; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_63));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_43));
+ PyTuple_SET_ITEM(__pyx_k_tuple_63, 0, ((PyObject *)__pyx_kp_s_43));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_43));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_63));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":807
+ *
+ * if not region:
+ * raise ValueError( "counting functionality requires a region/reference" ) # <<<<<<<<<<<<<<
+ * if not self._hasIndex(): raise ValueError( "no index available for fetch" )
+ * bam_fetch(self.samfile.x.bam,
+ */
+ __pyx_k_tuple_65 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_65)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 807; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_65));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_64));
+ PyTuple_SET_ITEM(__pyx_k_tuple_65, 0, ((PyObject *)__pyx_kp_s_64));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_64));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_65));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":808
+ * if not region:
+ * raise ValueError( "counting functionality requires a region/reference" )
+ * if not self._hasIndex(): raise ValueError( "no index available for fetch" ) # <<<<<<<<<<<<<<
+ * bam_fetch(self.samfile.x.bam,
+ * self.index,
+ */
+ __pyx_k_tuple_66 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_66)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 808; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_66));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_47));
+ PyTuple_SET_ITEM(__pyx_k_tuple_66, 0, ((PyObject *)__pyx_kp_s_47));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_47));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_66));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":818
+ * return counter
+ * else:
+ * raise ValueError ("count for a region is not available for sam files" ) # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ __pyx_k_tuple_68 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_68)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 818; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_68));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_67));
+ PyTuple_SET_ITEM(__pyx_k_tuple_68, 0, ((PyObject *)__pyx_kp_s_67));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_67));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_68));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":871
+ *
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * has_coord, rtid, rstart, rend = self._parseRegion( reference, start, end, region )
+ */
+ __pyx_k_tuple_69 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_69)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 871; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_69));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_69, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_69));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":876
+ *
+ * if self.isbam:
+ * if not self._hasIndex(): raise ValueError( "no index available for pileup" ) # <<<<<<<<<<<<<<
+ *
+ * if callback:
+ */
+ __pyx_k_tuple_71 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_71)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 876; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_71));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_70));
+ PyTuple_SET_ITEM(__pyx_k_tuple_71, 0, ((PyObject *)__pyx_kp_s_70));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_70));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_71));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":879
+ *
+ * if callback:
+ * if not has_coord: raise ValueError( "callback functionality requires a region/reference" ) # <<<<<<<<<<<<<<
+ *
+ * buf = bam_plbuf_init( <bam_pileup_f>pileup_callback, <void*>callback )
+ */
+ __pyx_k_tuple_72 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_72)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 879; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_72));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_45));
+ PyTuple_SET_ITEM(__pyx_k_tuple_72, 0, ((PyObject *)__pyx_kp_s_45));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_45));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_72));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":900
+ *
+ * else:
+ * raise NotImplementedError( "pileup of samfiles not implemented yet" ) # <<<<<<<<<<<<<<
+ *
+ * def close( self ):
+ */
+ __pyx_k_tuple_74 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_74)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 900; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_74));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_73));
+ PyTuple_SET_ITEM(__pyx_k_tuple_74, 0, ((PyObject *)__pyx_kp_s_73));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_73));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_74));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":925
+ * '''
+ * if not self._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * return samwrite( self.samfile, read._delegate )
+ */
+ __pyx_k_tuple_75 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_75)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 925; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_75));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_75, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_75));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":944
+ * '''number of :term:`filename` associated with this object.'''
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return self._filename
+ *
+ */
+ __pyx_k_tuple_76 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_76)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 944; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_76));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_76, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_76));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":950
+ * '''number of :term:`reference` sequences in the file.'''
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return self.samfile.header.n_targets
+ *
+ */
+ __pyx_k_tuple_77 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_77)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 950; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_77));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_77, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_77));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":956
+ * """tuple with the names of :term:`reference` sequences."""
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * t = []
+ * for x from 0 <= x < self.samfile.header.n_targets:
+ */
+ __pyx_k_tuple_78 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_78)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 956; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_78));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_78, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_78));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":967
+ * """
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * t = []
+ * for x from 0 <= x < self.samfile.header.n_targets:
+ */
+ __pyx_k_tuple_79 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_79)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 967; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_79));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_79, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_79));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":976
+ * '''full contents of the :term:`sam file` header as a string.'''
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return PyString_FromStringAndSize(self.samfile.header.text, self.samfile.header.l_text)
+ *
+ */
+ __pyx_k_tuple_80 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_80)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 976; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_80));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_80, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_80));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":984
+ * '''
+ * def __get__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * result = {}
+ */
+ __pyx_k_tuple_81 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_81)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 984; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_81));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_81, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_81));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":991
+ * # convert to python string (note: call self.text to create 0-terminated string)
+ * t = self.text
+ * for line in t.split("\n"): # <<<<<<<<<<<<<<
+ * if not line.strip(): continue
+ * assert line.startswith("@"), "header line without '@': '%s'" % line
+ */
+ __pyx_k_tuple_82 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_82)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 991; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_82));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_2));
+ PyTuple_SET_ITEM(__pyx_k_tuple_82, 0, ((PyObject *)__pyx_kp_s_2));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_2));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_82));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":993
+ * for line in t.split("\n"):
+ * if not line.strip(): continue
+ * assert line.startswith("@"), "header line without '@': '%s'" % line # <<<<<<<<<<<<<<
+ * fields = line[1:].split("\t")
+ * record = fields[0]
+ */
+ __pyx_k_tuple_84 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_84)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 993; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_84));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_83));
+ PyTuple_SET_ITEM(__pyx_k_tuple_84, 0, ((PyObject *)__pyx_kp_s_83));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_83));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_84));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":994
+ * if not line.strip(): continue
+ * assert line.startswith("@"), "header line without '@': '%s'" % line
+ * fields = line[1:].split("\t") # <<<<<<<<<<<<<<
+ * record = fields[0]
+ * assert record in VALID_HEADER_TYPES, "header line with invalid type '%s': '%s'" % (record, line)
+ */
+ __pyx_k_tuple_86 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_86)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 994; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_86));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_1));
+ PyTuple_SET_ITEM(__pyx_k_tuple_86, 0, ((PyObject *)__pyx_kp_s_1));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_1));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_86));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1007
+ * x = {}
+ * for field in fields[1:]:
+ * key, value = field.split(":",1) # <<<<<<<<<<<<<<
+ * if key not in VALID_HEADER_FIELDS[record]:
+ * raise ValueError( "unknown field code '%s' in record '%s'" % (key, record) )
+ */
+ __pyx_k_tuple_89 = PyTuple_New(2); if (unlikely(!__pyx_k_tuple_89)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1007; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_89));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_88));
+ PyTuple_SET_ITEM(__pyx_k_tuple_89, 0, ((PyObject *)__pyx_kp_s_88));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_88));
+ __Pyx_INCREF(__pyx_int_1);
+ PyTuple_SET_ITEM(__pyx_k_tuple_89, 1, __pyx_int_1);
+ __Pyx_GIVEREF(__pyx_int_1);
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_89));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1098
+ * ###############################################################
+ * def __iter__(self):
+ * if not self._isOpen(): raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ * return self
+ *
+ */
+ __pyx_k_tuple_96 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_96)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1098; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_96));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_96, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_96));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1173
+ *
+ * if not samfile._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * if not samfile._hasIndex():
+ */
+ __pyx_k_tuple_97 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_97)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1173; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_97));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_97, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_97));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1176
+ *
+ * if not samfile._hasIndex():
+ * raise ValueError( "no index available for iteration" ) # <<<<<<<<<<<<<<
+ *
+ * # makes sure that samfile stays alive as long as the
+ */
+ __pyx_k_tuple_99 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_99)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1176; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_99));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_98));
+ PyTuple_SET_ITEM(__pyx_k_tuple_99, 0, ((PyObject *)__pyx_kp_s_98));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_98));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_99));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1240
+ *
+ * if not samfile._isOpen():
+ * raise ValueError( "I/O operation on closed file" ) # <<<<<<<<<<<<<<
+ *
+ * if samfile.isbam: mode = "rb"
+ */
+ __pyx_k_tuple_100 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_100)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1240; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_100));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_6));
+ PyTuple_SET_ITEM(__pyx_k_tuple_100, 0, ((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_6));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_100));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1292
+ * def __cinit__(self, Samfile samfile):
+ * assert samfile._isOpen()
+ * if not samfile._hasIndex(): raise ValueError("no index available for fetch") # <<<<<<<<<<<<<<
+ * self.samfile = samfile
+ * self.tid = -1
+ */
+ __pyx_k_tuple_101 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_101)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1292; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_101));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_47));
+ PyTuple_SET_ITEM(__pyx_k_tuple_101, 0, ((PyObject *)__pyx_kp_s_47));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_47));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_101));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1586
+ * self.cnext()
+ * if self.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * if self.plp == NULL:
+ */
+ __pyx_k_tuple_106 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_106)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1586; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_106));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_105));
+ PyTuple_SET_ITEM(__pyx_k_tuple_106, 0, ((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_106));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1618
+ *
+ * if self.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * # return result, if within same reference
+ */
+ __pyx_k_tuple_107 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_107)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1618; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_107));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_105));
+ PyTuple_SET_ITEM(__pyx_k_tuple_107, 0, ((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_107));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2139
+ * size = struct.calcsize(fmt)
+ * if offset + size > max_size:
+ * raise NotImplementedError("tags field too large") # <<<<<<<<<<<<<<
+ *
+ * struct.pack_into( fmt,
+ */
+ __pyx_k_tuple_123 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_123)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2139; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_123));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_122));
+ PyTuple_SET_ITEM(__pyx_k_tuple_123, 0, ((PyObject *)__pyx_kp_s_122));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_122));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_123));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2414
+ *
+ * def __init__(self):
+ * raise TypeError("This class cannot be instantiated from Python") # <<<<<<<<<<<<<<
+ *
+ * def __str__(self):
+ */
+ __pyx_k_tuple_147 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_147)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2414; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_147));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_146));
+ PyTuple_SET_ITEM(__pyx_k_tuple_147, 0, ((PyObject *)__pyx_kp_s_146));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_146));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_147));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2458
+ *
+ * def __init__(self):
+ * raise TypeError("This class cannot be instantiated from Python") # <<<<<<<<<<<<<<
+ *
+ * def __str__(self):
+ */
+ __pyx_k_tuple_148 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_148)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2458; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_148));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_146));
+ PyTuple_SET_ITEM(__pyx_k_tuple_148, 0, ((PyObject *)__pyx_kp_s_146));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_146));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_148));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2570
+ * # recover. Thus redirect output to file with -o option.
+ * if method == "view":
+ * if "-o" in args: raise ValueError("option -o is forbidden in samtools view") # <<<<<<<<<<<<<<
+ * args = ( "-o", stdout_f ) + args
+ *
+ */
+ __pyx_k_tuple_154 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_154)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2570; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_154));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_153));
+ PyTuple_SET_ITEM(__pyx_k_tuple_154, 0, ((PyObject *)__pyx_kp_s_153));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_153));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_154));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2766
+ *
+ * if self.iter.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.plp == NULL:
+ */
+ __pyx_k_tuple_160 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_160)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2766; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_160));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_105));
+ PyTuple_SET_ITEM(__pyx_k_tuple_160, 0, ((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_160));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2845
+ *
+ * if self.iter.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.plp == NULL:
+ */
+ __pyx_k_tuple_162 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_162)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2845; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_162));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_105));
+ PyTuple_SET_ITEM(__pyx_k_tuple_162, 0, ((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_162));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2848
+ *
+ * if self.iter.plp == NULL:
+ * raise ValueError( "no reads in region - no call" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.pos == pos: break
+ */
+ __pyx_k_tuple_164 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_164)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2848; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_164));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_163));
+ PyTuple_SET_ITEM(__pyx_k_tuple_164, 0, ((PyObject *)__pyx_kp_s_163));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_163));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_164));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3110
+ *
+ * if self.iter.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.plp == NULL:
+ */
+ __pyx_k_tuple_167 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_167)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3110; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_167));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_105));
+ PyTuple_SET_ITEM(__pyx_k_tuple_167, 0, ((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_167));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3113
+ *
+ * if self.iter.plp == NULL:
+ * raise ValueError( "no reads in region - no call" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.pos == pos: break
+ */
+ __pyx_k_tuple_168 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_168)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3113; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_168));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_163));
+ PyTuple_SET_ITEM(__pyx_k_tuple_168, 0, ((PyObject *)__pyx_kp_s_163));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_163));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_168));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3150
+ *
+ * if self.iter.n_plp < 0:
+ * raise ValueError("error during iteration" ) # <<<<<<<<<<<<<<
+ *
+ * if self.iter.plp == NULL:
+ */
+ __pyx_k_tuple_169 = PyTuple_New(1); if (unlikely(!__pyx_k_tuple_169)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3150; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_169));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_105));
+ PyTuple_SET_ITEM(__pyx_k_tuple_169, 0, ((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_105));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_169));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":56
+ *
+ * # redirect stderr to 0
+ * _logfile = open("/dev/null", "w") # <<<<<<<<<<<<<<
+ * pysam_set_stderr( PyFile_AsFile( _logfile ) )
+ *
+ */
+ __pyx_k_tuple_229 = PyTuple_New(2); if (unlikely(!__pyx_k_tuple_229)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 56; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_229));
+ __Pyx_INCREF(((PyObject *)__pyx_kp_s_228));
+ PyTuple_SET_ITEM(__pyx_k_tuple_229, 0, ((PyObject *)__pyx_kp_s_228));
+ __Pyx_GIVEREF(((PyObject *)__pyx_kp_s_228));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__w));
+ PyTuple_SET_ITEM(__pyx_k_tuple_229, 1, ((PyObject *)__pyx_n_s__w));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__w));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_229));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":202
+ *
+ * # order of records within sam headers
+ * VALID_HEADERS = ("HD", "SQ", "RG", "PG", "CO" ) # <<<<<<<<<<<<<<
+ *
+ * # type conversions within sam header records
+ */
+ __pyx_k_tuple_232 = PyTuple_New(5); if (unlikely(!__pyx_k_tuple_232)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 202; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_232));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__HD));
+ PyTuple_SET_ITEM(__pyx_k_tuple_232, 0, ((PyObject *)__pyx_n_s__HD));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__HD));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__SQ));
+ PyTuple_SET_ITEM(__pyx_k_tuple_232, 1, ((PyObject *)__pyx_n_s__SQ));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__SQ));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__RG));
+ PyTuple_SET_ITEM(__pyx_k_tuple_232, 2, ((PyObject *)__pyx_n_s__RG));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__RG));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__PG));
+ PyTuple_SET_ITEM(__pyx_k_tuple_232, 3, ((PyObject *)__pyx_n_s__PG));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__PG));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__CO));
+ PyTuple_SET_ITEM(__pyx_k_tuple_232, 4, ((PyObject *)__pyx_n_s__CO));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__CO));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_232));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":211
+ *
+ * # output order of fields within records
+ * VALID_HEADER_ORDER = { "HD" : ( "VN", "SO", "GO" ), # <<<<<<<<<<<<<<
+ * "SQ" : ( "SN", "LN", "AS", "M5" , "UR" , "SP" ),
+ * "RG" : ( "ID", "SM", "LB", "DS" , "PU" , "PI" , "CN" , "DT", "PL" ),
+ */
+ __pyx_k_tuple_233 = PyTuple_New(3); if (unlikely(!__pyx_k_tuple_233)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 211; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_233));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__VN));
+ PyTuple_SET_ITEM(__pyx_k_tuple_233, 0, ((PyObject *)__pyx_n_s__VN));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__VN));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__SO));
+ PyTuple_SET_ITEM(__pyx_k_tuple_233, 1, ((PyObject *)__pyx_n_s__SO));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__SO));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__GO));
+ PyTuple_SET_ITEM(__pyx_k_tuple_233, 2, ((PyObject *)__pyx_n_s__GO));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__GO));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_233));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":212
+ * # output order of fields within records
+ * VALID_HEADER_ORDER = { "HD" : ( "VN", "SO", "GO" ),
+ * "SQ" : ( "SN", "LN", "AS", "M5" , "UR" , "SP" ), # <<<<<<<<<<<<<<
+ * "RG" : ( "ID", "SM", "LB", "DS" , "PU" , "PI" , "CN" , "DT", "PL" ),
+ * "PG" : ( "PN", "ID", "VN", "CL" ), }
+ */
+ __pyx_k_tuple_234 = PyTuple_New(6); if (unlikely(!__pyx_k_tuple_234)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 212; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_234));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__SN));
+ PyTuple_SET_ITEM(__pyx_k_tuple_234, 0, ((PyObject *)__pyx_n_s__SN));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__SN));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__LN));
+ PyTuple_SET_ITEM(__pyx_k_tuple_234, 1, ((PyObject *)__pyx_n_s__LN));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__LN));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__AS));
+ PyTuple_SET_ITEM(__pyx_k_tuple_234, 2, ((PyObject *)__pyx_n_s__AS));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__AS));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__M5));
+ PyTuple_SET_ITEM(__pyx_k_tuple_234, 3, ((PyObject *)__pyx_n_s__M5));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__M5));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__UR));
+ PyTuple_SET_ITEM(__pyx_k_tuple_234, 4, ((PyObject *)__pyx_n_s__UR));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__UR));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__SP));
+ PyTuple_SET_ITEM(__pyx_k_tuple_234, 5, ((PyObject *)__pyx_n_s__SP));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__SP));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_234));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":213
+ * VALID_HEADER_ORDER = { "HD" : ( "VN", "SO", "GO" ),
+ * "SQ" : ( "SN", "LN", "AS", "M5" , "UR" , "SP" ),
+ * "RG" : ( "ID", "SM", "LB", "DS" , "PU" , "PI" , "CN" , "DT", "PL" ), # <<<<<<<<<<<<<<
+ * "PG" : ( "PN", "ID", "VN", "CL" ), }
+ *
+ */
+ __pyx_k_tuple_235 = PyTuple_New(9); if (unlikely(!__pyx_k_tuple_235)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 213; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_235));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__ID));
+ PyTuple_SET_ITEM(__pyx_k_tuple_235, 0, ((PyObject *)__pyx_n_s__ID));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ID));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__SM));
+ PyTuple_SET_ITEM(__pyx_k_tuple_235, 1, ((PyObject *)__pyx_n_s__SM));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__SM));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__LB));
+ PyTuple_SET_ITEM(__pyx_k_tuple_235, 2, ((PyObject *)__pyx_n_s__LB));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__LB));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__DS));
+ PyTuple_SET_ITEM(__pyx_k_tuple_235, 3, ((PyObject *)__pyx_n_s__DS));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__DS));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__PU));
+ PyTuple_SET_ITEM(__pyx_k_tuple_235, 4, ((PyObject *)__pyx_n_s__PU));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__PU));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__PI));
+ PyTuple_SET_ITEM(__pyx_k_tuple_235, 5, ((PyObject *)__pyx_n_s__PI));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__PI));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__CN));
+ PyTuple_SET_ITEM(__pyx_k_tuple_235, 6, ((PyObject *)__pyx_n_s__CN));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__CN));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__DT));
+ PyTuple_SET_ITEM(__pyx_k_tuple_235, 7, ((PyObject *)__pyx_n_s__DT));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__DT));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__PL));
+ PyTuple_SET_ITEM(__pyx_k_tuple_235, 8, ((PyObject *)__pyx_n_s__PL));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__PL));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_235));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":214
+ * "SQ" : ( "SN", "LN", "AS", "M5" , "UR" , "SP" ),
+ * "RG" : ( "ID", "SM", "LB", "DS" , "PU" , "PI" , "CN" , "DT", "PL" ),
+ * "PG" : ( "PN", "ID", "VN", "CL" ), } # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ __pyx_k_tuple_236 = PyTuple_New(4); if (unlikely(!__pyx_k_tuple_236)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 214; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_k_tuple_236));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__PN));
+ PyTuple_SET_ITEM(__pyx_k_tuple_236, 0, ((PyObject *)__pyx_n_s__PN));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__PN));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__ID));
+ PyTuple_SET_ITEM(__pyx_k_tuple_236, 1, ((PyObject *)__pyx_n_s__ID));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__ID));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__VN));
+ PyTuple_SET_ITEM(__pyx_k_tuple_236, 2, ((PyObject *)__pyx_n_s__VN));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__VN));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__CL));
+ PyTuple_SET_ITEM(__pyx_k_tuple_236, 3, ((PyObject *)__pyx_n_s__CL));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__CL));
+ __Pyx_GIVEREF(((PyObject *)__pyx_k_tuple_236));
+ __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 = 2; __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 = 2; __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 = 2; __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 = 2; __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 = 2; __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 = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_13 = PyInt_FromLong(13); if (unlikely(!__pyx_int_13)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_16 = PyInt_FromLong(16); if (unlikely(!__pyx_int_16)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_32 = PyInt_FromLong(32); if (unlikely(!__pyx_int_32)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_40 = PyInt_FromLong(40); if (unlikely(!__pyx_int_40)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_60 = PyInt_FromLong(60); if (unlikely(!__pyx_int_60)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_64 = PyInt_FromLong(64); if (unlikely(!__pyx_int_64)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_128 = PyInt_FromLong(128); if (unlikely(!__pyx_int_128)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_255 = PyInt_FromLong(255); if (unlikely(!__pyx_int_255)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_256 = PyInt_FromLong(256); if (unlikely(!__pyx_int_256)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_512 = PyInt_FromLong(512); if (unlikely(!__pyx_int_512)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_neg_127 = PyInt_FromLong(-127); if (unlikely(!__pyx_int_neg_127)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_0660 = PyInt_FromLong(0660); if (unlikely(!__pyx_int_0660)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_1024 = PyInt_FromLong(1024); if (unlikely(!__pyx_int_1024)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_65535 = PyInt_FromLong(65535); if (unlikely(!__pyx_int_65535)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_neg_32767 = PyInt_FromLong(-32767); if (unlikely(!__pyx_int_neg_32767)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_536870912 = PyInt_FromLong(536870912); if (unlikely(!__pyx_int_536870912)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_4294967295 = PyInt_FromString((char *)"4294967295", 0, 0); if (unlikely(!__pyx_int_4294967295)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ __pyx_int_neg_2147483648 = PyInt_FromLong(-2147483648); if (unlikely(!__pyx_int_neg_2147483648)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ return 0;
+ __pyx_L1_error:;
+ return -1;
+}
+
+#if PY_MAJOR_VERSION < 3
+PyMODINIT_FUNC initcsamtools(void); /*proto*/
+PyMODINIT_FUNC initcsamtools(void)
+#else
+PyMODINIT_FUNC PyInit_csamtools(void); /*proto*/
+PyMODINIT_FUNC PyInit_csamtools(void)
+#endif
+{
+ PyObject *__pyx_t_1 = NULL;
+ PyObject *__pyx_t_2 = NULL;
+ PyObject *__pyx_t_3 = NULL;
+ #if CYTHON_REFNANNY
+ void* __pyx_refnanny = NULL;
+ __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");
+ }
+ __pyx_refnanny = __Pyx_RefNanny->SetupContext("PyMODINIT_FUNC PyInit_csamtools(void)", __LINE__, __FILE__);
+ #endif
+ __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __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 = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ #ifdef __pyx_binding_PyCFunctionType_USED
+ if (__pyx_binding_PyCFunctionType_init() < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __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("csamtools"), __pyx_methods, 0, 0, PYTHON_API_VERSION);
+ #else
+ __pyx_m = PyModule_Create(&__pyx_moduledef);
+ #endif
+ if (!__pyx_m) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ #if PY_MAJOR_VERSION < 3
+ Py_INCREF(__pyx_m);
+ #endif
+ __pyx_b = PyImport_AddModule(__Pyx_NAMESTR(__Pyx_BUILTIN_MODULE_NAME));
+ if (!__pyx_b) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ if (__Pyx_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ /*--- Initialize various global constants etc. ---*/
+ if (unlikely(__Pyx_InitGlobals() < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__pyx_module_is_main_csamtools) {
+ if (__Pyx_SetAttrString(__pyx_m, "__name__", __pyx_n_s____main__) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;};
+ }
+ /*--- Builtin init code ---*/
+ if (unlikely(__Pyx_InitCachedBuiltins() < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ /*--- Constants init code ---*/
+ if (unlikely(__Pyx_InitCachedConstants() < 0)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ /*--- Global init code ---*/
+ /*--- Function export code ---*/
+ /*--- Type init code ---*/
+ __pyx_ptype_9csamtools_file = __Pyx_ImportType(__Pyx_BUILTIN_MODULE_NAME, "file", sizeof(PyFileObject), 0); if (unlikely(!__pyx_ptype_9csamtools_file)) {__pyx_filename = __pyx_f[1]; __pyx_lineno = 61; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyType_Ready(&__pyx_type_9csamtools_AlignedRead) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1722; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ {
+ PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_9csamtools_AlignedRead, "__str__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1722; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) {
+ __pyx_wrapperbase_9csamtools_11AlignedRead_2__str__ = *((PyWrapperDescrObject *)wrapper)->d_base;
+ __pyx_wrapperbase_9csamtools_11AlignedRead_2__str__.doc = __pyx_doc_9csamtools_11AlignedRead_2__str__;
+ ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_9csamtools_11AlignedRead_2__str__;
+ }
+ }
+ if (__Pyx_SetAttrString(__pyx_m, "AlignedRead", (PyObject *)&__pyx_type_9csamtools_AlignedRead) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1722; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_AlignedRead = &__pyx_type_9csamtools_AlignedRead;
+ if (PyType_Ready(&__pyx_type_9csamtools_PileupProxy) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2391; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "PileupProxy", (PyObject *)&__pyx_type_9csamtools_PileupProxy) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2391; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_PileupProxy = &__pyx_type_9csamtools_PileupProxy;
+ if (PyType_Ready(&__pyx_type_9csamtools_PileupRead) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2444; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "PileupRead", (PyObject *)&__pyx_type_9csamtools_PileupRead) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2444; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_PileupRead = &__pyx_type_9csamtools_PileupRead;
+ __pyx_vtabptr_9csamtools_Fastafile = &__pyx_vtable_9csamtools_Fastafile;
+ __pyx_vtable_9csamtools_Fastafile._fetch = (char *(*)(struct __pyx_obj_9csamtools_Fastafile *, char *, int, int, int *))__pyx_f_9csamtools_9Fastafile__fetch;
+ if (PyType_Ready(&__pyx_type_9csamtools_Fastafile) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 222; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetVtable(__pyx_type_9csamtools_Fastafile.tp_dict, __pyx_vtabptr_9csamtools_Fastafile) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 222; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "Fastafile", (PyObject *)&__pyx_type_9csamtools_Fastafile) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 222; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_Fastafile = &__pyx_type_9csamtools_Fastafile;
+ __pyx_vtabptr_9csamtools_Samfile = &__pyx_vtable_9csamtools_Samfile;
+ __pyx_vtable_9csamtools_Samfile._buildHeader = (bam_header_t *(*)(struct __pyx_obj_9csamtools_Samfile *, PyObject *))__pyx_f_9csamtools_7Samfile__buildHeader;
+ __pyx_vtable_9csamtools_Samfile.getCurrent = (bam1_t *(*)(struct __pyx_obj_9csamtools_Samfile *))__pyx_f_9csamtools_7Samfile_getCurrent;
+ __pyx_vtable_9csamtools_Samfile.cnext = (int (*)(struct __pyx_obj_9csamtools_Samfile *))__pyx_f_9csamtools_7Samfile_cnext;
+ if (PyType_Ready(&__pyx_type_9csamtools_Samfile) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 393; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ {
+ PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_9csamtools_Samfile, "__next__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 393; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) {
+ __pyx_wrapperbase_9csamtools_7Samfile_20__next__ = *((PyWrapperDescrObject *)wrapper)->d_base;
+ __pyx_wrapperbase_9csamtools_7Samfile_20__next__.doc = __pyx_doc_9csamtools_7Samfile_20__next__;
+ ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_9csamtools_7Samfile_20__next__;
+ }
+ }
+ if (__Pyx_SetVtable(__pyx_type_9csamtools_Samfile.tp_dict, __pyx_vtabptr_9csamtools_Samfile) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 393; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "Samfile", (PyObject *)&__pyx_type_9csamtools_Samfile) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 393; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_Samfile = &__pyx_type_9csamtools_Samfile;
+ if (PyType_Ready(&__pyx_type_9csamtools_IteratorRow) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1125; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "IteratorRow", (PyObject *)&__pyx_type_9csamtools_IteratorRow) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1125; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IteratorRow = &__pyx_type_9csamtools_IteratorRow;
+ __pyx_vtabptr_9csamtools_IteratorRowRegion = &__pyx_vtable_9csamtools_IteratorRowRegion;
+ __pyx_vtable_9csamtools_IteratorRowRegion.getCurrent = (bam1_t *(*)(struct __pyx_obj_9csamtools_IteratorRowRegion *))__pyx_f_9csamtools_17IteratorRowRegion_getCurrent;
+ __pyx_vtable_9csamtools_IteratorRowRegion.cnext = (int (*)(struct __pyx_obj_9csamtools_IteratorRowRegion *))__pyx_f_9csamtools_17IteratorRowRegion_cnext;
+ __pyx_type_9csamtools_IteratorRowRegion.tp_base = __pyx_ptype_9csamtools_IteratorRow;
+ if (PyType_Ready(&__pyx_type_9csamtools_IteratorRowRegion) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1144; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ {
+ PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_9csamtools_IteratorRowRegion, "__next__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1144; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) {
+ __pyx_wrapperbase_9csamtools_17IteratorRowRegion_2__next__ = *((PyWrapperDescrObject *)wrapper)->d_base;
+ __pyx_wrapperbase_9csamtools_17IteratorRowRegion_2__next__.doc = __pyx_doc_9csamtools_17IteratorRowRegion_2__next__;
+ ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_9csamtools_17IteratorRowRegion_2__next__;
+ }
+ }
+ if (__Pyx_SetVtable(__pyx_type_9csamtools_IteratorRowRegion.tp_dict, __pyx_vtabptr_9csamtools_IteratorRowRegion) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1144; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "IteratorRowRegion", (PyObject *)&__pyx_type_9csamtools_IteratorRowRegion) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1144; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IteratorRowRegion = &__pyx_type_9csamtools_IteratorRowRegion;
+ __pyx_vtabptr_9csamtools_IteratorRowAll = &__pyx_vtable_9csamtools_IteratorRowAll;
+ __pyx_vtable_9csamtools_IteratorRowAll.getCurrent = (bam1_t *(*)(struct __pyx_obj_9csamtools_IteratorRowAll *))__pyx_f_9csamtools_14IteratorRowAll_getCurrent;
+ __pyx_vtable_9csamtools_IteratorRowAll.cnext = (int (*)(struct __pyx_obj_9csamtools_IteratorRowAll *))__pyx_f_9csamtools_14IteratorRowAll_cnext;
+ __pyx_type_9csamtools_IteratorRowAll.tp_base = __pyx_ptype_9csamtools_IteratorRow;
+ if (PyType_Ready(&__pyx_type_9csamtools_IteratorRowAll) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1224; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ {
+ PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_9csamtools_IteratorRowAll, "__next__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1224; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) {
+ __pyx_wrapperbase_9csamtools_14IteratorRowAll_2__next__ = *((PyWrapperDescrObject *)wrapper)->d_base;
+ __pyx_wrapperbase_9csamtools_14IteratorRowAll_2__next__.doc = __pyx_doc_9csamtools_14IteratorRowAll_2__next__;
+ ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_9csamtools_14IteratorRowAll_2__next__;
+ }
+ }
+ if (__Pyx_SetVtable(__pyx_type_9csamtools_IteratorRowAll.tp_dict, __pyx_vtabptr_9csamtools_IteratorRowAll) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1224; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "IteratorRowAll", (PyObject *)&__pyx_type_9csamtools_IteratorRowAll) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1224; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IteratorRowAll = &__pyx_type_9csamtools_IteratorRowAll;
+ __pyx_type_9csamtools_IteratorRowAllRefs.tp_base = __pyx_ptype_9csamtools_IteratorRow;
+ if (PyType_Ready(&__pyx_type_9csamtools_IteratorRowAllRefs) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1283; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ {
+ PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_9csamtools_IteratorRowAllRefs, "__next__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1283; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) {
+ __pyx_wrapperbase_9csamtools_18IteratorRowAllRefs_3__next__ = *((PyWrapperDescrObject *)wrapper)->d_base;
+ __pyx_wrapperbase_9csamtools_18IteratorRowAllRefs_3__next__.doc = __pyx_doc_9csamtools_18IteratorRowAllRefs_3__next__;
+ ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_9csamtools_18IteratorRowAllRefs_3__next__;
+ }
+ }
+ if (__Pyx_SetAttrString(__pyx_m, "IteratorRowAllRefs", (PyObject *)&__pyx_type_9csamtools_IteratorRowAllRefs) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1283; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IteratorRowAllRefs = &__pyx_type_9csamtools_IteratorRowAllRefs;
+ __pyx_vtabptr_9csamtools_IteratorColumn = &__pyx_vtable_9csamtools_IteratorColumn;
+ __pyx_vtable_9csamtools_IteratorColumn.cnext = (int (*)(struct __pyx_obj_9csamtools_IteratorColumn *))__pyx_f_9csamtools_14IteratorColumn_cnext;
+ __pyx_vtable_9csamtools_IteratorColumn.getSequence = (char *(*)(struct __pyx_obj_9csamtools_IteratorColumn *))__pyx_f_9csamtools_14IteratorColumn_getSequence;
+ __pyx_vtable_9csamtools_IteratorColumn.setMask = (PyObject *(*)(struct __pyx_obj_9csamtools_IteratorColumn *, PyObject *))__pyx_f_9csamtools_14IteratorColumn_setMask;
+ __pyx_vtable_9csamtools_IteratorColumn.setupIteratorData = (PyObject *(*)(struct __pyx_obj_9csamtools_IteratorColumn *, int, int, int, struct __pyx_opt_args_9csamtools_14IteratorColumn_setupIteratorData *__pyx_optional_args))__pyx_f_9csamtools_14IteratorColumn_setupIteratorData;
+ __pyx_vtable_9csamtools_IteratorColumn.reset = (PyObject *(*)(struct __pyx_obj_9csamtools_IteratorColumn *, PyObject *, PyObject *, PyObject *))__pyx_f_9csamtools_14IteratorColumn_reset;
+ if (PyType_Ready(&__pyx_type_9csamtools_IteratorColumn) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1397; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetVtable(__pyx_type_9csamtools_IteratorColumn.tp_dict, __pyx_vtabptr_9csamtools_IteratorColumn) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1397; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "IteratorColumn", (PyObject *)&__pyx_type_9csamtools_IteratorColumn) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1397; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IteratorColumn = &__pyx_type_9csamtools_IteratorColumn;
+ __pyx_vtabptr_9csamtools_IteratorColumnRegion = &__pyx_vtable_9csamtools_IteratorColumnRegion;
+ __pyx_vtable_9csamtools_IteratorColumnRegion.__pyx_base = *__pyx_vtabptr_9csamtools_IteratorColumn;
+ __pyx_type_9csamtools_IteratorColumnRegion.tp_base = __pyx_ptype_9csamtools_IteratorColumn;
+ if (PyType_Ready(&__pyx_type_9csamtools_IteratorColumnRegion) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1567; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ {
+ PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_9csamtools_IteratorColumnRegion, "__next__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1567; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) {
+ __pyx_wrapperbase_9csamtools_20IteratorColumnRegion_1__next__ = *((PyWrapperDescrObject *)wrapper)->d_base;
+ __pyx_wrapperbase_9csamtools_20IteratorColumnRegion_1__next__.doc = __pyx_doc_9csamtools_20IteratorColumnRegion_1__next__;
+ ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_9csamtools_20IteratorColumnRegion_1__next__;
+ }
+ }
+ if (__Pyx_SetVtable(__pyx_type_9csamtools_IteratorColumnRegion.tp_dict, __pyx_vtabptr_9csamtools_IteratorColumnRegion) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1567; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "IteratorColumnRegion", (PyObject *)&__pyx_type_9csamtools_IteratorColumnRegion) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1567; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IteratorColumnRegion = &__pyx_type_9csamtools_IteratorColumnRegion;
+ __pyx_vtabptr_9csamtools_IteratorColumnAllRefs = &__pyx_vtable_9csamtools_IteratorColumnAllRefs;
+ __pyx_vtable_9csamtools_IteratorColumnAllRefs.__pyx_base = *__pyx_vtabptr_9csamtools_IteratorColumn;
+ __pyx_type_9csamtools_IteratorColumnAllRefs.tp_base = __pyx_ptype_9csamtools_IteratorColumn;
+ if (PyType_Ready(&__pyx_type_9csamtools_IteratorColumnAllRefs) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ {
+ PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_9csamtools_IteratorColumnAllRefs, "__next__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) {
+ __pyx_wrapperbase_9csamtools_21IteratorColumnAllRefs_1__next__ = *((PyWrapperDescrObject *)wrapper)->d_base;
+ __pyx_wrapperbase_9csamtools_21IteratorColumnAllRefs_1__next__.doc = __pyx_doc_9csamtools_21IteratorColumnAllRefs_1__next__;
+ ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_9csamtools_21IteratorColumnAllRefs_1__next__;
+ }
+ }
+ if (__Pyx_SetVtable(__pyx_type_9csamtools_IteratorColumnAllRefs.tp_dict, __pyx_vtabptr_9csamtools_IteratorColumnAllRefs) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "IteratorColumnAllRefs", (PyObject *)&__pyx_type_9csamtools_IteratorColumnAllRefs) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 1596; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IteratorColumnAllRefs = &__pyx_type_9csamtools_IteratorColumnAllRefs;
+ if (PyType_Ready(&__pyx_type_9csamtools_SNPCall) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2605; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "SNPCall", (PyObject *)&__pyx_type_9csamtools_SNPCall) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2605; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_SNPCall = &__pyx_type_9csamtools_SNPCall;
+ __pyx_vtabptr_9csamtools_SNPCallerBase = &__pyx_vtable_9csamtools_SNPCallerBase;
+ __pyx_vtable_9csamtools_SNPCallerBase.__dump = (PyObject *(*)(struct __pyx_obj_9csamtools_SNPCallerBase *, glf1_t *, uint32_t, int))__pyx_f_9csamtools_13SNPCallerBase___dump;
+ if (PyType_Ready(&__pyx_type_9csamtools_SNPCallerBase) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2662; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetVtable(__pyx_type_9csamtools_SNPCallerBase.tp_dict, __pyx_vtabptr_9csamtools_SNPCallerBase) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2662; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "SNPCallerBase", (PyObject *)&__pyx_type_9csamtools_SNPCallerBase) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2662; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_SNPCallerBase = &__pyx_type_9csamtools_SNPCallerBase;
+ __pyx_vtabptr_9csamtools_IteratorSNPCalls = &__pyx_vtable_9csamtools_IteratorSNPCalls;
+ __pyx_vtable_9csamtools_IteratorSNPCalls.__pyx_base = *__pyx_vtabptr_9csamtools_SNPCallerBase;
+ __pyx_type_9csamtools_IteratorSNPCalls.tp_base = __pyx_ptype_9csamtools_SNPCallerBase;
+ if (PyType_Ready(&__pyx_type_9csamtools_IteratorSNPCalls) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2735; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ {
+ PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_9csamtools_IteratorSNPCalls, "__next__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2735; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) {
+ __pyx_wrapperbase_9csamtools_16IteratorSNPCalls_2__next__ = *((PyWrapperDescrObject *)wrapper)->d_base;
+ __pyx_wrapperbase_9csamtools_16IteratorSNPCalls_2__next__.doc = __pyx_doc_9csamtools_16IteratorSNPCalls_2__next__;
+ ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_9csamtools_16IteratorSNPCalls_2__next__;
+ }
+ }
+ if (__Pyx_SetVtable(__pyx_type_9csamtools_IteratorSNPCalls.tp_dict, __pyx_vtabptr_9csamtools_IteratorSNPCalls) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2735; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "IteratorSNPCalls", (PyObject *)&__pyx_type_9csamtools_IteratorSNPCalls) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2735; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IteratorSNPCalls = &__pyx_type_9csamtools_IteratorSNPCalls;
+ __pyx_vtabptr_9csamtools_SNPCaller = &__pyx_vtable_9csamtools_SNPCaller;
+ __pyx_vtable_9csamtools_SNPCaller.__pyx_base = *__pyx_vtabptr_9csamtools_SNPCallerBase;
+ __pyx_type_9csamtools_SNPCaller.tp_base = __pyx_ptype_9csamtools_SNPCallerBase;
+ if (PyType_Ready(&__pyx_type_9csamtools_SNPCaller) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2810; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetVtable(__pyx_type_9csamtools_SNPCaller.tp_dict, __pyx_vtabptr_9csamtools_SNPCaller) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2810; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "SNPCaller", (PyObject *)&__pyx_type_9csamtools_SNPCaller) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2810; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_SNPCaller = &__pyx_type_9csamtools_SNPCaller;
+ if (PyType_Ready(&__pyx_type_9csamtools_IndelCall) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2892; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "IndelCall", (PyObject *)&__pyx_type_9csamtools_IndelCall) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2892; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IndelCall = &__pyx_type_9csamtools_IndelCall;
+ if (PyType_Ready(&__pyx_type_9csamtools_IndelCallerBase) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2981; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "IndelCallerBase", (PyObject *)&__pyx_type_9csamtools_IndelCallerBase) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2981; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IndelCallerBase = &__pyx_type_9csamtools_IndelCallerBase;
+ __pyx_type_9csamtools_IndelCaller.tp_base = __pyx_ptype_9csamtools_IndelCallerBase;
+ if (PyType_Ready(&__pyx_type_9csamtools_IndelCaller) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3076; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (__Pyx_SetAttrString(__pyx_m, "IndelCaller", (PyObject *)&__pyx_type_9csamtools_IndelCaller) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3076; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IndelCaller = &__pyx_type_9csamtools_IndelCaller;
+ __pyx_type_9csamtools_IteratorIndelCalls.tp_base = __pyx_ptype_9csamtools_IndelCallerBase;
+ if (PyType_Ready(&__pyx_type_9csamtools_IteratorIndelCalls) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3119; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ {
+ PyObject *wrapper = __Pyx_GetAttrString((PyObject *)&__pyx_type_9csamtools_IteratorIndelCalls, "__next__"); if (unlikely(!wrapper)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3119; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (Py_TYPE(wrapper) == &PyWrapperDescr_Type) {
+ __pyx_wrapperbase_9csamtools_18IteratorIndelCalls_2__next__ = *((PyWrapperDescrObject *)wrapper)->d_base;
+ __pyx_wrapperbase_9csamtools_18IteratorIndelCalls_2__next__.doc = __pyx_doc_9csamtools_18IteratorIndelCalls_2__next__;
+ ((PyWrapperDescrObject *)wrapper)->d_base = &__pyx_wrapperbase_9csamtools_18IteratorIndelCalls_2__next__;
+ }
+ }
+ if (__Pyx_SetAttrString(__pyx_m, "IteratorIndelCalls", (PyObject *)&__pyx_type_9csamtools_IteratorIndelCalls) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3119; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_9csamtools_IteratorIndelCalls = &__pyx_type_9csamtools_IteratorIndelCalls;
+ /*--- Type import code ---*/
+ __pyx_ptype_7cpython_4bool_bool = __Pyx_ImportType(__Pyx_BUILTIN_MODULE_NAME, "bool", sizeof(PyBoolObject), 0); if (unlikely(!__pyx_ptype_7cpython_4bool_bool)) {__pyx_filename = __pyx_f[2]; __pyx_lineno = 8; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_ptype_7cpython_7complex_complex = __Pyx_ImportType(__Pyx_BUILTIN_MODULE_NAME, "complex", sizeof(PyComplexObject), 0); if (unlikely(!__pyx_ptype_7cpython_7complex_complex)) {__pyx_filename = __pyx_f[3]; __pyx_lineno = 15; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ /*--- Function import code ---*/
+ /*--- Execution code ---*/
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":4
+ * # cython: profile=True
+ * # adds doc-strings for sphinx
+ * import tempfile, os, sys, types, struct, ctypes, collections, re # <<<<<<<<<<<<<<
+ *
+ * from cpython cimport PyString_FromStringAndSize, PyString_AS_STRING
+ */
+ __pyx_t_1 = __Pyx_Import(((PyObject *)__pyx_n_s__tempfile), 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__tempfile, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = __Pyx_Import(((PyObject *)__pyx_n_s__os), 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__os, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = __Pyx_Import(((PyObject *)__pyx_n_s__sys), 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__sys, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = __Pyx_Import(((PyObject *)__pyx_n_s__types), 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__types, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = __Pyx_Import(((PyObject *)__pyx_n_s__struct), 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__struct, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = __Pyx_Import(((PyObject *)__pyx_n_s__ctypes), 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__ctypes, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = __Pyx_Import(((PyObject *)__pyx_n_s__collections), 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__collections, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+ __pyx_t_1 = __Pyx_Import(((PyObject *)__pyx_n_s__re), 0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__re, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 4; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":52
+ * #####################################################################
+ * # hard-coded constants
+ * cdef char * bam_nt16_rev_table = "=ACMGRSVTWYHKDBN" # <<<<<<<<<<<<<<
+ * cdef int max_pos = 2 << 29
+ *
+ */
+ __pyx_v_9csamtools_bam_nt16_rev_table = __pyx_k_227;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":53
+ * # hard-coded constants
+ * cdef char * bam_nt16_rev_table = "=ACMGRSVTWYHKDBN"
+ * cdef int max_pos = 2 << 29 # <<<<<<<<<<<<<<
+ *
+ * # redirect stderr to 0
+ */
+ __pyx_v_9csamtools_max_pos = 1073741824;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":56
+ *
+ * # redirect stderr to 0
+ * _logfile = open("/dev/null", "w") # <<<<<<<<<<<<<<
+ * pysam_set_stderr( PyFile_AsFile( _logfile ) )
+ *
+ */
+ __pyx_t_1 = PyObject_Call(__pyx_builtin_open, ((PyObject *)__pyx_k_tuple_229), NULL); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 56; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s___logfile, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 56; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":57
+ * # redirect stderr to 0
+ * _logfile = open("/dev/null", "w")
+ * pysam_set_stderr( PyFile_AsFile( _logfile ) ) # <<<<<<<<<<<<<<
+ *
+ * #####################################################################
+ */
+ __pyx_t_1 = __Pyx_GetName(__pyx_m, __pyx_n_s___logfile); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 57; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ pysam_set_stderr(PyFile_AsFile(__pyx_t_1));
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":106
+ * (<object>f)(a)
+ *
+ * class PileupColumn(object): # <<<<<<<<<<<<<<
+ * '''A pileup column. A pileup column contains
+ * all the reads that map to a certain target base.
+ */
+ __pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 106; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":119
+ * list of reads (:class:`pysam.PileupRead`) aligned to this column
+ * '''
+ * def __str__(self): # <<<<<<<<<<<<<<
+ * return "\t".join( map(str, (self.tid, self.pos, self.n))) +\
+ * "\n" + "\n".join( map(str, self.pileups) )
+ */
+ __pyx_t_2 = __pyx_binding_PyCFunctionType_NewEx(&__pyx_mdef_9csamtools_12PileupColumn_0__str__, NULL, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 119; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_2);
+ if (PyObject_SetItem(__pyx_t_1, __pyx_n_s____str__, __pyx_t_2) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 119; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":106
+ * (<object>f)(a)
+ *
+ * class PileupColumn(object): # <<<<<<<<<<<<<<
+ * '''A pileup column. A pileup column contains
+ * all the reads that map to a certain target base.
+ */
+ __pyx_t_2 = PyTuple_New(1); if (unlikely(!__pyx_t_2)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 106; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_2));
+ __Pyx_INCREF(__pyx_builtin_object);
+ PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_builtin_object);
+ __Pyx_GIVEREF(__pyx_builtin_object);
+ if (PyDict_SetItemString(((PyObject *)__pyx_t_1), "__doc__", ((PyObject *)__pyx_kp_s_230)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 106; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_3 = __Pyx_CreateClass(((PyObject *)__pyx_t_2), ((PyObject *)__pyx_t_1), __pyx_n_s__PileupColumn, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 106; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ __Pyx_DECREF(((PyObject *)__pyx_t_2)); __pyx_t_2 = 0;
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__PileupColumn, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 106; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":163
+ * return 0
+ *
+ * class StderrStore(): # <<<<<<<<<<<<<<
+ * '''
+ * stderr is captured.
+ */
+ __pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 163; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":167
+ * stderr is captured.
+ * '''
+ * def __init__(self): # <<<<<<<<<<<<<<
+ * return
+ * self.stderr_h, self.stderr_f = tempfile.mkstemp()
+ */
+ __pyx_t_3 = __pyx_binding_PyCFunctionType_NewEx(&__pyx_mdef_9csamtools_11StderrStore_0__init__, NULL, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 167; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (PyObject_SetItem(__pyx_t_1, __pyx_n_s____init__, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 167; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":173
+ * self.stderr_save.setfd( self.stderr_h )
+ *
+ * def readAndRelease( self ): # <<<<<<<<<<<<<<
+ * return []
+ * self.stderr_save.restore()
+ */
+ __pyx_t_3 = __pyx_binding_PyCFunctionType_NewEx(&__pyx_mdef_9csamtools_11StderrStore_1readAndRelease, NULL, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 173; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (PyObject_SetItem(__pyx_t_1, __pyx_n_s__readAndRelease, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 173; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":182
+ * return lines
+ *
+ * def release(self): # <<<<<<<<<<<<<<
+ * return
+ * self.stderr_save.restore()
+ */
+ __pyx_t_3 = __pyx_binding_PyCFunctionType_NewEx(&__pyx_mdef_9csamtools_11StderrStore_2release, NULL, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 182; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (PyObject_SetItem(__pyx_t_1, __pyx_n_s__release, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 182; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":188
+ * os.remove( self.stderr_f )
+ *
+ * def __del__(self): # <<<<<<<<<<<<<<
+ * self.release()
+ *
+ */
+ __pyx_t_3 = __pyx_binding_PyCFunctionType_NewEx(&__pyx_mdef_9csamtools_11StderrStore_3__del__, NULL, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 188; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (PyObject_SetItem(__pyx_t_1, __pyx_n_s____del__, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 188; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":163
+ * return 0
+ *
+ * class StderrStore(): # <<<<<<<<<<<<<<
+ * '''
+ * stderr is captured.
+ */
+ if (PyDict_SetItemString(((PyObject *)__pyx_t_1), "__doc__", ((PyObject *)__pyx_kp_s_231)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 163; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_3 = __Pyx_CreateClass(((PyObject *)__pyx_empty_tuple), ((PyObject *)__pyx_t_1), __pyx_n_s__StderrStore, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 163; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__StderrStore, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 163; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":195
+ * ######################################################################
+ * # valid types for sam headers
+ * VALID_HEADER_TYPES = { "HD" : dict, # <<<<<<<<<<<<<<
+ * "SQ" : list,
+ * "RG" : list,
+ */
+ __pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__HD), ((PyObject *)((PyObject*)(&PyDict_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":196
+ * # valid types for sam headers
+ * VALID_HEADER_TYPES = { "HD" : dict,
+ * "SQ" : list, # <<<<<<<<<<<<<<
+ * "RG" : list,
+ * "PG" : list,
+ */
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__SQ), ((PyObject *)((PyObject*)(&PyList_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":197
+ * VALID_HEADER_TYPES = { "HD" : dict,
+ * "SQ" : list,
+ * "RG" : list, # <<<<<<<<<<<<<<
+ * "PG" : list,
+ * "CO" : list }
+ */
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__RG), ((PyObject *)((PyObject*)(&PyList_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":198
+ * "SQ" : list,
+ * "RG" : list,
+ * "PG" : list, # <<<<<<<<<<<<<<
+ * "CO" : list }
+ *
+ */
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__PG), ((PyObject *)((PyObject*)(&PyList_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":199
+ * "RG" : list,
+ * "PG" : list,
+ * "CO" : list } # <<<<<<<<<<<<<<
+ *
+ * # order of records within sam headers
+ */
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__CO), ((PyObject *)((PyObject*)(&PyList_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__VALID_HEADER_TYPES, ((PyObject *)__pyx_t_1)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 195; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":202
+ *
+ * # order of records within sam headers
+ * VALID_HEADERS = ("HD", "SQ", "RG", "PG", "CO" ) # <<<<<<<<<<<<<<
+ *
+ * # type conversions within sam header records
+ */
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__VALID_HEADERS, ((PyObject *)__pyx_k_tuple_232)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 202; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":205
+ *
+ * # type conversions within sam header records
+ * VALID_HEADER_FIELDS = { "HD" : { "VN" : str, "SO" : str, "GO" : str }, # <<<<<<<<<<<<<<
+ * "SQ" : { "SN" : str, "LN" : int, "AS" : str, "M5" : str, "UR" : str, "SP" : str },
+ * "RG" : { "ID" : str, "SM" : str, "LB" : str, "DS" : str, "PU" : str, "PI" : str, "CN" : str, "DT" : str, "PL" : str, },
+ */
+ __pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __pyx_t_3 = PyDict_New(); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__VN), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__SO), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__GO), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__HD), ((PyObject *)__pyx_t_3)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":206
+ * # type conversions within sam header records
+ * VALID_HEADER_FIELDS = { "HD" : { "VN" : str, "SO" : str, "GO" : str },
+ * "SQ" : { "SN" : str, "LN" : int, "AS" : str, "M5" : str, "UR" : str, "SP" : str }, # <<<<<<<<<<<<<<
+ * "RG" : { "ID" : str, "SM" : str, "LB" : str, "DS" : str, "PU" : str, "PI" : str, "CN" : str, "DT" : str, "PL" : str, },
+ * "PG" : { "PN" : str, "ID" : str, "VN" : str, "CL" : str }, }
+ */
+ __pyx_t_3 = PyDict_New(); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__SN), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__LN), ((PyObject *)((PyObject*)(&PyInt_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__AS), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__M5), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__UR), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__SP), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 206; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__SQ), ((PyObject *)__pyx_t_3)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":207
+ * VALID_HEADER_FIELDS = { "HD" : { "VN" : str, "SO" : str, "GO" : str },
+ * "SQ" : { "SN" : str, "LN" : int, "AS" : str, "M5" : str, "UR" : str, "SP" : str },
+ * "RG" : { "ID" : str, "SM" : str, "LB" : str, "DS" : str, "PU" : str, "PI" : str, "CN" : str, "DT" : str, "PL" : str, }, # <<<<<<<<<<<<<<
+ * "PG" : { "PN" : str, "ID" : str, "VN" : str, "CL" : str }, }
+ *
+ */
+ __pyx_t_3 = PyDict_New(); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__ID), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__SM), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__LB), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__DS), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__PU), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__PI), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__CN), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__DT), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__PL), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 207; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__RG), ((PyObject *)__pyx_t_3)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":208
+ * "SQ" : { "SN" : str, "LN" : int, "AS" : str, "M5" : str, "UR" : str, "SP" : str },
+ * "RG" : { "ID" : str, "SM" : str, "LB" : str, "DS" : str, "PU" : str, "PI" : str, "CN" : str, "DT" : str, "PL" : str, },
+ * "PG" : { "PN" : str, "ID" : str, "VN" : str, "CL" : str }, } # <<<<<<<<<<<<<<
+ *
+ * # output order of fields within records
+ */
+ __pyx_t_3 = PyDict_New(); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_3));
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__PN), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__ID), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__VN), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_3, ((PyObject *)__pyx_n_s__CL), ((PyObject *)((PyObject*)(&PyString_Type)))) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 208; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__PG), ((PyObject *)__pyx_t_3)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_3)); __pyx_t_3 = 0;
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__VALID_HEADER_FIELDS, ((PyObject *)__pyx_t_1)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 205; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":211
+ *
+ * # output order of fields within records
+ * VALID_HEADER_ORDER = { "HD" : ( "VN", "SO", "GO" ), # <<<<<<<<<<<<<<
+ * "SQ" : ( "SN", "LN", "AS", "M5" , "UR" , "SP" ),
+ * "RG" : ( "ID", "SM", "LB", "DS" , "PU" , "PI" , "CN" , "DT", "PL" ),
+ */
+ __pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 211; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__HD), ((PyObject *)__pyx_k_tuple_233)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 211; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":212
+ * # output order of fields within records
+ * VALID_HEADER_ORDER = { "HD" : ( "VN", "SO", "GO" ),
+ * "SQ" : ( "SN", "LN", "AS", "M5" , "UR" , "SP" ), # <<<<<<<<<<<<<<
+ * "RG" : ( "ID", "SM", "LB", "DS" , "PU" , "PI" , "CN" , "DT", "PL" ),
+ * "PG" : ( "PN", "ID", "VN", "CL" ), }
+ */
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__SQ), ((PyObject *)__pyx_k_tuple_234)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 211; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":213
+ * VALID_HEADER_ORDER = { "HD" : ( "VN", "SO", "GO" ),
+ * "SQ" : ( "SN", "LN", "AS", "M5" , "UR" , "SP" ),
+ * "RG" : ( "ID", "SM", "LB", "DS" , "PU" , "PI" , "CN" , "DT", "PL" ), # <<<<<<<<<<<<<<
+ * "PG" : ( "PN", "ID", "VN", "CL" ), }
+ *
+ */
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__RG), ((PyObject *)__pyx_k_tuple_235)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 211; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":214
+ * "SQ" : ( "SN", "LN", "AS", "M5" , "UR" , "SP" ),
+ * "RG" : ( "ID", "SM", "LB", "DS" , "PU" , "PI" , "CN" , "DT", "PL" ),
+ * "PG" : ( "PN", "ID", "VN", "CL" ), } # <<<<<<<<<<<<<<
+ *
+ *
+ */
+ if (PyDict_SetItem(__pyx_t_1, ((PyObject *)__pyx_n_s__PG), ((PyObject *)__pyx_k_tuple_236)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 211; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__VALID_HEADER_ORDER, ((PyObject *)__pyx_t_1)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 211; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":672
+ * region = None,
+ * callback = None,
+ * until_eof = False ): # <<<<<<<<<<<<<<
+ * '''
+ * fetch aligned reads in a :term:`region` using 0-based indexing. The region is specified by
+ */
+ __pyx_t_1 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 672; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_k_41 = __pyx_t_1;
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":781
+ * end = None,
+ * region = None,
+ * until_eof = False ): # <<<<<<<<<<<<<<
+ * '''*(reference = None, start = None, end = None, region = None, callback = None, until_eof = False)*
+ *
+ */
+ __pyx_t_1 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 781; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_k_61 = __pyx_t_1;
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":1573
+ * int tid = 0,
+ * int start = 0,
+ * int end = max_pos, # <<<<<<<<<<<<<<
+ * **kwargs ):
+ *
+ */
+ __pyx_k_104 = __pyx_v_9csamtools_max_pos;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2489
+ * return self._level
+ *
+ * class Outs: # <<<<<<<<<<<<<<
+ * '''http://mail.python.org/pipermail/python-list/2000-June/038406.html'''
+ * def __init__(self, id = 1):
+ */
+ __pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2489; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2491
+ * class Outs:
+ * '''http://mail.python.org/pipermail/python-list/2000-June/038406.html'''
+ * def __init__(self, id = 1): # <<<<<<<<<<<<<<
+ * self.streams = []
+ * self.id = id
+ */
+ __pyx_t_3 = __pyx_binding_PyCFunctionType_NewEx(&__pyx_mdef_9csamtools_4Outs_0__init__, NULL, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2491; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (PyObject_SetItem(__pyx_t_1, __pyx_n_s____init__, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2491; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2495
+ * self.id = id
+ *
+ * def setdevice(self, filename): # <<<<<<<<<<<<<<
+ * '''open an existing file, like "/dev/null"'''
+ * fd = os.open(filename, os.O_WRONLY)
+ */
+ __pyx_t_3 = __pyx_binding_PyCFunctionType_NewEx(&__pyx_mdef_9csamtools_4Outs_1setdevice, NULL, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2495; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (PyObject_SetItem(__pyx_t_1, __pyx_n_s__setdevice, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2495; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2500
+ * self.setfd(fd)
+ *
+ * def setfile(self, filename): # <<<<<<<<<<<<<<
+ * '''open a new file.'''
+ * fd = os.open(filename, os.O_WRONLY|os.O_CREAT, 0660);
+ */
+ __pyx_t_3 = __pyx_binding_PyCFunctionType_NewEx(&__pyx_mdef_9csamtools_4Outs_2setfile, NULL, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (PyObject_SetItem(__pyx_t_1, __pyx_n_s__setfile, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2500; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2505
+ * self.setfd(fd)
+ *
+ * def setfd(self, fd): # <<<<<<<<<<<<<<
+ * ofd = os.dup(self.id) # Save old stream on new unit.
+ * self.streams.append(ofd)
+ */
+ __pyx_t_3 = __pyx_binding_PyCFunctionType_NewEx(&__pyx_mdef_9csamtools_4Outs_3setfd, NULL, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (PyObject_SetItem(__pyx_t_1, __pyx_n_s__setfd, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2505; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2512
+ * os.close(fd) # Close other unit (look out, caller.)
+ *
+ * def restore(self): # <<<<<<<<<<<<<<
+ * '''restore previous output stream'''
+ * if self.streams:
+ */
+ __pyx_t_3 = __pyx_binding_PyCFunctionType_NewEx(&__pyx_mdef_9csamtools_4Outs_4restore, NULL, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2512; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (PyObject_SetItem(__pyx_t_1, __pyx_n_s__restore, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2512; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2489
+ * return self._level
+ *
+ * class Outs: # <<<<<<<<<<<<<<
+ * '''http://mail.python.org/pipermail/python-list/2000-June/038406.html'''
+ * def __init__(self, id = 1):
+ */
+ if (PyDict_SetItemString(((PyObject *)__pyx_t_1), "__doc__", ((PyObject *)__pyx_kp_s_237)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2489; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __pyx_t_3 = __Pyx_CreateClass(((PyObject *)__pyx_empty_tuple), ((PyObject *)__pyx_t_1), __pyx_n_s__Outs, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_3)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2489; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_3);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s__Outs, __pyx_t_3) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2489; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0;
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2525
+ * def _samtools_dispatch( method,
+ * args = (),
+ * catch_stdout = True, # <<<<<<<<<<<<<<
+ * catch_stderr = False,
+ * ):
+ */
+ __pyx_t_1 = __Pyx_PyBool_FromLong(1); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2525; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_k_149 = __pyx_t_1;
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2526
+ * args = (),
+ * catch_stdout = True,
+ * catch_stderr = False, # <<<<<<<<<<<<<<
+ * ):
+ * '''call ``method`` in samtools providing arguments in args.
+ */
+ __pyx_t_1 = __Pyx_PyBool_FromLong(0); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2526; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ __pyx_k_150 = __pyx_t_1;
+ __Pyx_GIVEREF(__pyx_t_1);
+ __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2523
+ * del self.streams[-1]
+ *
+ * def _samtools_dispatch( method, # <<<<<<<<<<<<<<
+ * args = (),
+ * catch_stdout = True,
+ */
+ __pyx_t_1 = PyCFunction_NewEx(&__pyx_mdef_9csamtools_0_samtools_dispatch, NULL, __pyx_n_s__csamtools); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2523; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(__pyx_t_1);
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s___samtools_dispatch, __pyx_t_1) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2523; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":3157
+ * return self._call()
+ *
+ * __all__ = ["Samfile", # <<<<<<<<<<<<<<
+ * "Fastafile",
+ * "IteratorRow",
+ */
+ __pyx_t_1 = PyList_New(12); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3157; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__Samfile));
+ PyList_SET_ITEM(__pyx_t_1, 0, ((PyObject *)__pyx_n_s__Samfile));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__Samfile));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__Fastafile));
+ PyList_SET_ITEM(__pyx_t_1, 1, ((PyObject *)__pyx_n_s__Fastafile));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__Fastafile));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__IteratorRow));
+ PyList_SET_ITEM(__pyx_t_1, 2, ((PyObject *)__pyx_n_s__IteratorRow));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__IteratorRow));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__IteratorColumn));
+ PyList_SET_ITEM(__pyx_t_1, 3, ((PyObject *)__pyx_n_s__IteratorColumn));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__IteratorColumn));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__AlignedRead));
+ PyList_SET_ITEM(__pyx_t_1, 4, ((PyObject *)__pyx_n_s__AlignedRead));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__AlignedRead));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__PileupColumn));
+ PyList_SET_ITEM(__pyx_t_1, 5, ((PyObject *)__pyx_n_s__PileupColumn));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__PileupColumn));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__PileupProxy));
+ PyList_SET_ITEM(__pyx_t_1, 6, ((PyObject *)__pyx_n_s__PileupProxy));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__PileupProxy));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__PileupRead));
+ PyList_SET_ITEM(__pyx_t_1, 7, ((PyObject *)__pyx_n_s__PileupRead));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__PileupRead));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__IteratorSNPCalls));
+ PyList_SET_ITEM(__pyx_t_1, 8, ((PyObject *)__pyx_n_s__IteratorSNPCalls));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__IteratorSNPCalls));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__SNPCaller));
+ PyList_SET_ITEM(__pyx_t_1, 9, ((PyObject *)__pyx_n_s__SNPCaller));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__SNPCaller));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__IndelCaller));
+ PyList_SET_ITEM(__pyx_t_1, 10, ((PyObject *)__pyx_n_s__IndelCaller));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__IndelCaller));
+ __Pyx_INCREF(((PyObject *)__pyx_n_s__IteratorIndelCalls));
+ PyList_SET_ITEM(__pyx_t_1, 11, ((PyObject *)__pyx_n_s__IteratorIndelCalls));
+ __Pyx_GIVEREF(((PyObject *)__pyx_n_s__IteratorIndelCalls));
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s____all__, ((PyObject *)__pyx_t_1)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 3157; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+
+ /* "/home/andreas/pysam/pysam/pysam/csamtools.pyx":2
+ * # cython: embedsignature=True
+ * # cython: profile=True # <<<<<<<<<<<<<<
+ * # adds doc-strings for sphinx
+ * import tempfile, os, sys, types, struct, ctypes, collections, re
+ */
+ __pyx_t_1 = PyDict_New(); if (unlikely(!__pyx_t_1)) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_GOTREF(((PyObject *)__pyx_t_1));
+ if (PyObject_SetAttr(__pyx_m, __pyx_n_s____test__, ((PyObject *)__pyx_t_1)) < 0) {__pyx_filename = __pyx_f[0]; __pyx_lineno = 2; __pyx_clineno = __LINE__; goto __pyx_L1_error;}
+ __Pyx_DECREF(((PyObject *)__pyx_t_1)); __pyx_t_1 = 0;
+
+ /* "/usr/lib64/python2.7/site-packages/Cython/Includes/cpython/iterator.pxd":1
+ * cdef extern from "Python.h": # <<<<<<<<<<<<<<
+ *
+ * ############################################################################
+ */
+ goto __pyx_L0;
+ __pyx_L1_error:;
+ __Pyx_XDECREF(__pyx_t_1);
+ __Pyx_XDECREF(__pyx_t_2);
+ __Pyx_XDECREF(__pyx_t_3);
+ if (__pyx_m) {
+ __Pyx_AddTraceback("init csamtools");
+ Py_DECREF(__pyx_m); __pyx_m = 0;
+ } else if (!PyErr_Occurred()) {
+ PyErr_SetString(PyExc_ImportError, "init csamtools");
+ }
+ __pyx_L0:;
+ __Pyx_RefNannyFinishContext();
+ #if PY_MAJOR_VERSION < 3
+ return;
+ #else
+ return __pyx_m;
+ #endif
+}
+
+/* Runtime support code */
+
+static PyObject *__Pyx_GetName(PyObject *dict, PyObject *name) {
+ PyObject *result;
+ result = PyObject_GetAttr(dict, name);
+ if (!result)
+ PyErr_SetObject(PyExc_NameError, name);
+ return result;
+}
+
+
+#if CYTHON_PROFILE
+
+static int __Pyx_TraceSetupAndCall(PyCodeObject** code,
+ PyFrameObject** frame,
+ const char *funcname,
+ const char *srcfile,
+ int firstlineno) {
+ if (*frame == NULL || !CYTHON_PROFILE_REUSE_FRAME) {
+ if (*code == NULL) {
+ *code = __Pyx_createFrameCodeObject(funcname, srcfile, firstlineno);
+ if (*code == NULL) return 0;
+ }
+ *frame = PyFrame_New(
+ PyThreadState_GET(), /*PyThreadState *tstate*/
+ *code, /*PyCodeObject *code*/
+ PyModule_GetDict(__pyx_m), /*PyObject *globals*/
+ 0 /*PyObject *locals*/
+ );
+ if (*frame == NULL) return 0;
+ }
+ else {
+ (*frame)->f_tstate = PyThreadState_GET();
+ }
+ return PyThreadState_GET()->c_profilefunc(PyThreadState_GET()->c_profileobj, *frame, PyTrace_CALL, NULL) == 0;
+}
+
+static PyCodeObject *__Pyx_createFrameCodeObject(const char *funcname, const char *srcfile, int firstlineno) {
+ PyObject *py_srcfile = 0;
+ PyObject *py_funcname = 0;
+ PyCodeObject *py_code = 0;
+
+ #if PY_MAJOR_VERSION < 3
+ py_funcname = PyString_FromString(funcname);
+ py_srcfile = PyString_FromString(srcfile);
+ #else
+ py_funcname = PyUnicode_FromString(funcname);
+ py_srcfile = PyUnicode_FromString(srcfile);
+ #endif
+ if (!py_funcname | !py_srcfile) goto bad;
+
+ py_code = PyCode_New(
+ 0, /*int argcount,*/
+ #if PY_MAJOR_VERSION >= 3
+ 0, /*int kwonlyargcount,*/
+ #endif
+ 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,*/
+ firstlineno, /*int firstlineno,*/
+ __pyx_empty_bytes /*PyObject *lnotab*/
+ );
+
+bad:
+ Py_XDECREF(py_srcfile);
+ Py_XDECREF(py_funcname);
+
+ return py_code;
+}
+
+#endif /* CYTHON_PROFILE */
+
+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_RaiseNeedMoreValuesError(Py_ssize_t index) {
+ PyErr_Format(PyExc_ValueError,
+ #if PY_VERSION_HEX < 0x02050000
+ "need more than %d value%s to unpack", (int)index,
+ #else
+ "need more than %zd value%s to unpack", index,
+ #endif
+ (index == 1) ? "" : "s");
+}
+
+static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) {
+ PyErr_Format(PyExc_ValueError,
+ #if PY_VERSION_HEX < 0x02050000
+ "too many values to unpack (expected %d)", (int)expected);
+ #else
+ "too many values to unpack (expected %zd)", expected);
+ #endif
+}
+
+static PyObject *__Pyx_UnpackItem(PyObject *iter, Py_ssize_t index) {
+ PyObject *item;
+ if (!(item = PyIter_Next(iter))) {
+ if (!PyErr_Occurred()) {
+ __Pyx_RaiseNeedMoreValuesError(index);
+ }
+ }
+ return item;
+}
+
+static int __Pyx_EndUnpack(PyObject *iter, Py_ssize_t expected) {
+ PyObject *item;
+ if ((item = PyIter_Next(iter))) {
+ Py_DECREF(item);
+ __Pyx_RaiseTooManyValuesError(expected);
+ return -1;
+ }
+ else if (!PyErr_Occurred())
+ return 0;
+ else
+ return -1;
+}
+
+static CYTHON_INLINE int __Pyx_CheckKeywordStrings(
+ PyObject *kwdict,
+ const char* function_name,
+ int kw_allowed)
+{
+ PyObject* key = 0;
+ Py_ssize_t pos = 0;
+ while (PyDict_Next(kwdict, &pos, &key, 0)) {
+ #if PY_MAJOR_VERSION < 3
+ if (unlikely(!PyString_CheckExact(key)) && unlikely(!PyString_Check(key)))
+ #else
+ if (unlikely(!PyUnicode_CheckExact(key)) && unlikely(!PyUnicode_Check(key)))
+ #endif
+ goto invalid_keyword_type;
+ }
+ if ((!kw_allowed) && unlikely(key))
+ goto invalid_keyword;
+ return 1;
+invalid_keyword_type:
+ PyErr_Format(PyExc_TypeError,
+ "%s() keywords must be strings", function_name);
+ return 0;
+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
+ return 0;
+}
+
+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_AS_STRING(kw_name));
+ #endif
+}
+
+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 *number, *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";
+ }
+ number = (num_expected == 1) ? "" : "s";
+ PyErr_Format(PyExc_TypeError,
+ #if PY_VERSION_HEX < 0x02050000
+ "%s() takes %s %d positional argument%s (%d given)",
+ #else
+ "%s() takes %s %zd positional argument%s (%zd given)",
+ #endif
+ func_name, more_or_less, num_expected, number, num_found);
+}
+
+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;
+ } else {
+ #if PY_MAJOR_VERSION < 3
+ if (unlikely(!PyString_CheckExact(key)) && unlikely(!PyString_Check(key))) {
+ #else
+ if (unlikely(!PyUnicode_CheckExact(key)) && unlikely(!PyUnicode_Check(key))) {
+ #endif
+ goto invalid_keyword_type;
+ } else {
+ for (name = first_kw_arg; *name; name++) {
+ #if PY_MAJOR_VERSION >= 3
+ if (PyUnicode_GET_SIZE(**name) == PyUnicode_GET_SIZE(key) &&
+ PyUnicode_Compare(**name, key) == 0) break;
+ #else
+ if (PyString_GET_SIZE(**name) == PyString_GET_SIZE(key) &&
+ _PyString_Eq(**name, key)) break;
+ #endif
+ }
+ if (*name) {
+ values[name-argnames] = value;
+ } else {
+ /* unexpected keyword found */
+ for (name=argnames; name != first_kw_arg; name++) {
+ if (**name == key) goto arg_passed_twice;
+ #if PY_MAJOR_VERSION >= 3
+ if (PyUnicode_GET_SIZE(**name) == PyUnicode_GET_SIZE(key) &&
+ PyUnicode_Compare(**name, key) == 0) goto arg_passed_twice;
+ #else
+ if (PyString_GET_SIZE(**name) == PyString_GET_SIZE(key) &&
+ _PyString_Eq(**name, key)) goto arg_passed_twice;
+ #endif
+ }
+ if (kwds2) {
+ if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad;
+ } else {
+ goto invalid_keyword;
+ }
+ }
+ }
+ }
+ }
+ return 0;
+arg_passed_twice:
+ __Pyx_RaiseDoubleKeywordsError(function_name, **name);
+ 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 CYTHON_INLINE void __Pyx_ErrRestore(PyObject *type, PyObject *value, PyObject *tb) {
+ 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);
+}
+
+static CYTHON_INLINE void __Pyx_ErrFetch(PyObject **type, PyObject **value, PyObject **tb) {
+ 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;
+}
+
+
+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 void __Pyx_RaiseNoneIndexingError(void) {
+ PyErr_SetString(PyExc_TypeError, "'NoneType' object is unsubscriptable");
+}
+
+static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb) {
+ PyObject *local_type, *local_value, *local_tb;
+ PyObject *tmp_type, *tmp_value, *tmp_tb;
+ PyThreadState *tstate = PyThreadState_GET();
+ local_type = tstate->curexc_type;
+ local_value = tstate->curexc_value;
+ local_tb = tstate->curexc_traceback;
+ tstate->curexc_type = 0;
+ tstate->curexc_value = 0;
+ tstate->curexc_traceback = 0;
+ PyErr_NormalizeException(&local_type, &local_value, &local_tb);
+ if (unlikely(tstate->curexc_type))
+ goto bad;
+ #if PY_MAJOR_VERSION >= 3
+ if (unlikely(PyException_SetTraceback(local_value, local_tb) < 0))
+ goto bad;
+ #endif
+ *type = local_type;
+ *value = local_value;
+ *tb = local_tb;
+ Py_INCREF(local_type);
+ Py_INCREF(local_value);
+ Py_INCREF(local_tb);
+ tmp_type = tstate->exc_type;
+ tmp_value = tstate->exc_value;
+ tmp_tb = tstate->exc_traceback;
+ tstate->exc_type = local_type;
+ tstate->exc_value = local_value;
+ tstate->exc_traceback = local_tb;
+ /* Make sure tstate is in a consistent state when we XDECREF
+ these objects (XDECREF may run arbitrary code). */
+ Py_XDECREF(tmp_type);
+ Py_XDECREF(tmp_value);
+ Py_XDECREF(tmp_tb);
+ return 0;
+bad:
+ *type = 0;
+ *value = 0;
+ *tb = 0;
+ Py_XDECREF(local_type);
+ Py_XDECREF(local_value);
+ Py_XDECREF(local_tb);
+ return -1;
+}
+
+
+static CYTHON_INLINE long __Pyx_div_long(long a, long b) {
+ long q = a / b;
+ long r = a - q*b;
+ q -= ((r != 0) & ((r ^ b) < 0));
+ return q;
+}
+
+static CYTHON_INLINE long __Pyx_mod_long(long a, long b) {
+ long r = a % b;
+ r += ((r != 0) & ((r ^ b) < 0)) * b;
+ return r;
+}
+
+
+static CYTHON_INLINE void __Pyx_ExceptionSave(PyObject **type, PyObject **value, PyObject **tb) {
+ PyThreadState *tstate = PyThreadState_GET();
+ *type = tstate->exc_type;
+ *value = tstate->exc_value;
+ *tb = tstate->exc_traceback;
+ Py_XINCREF(*type);
+ Py_XINCREF(*value);
+ Py_XINCREF(*tb);
+}
+
+static void __Pyx_ExceptionReset(PyObject *type, PyObject *value, PyObject *tb) {
+ PyObject *tmp_type, *tmp_value, *tmp_tb;
+ PyThreadState *tstate = PyThreadState_GET();
+ tmp_type = tstate->exc_type;
+ tmp_value = tstate->exc_value;
+ tmp_tb = tstate->exc_traceback;
+ tstate->exc_type = type;
+ tstate->exc_value = value;
+ tstate->exc_traceback = tb;
+ Py_XDECREF(tmp_type);
+ Py_XDECREF(tmp_value);
+ Py_XDECREF(tmp_tb);
+}
+
+static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list) {
+ 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;
+ module = PyObject_CallFunctionObjArgs(py_import,
+ name, global_dict, empty_dict, list, NULL);
+bad:
+ Py_XDECREF(empty_list);
+ Py_XDECREF(py_import);
+ Py_XDECREF(empty_dict);
+ return module;
+}
+
+static PyObject *__Pyx_FindPy2Metaclass(PyObject *bases) {
+ PyObject *metaclass;
+ /* Default metaclass */
+#if PY_MAJOR_VERSION < 3
+ if (PyTuple_Check(bases) && PyTuple_GET_SIZE(bases) > 0) {
+ PyObject *base = PyTuple_GET_ITEM(bases, 0);
+ metaclass = PyObject_GetAttrString(base, "__class__");
+ if (!metaclass) {
+ PyErr_Clear();
+ metaclass = (PyObject*) Py_TYPE(base);
+ }
+ } else {
+ metaclass = (PyObject *) &PyClass_Type;
+ }
+#else
+ if (PyTuple_Check(bases) && PyTuple_GET_SIZE(bases) > 0) {
+ PyObject *base = PyTuple_GET_ITEM(bases, 0);
+ metaclass = (PyObject*) Py_TYPE(base);
+ } else {
+ metaclass = (PyObject *) &PyType_Type;
+ }
+#endif
+ Py_INCREF(metaclass);
+ return metaclass;
+}
+
+static PyObject *__Pyx_CreateClass(PyObject *bases, PyObject *dict, PyObject *name,
+ PyObject *modname) {
+ PyObject *result;
+ PyObject *metaclass;
+
+ if (PyDict_SetItemString(dict, "__module__", modname) < 0)
+ return NULL;
+
+ /* Python2 __metaclass__ */
+ metaclass = PyDict_GetItemString(dict, "__metaclass__");
+ if (metaclass) {
+ Py_INCREF(metaclass);
+ } else {
+ metaclass = __Pyx_FindPy2Metaclass(bases);
+ }
+ result = PyObject_CallFunctionObjArgs(metaclass, name, bases, dict, NULL);
+ Py_DECREF(metaclass);
+ return result;
+}
+
+
+PyObject *__pyx_binding_PyCFunctionType_NewEx(PyMethodDef *ml, PyObject *self, PyObject *module) {
+ __pyx_binding_PyCFunctionType_object *op = PyObject_GC_New(__pyx_binding_PyCFunctionType_object, __pyx_binding_PyCFunctionType);
+ if (op == NULL)
+ return NULL;
+ op->func.m_ml = ml;
+ Py_XINCREF(self);
+ op->func.m_self = self;
+ Py_XINCREF(module);
+ op->func.m_module = module;
+ PyObject_GC_Track(op);
+ return (PyObject *)op;
+}
+
+static void __pyx_binding_PyCFunctionType_dealloc(__pyx_binding_PyCFunctionType_object *m) {
+ PyObject_GC_UnTrack(m);
+ Py_XDECREF(m->func.m_self);
+ Py_XDECREF(m->func.m_module);
+ PyObject_GC_Del(m);
+}
+
+static PyObject *__pyx_binding_PyCFunctionType_descr_get(PyObject *func, PyObject *obj, PyObject *type) {
+ if (obj == Py_None)
+ obj = NULL;
+ return PyMethod_New(func, obj, type);
+}
+
+int __pyx_binding_PyCFunctionType_init(void) {
+ __pyx_binding_PyCFunctionType_type = PyCFunction_Type;
+ __pyx_binding_PyCFunctionType_type.tp_name = __Pyx_NAMESTR("cython_binding_builtin_function_or_method");
+ __pyx_binding_PyCFunctionType_type.tp_dealloc = (destructor)__pyx_binding_PyCFunctionType_dealloc;
+ __pyx_binding_PyCFunctionType_type.tp_descr_get = __pyx_binding_PyCFunctionType_descr_get;
+ if (PyType_Ready(&__pyx_binding_PyCFunctionType_type) < 0) {
+ return -1;
+ }
+ __pyx_binding_PyCFunctionType = &__pyx_binding_PyCFunctionType_type;
+ return 0;
+
+}
+
+static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_uint32_t(uint32_t val) {
+ const uint32_t neg_one = (uint32_t)-1, const_zero = (uint32_t)0;
+ const int is_unsigned = const_zero < neg_one;
+ if ((sizeof(uint32_t) == sizeof(char)) ||
+ (sizeof(uint32_t) == sizeof(short))) {
+ return PyInt_FromLong((long)val);
+ } else if ((sizeof(uint32_t) == sizeof(int)) ||
+ (sizeof(uint32_t) == sizeof(long))) {
+ if (is_unsigned)
+ return PyLong_FromUnsignedLong((unsigned long)val);
+ else
+ return PyInt_FromLong((long)val);
+ } else if (sizeof(uint32_t) == sizeof(PY_LONG_LONG)) {
+ if (is_unsigned)
+ return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG)val);
+ else
+ return PyLong_FromLongLong((PY_LONG_LONG)val);
+ } else {
+ int one = 1; int little = (int)*(unsigned char *)&one;
+ unsigned char *bytes = (unsigned char *)&val;
+ return _PyLong_FromByteArray(bytes, sizeof(uint32_t),
+ little, !is_unsigned);
+ }
+}
+
+#if PY_MAJOR_VERSION < 3
+static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb) {
+ Py_XINCREF(type);
+ Py_XINCREF(value);
+ Py_XINCREF(tb);
+ /* First, check the traceback argument, replacing None with NULL. */
+ if (tb == Py_None) {
+ Py_DECREF(tb);
+ tb = 0;
+ }
+ else if (tb != NULL && !PyTraceBack_Check(tb)) {
+ PyErr_SetString(PyExc_TypeError,
+ "raise: arg 3 must be a traceback or None");
+ goto raise_error;
+ }
+ /* Next, replace a missing value with None */
+ if (value == NULL) {
+ value = Py_None;
+ Py_INCREF(value);
+ }
+ #if PY_VERSION_HEX < 0x02050000
+ if (!PyClass_Check(type))
+ #else
+ if (!PyType_Check(type))
+ #endif
+ {
+ /* Raising an instance. The value should be a dummy. */
+ if (value != Py_None) {
+ PyErr_SetString(PyExc_TypeError,
+ "instance exception may not have a separate value");
+ goto raise_error;
+ }
+ /* Normalize to raise <class>, <instance> */
+ Py_DECREF(value);
+ 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) {
+ 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)) {
+ PyErr_SetString(PyExc_TypeError,
+ "raise: exception class must be a subclass of BaseException");
+ goto bad;
+ }
+
+ 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:
+ return;
+}
+#endif
+
+static CYTHON_INLINE uint32_t __Pyx_PyInt_from_py_uint32_t(PyObject* x) {
+ const uint32_t neg_one = (uint32_t)-1, const_zero = (uint32_t)0;
+ const int is_unsigned = const_zero < neg_one;
+ if (sizeof(uint32_t) == sizeof(char)) {
+ if (is_unsigned)
+ return (uint32_t)__Pyx_PyInt_AsUnsignedChar(x);
+ else
+ return (uint32_t)__Pyx_PyInt_AsSignedChar(x);
+ } else if (sizeof(uint32_t) == sizeof(short)) {
+ if (is_unsigned)
+ return (uint32_t)__Pyx_PyInt_AsUnsignedShort(x);
+ else
+ return (uint32_t)__Pyx_PyInt_AsSignedShort(x);
+ } else if (sizeof(uint32_t) == sizeof(int)) {
+ if (is_unsigned)
+ return (uint32_t)__Pyx_PyInt_AsUnsignedInt(x);
+ else
+ return (uint32_t)__Pyx_PyInt_AsSignedInt(x);
+ } else if (sizeof(uint32_t) == sizeof(long)) {
+ if (is_unsigned)
+ return (uint32_t)__Pyx_PyInt_AsUnsignedLong(x);
+ else
+ return (uint32_t)__Pyx_PyInt_AsSignedLong(x);
+ } else if (sizeof(uint32_t) == sizeof(PY_LONG_LONG)) {
+ if (is_unsigned)
+ return (uint32_t)__Pyx_PyInt_AsUnsignedLongLong(x);
+ else
+ return (uint32_t)__Pyx_PyInt_AsSignedLongLong(x);
+ } else {
+ uint32_t val;
+ PyObject *v = __Pyx_PyNumber_Int(x);
+ #if PY_VERSION_HEX < 0x03000000
+ if (likely(v) && !PyLong_Check(v)) {
+ PyObject *tmp = v;
+ v = PyNumber_Long(tmp);
+ Py_DECREF(tmp);
+ }
+ #endif
+ if (likely(v)) {
+ int one = 1; int is_little = (int)*(unsigned char *)&one;
+ unsigned char *bytes = (unsigned char *)&val;
+ int ret = _PyLong_AsByteArray((PyLongObject *)v,
+ bytes, sizeof(val),
+ is_little, !is_unsigned);
+ Py_DECREF(v);
+ if (likely(!ret))
+ return val;
+ }
+ return (uint32_t)-1;
+ }
+}
+
+static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_int32_t(int32_t val) {
+ const int32_t neg_one = (int32_t)-1, const_zero = (int32_t)0;
+ const int is_unsigned = const_zero < neg_one;
+ if ((sizeof(int32_t) == sizeof(char)) ||
+ (sizeof(int32_t) == sizeof(short))) {
+ return PyInt_FromLong((long)val);
+ } else if ((sizeof(int32_t) == sizeof(int)) ||
+ (sizeof(int32_t) == sizeof(long))) {
+ if (is_unsigned)
+ return PyLong_FromUnsignedLong((unsigned long)val);
+ else
+ return PyInt_FromLong((long)val);
+ } else if (sizeof(int32_t) == sizeof(PY_LONG_LONG)) {
+ if (is_unsigned)
+ return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG)val);
+ else
+ return PyLong_FromLongLong((PY_LONG_LONG)val);
+ } else {
+ int one = 1; int little = (int)*(unsigned char *)&one;
+ unsigned char *bytes = (unsigned char *)&val;
+ return _PyLong_FromByteArray(bytes, sizeof(int32_t),
+ little, !is_unsigned);
+ }
+}
+
+static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_int64_t(int64_t val) {
+ const int64_t neg_one = (int64_t)-1, const_zero = (int64_t)0;
+ const int is_unsigned = const_zero < neg_one;
+ if ((sizeof(int64_t) == sizeof(char)) ||
+ (sizeof(int64_t) == sizeof(short))) {
+ return PyInt_FromLong((long)val);
+ } else if ((sizeof(int64_t) == sizeof(int)) ||
+ (sizeof(int64_t) == sizeof(long))) {
+ if (is_unsigned)
+ return PyLong_FromUnsignedLong((unsigned long)val);
+ else
+ return PyInt_FromLong((long)val);
+ } else if (sizeof(int64_t) == sizeof(PY_LONG_LONG)) {
+ if (is_unsigned)
+ return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG)val);
+ else
+ return PyLong_FromLongLong((PY_LONG_LONG)val);
+ } else {
+ int one = 1; int little = (int)*(unsigned char *)&one;
+ unsigned char *bytes = (unsigned char *)&val;
+ return _PyLong_FromByteArray(bytes, sizeof(int64_t),
+ little, !is_unsigned);
+ }
+}
+
+static CYTHON_INLINE int32_t __Pyx_PyInt_from_py_int32_t(PyObject* x) {
+ const int32_t neg_one = (int32_t)-1, const_zero = (int32_t)0;
+ const int is_unsigned = const_zero < neg_one;
+ if (sizeof(int32_t) == sizeof(char)) {
+ if (is_unsigned)
+ return (int32_t)__Pyx_PyInt_AsUnsignedChar(x);
+ else
+ return (int32_t)__Pyx_PyInt_AsSignedChar(x);
+ } else if (sizeof(int32_t) == sizeof(short)) {
+ if (is_unsigned)
+ return (int32_t)__Pyx_PyInt_AsUnsignedShort(x);
+ else
+ return (int32_t)__Pyx_PyInt_AsSignedShort(x);
+ } else if (sizeof(int32_t) == sizeof(int)) {
+ if (is_unsigned)
+ return (int32_t)__Pyx_PyInt_AsUnsignedInt(x);
+ else
+ return (int32_t)__Pyx_PyInt_AsSignedInt(x);
+ } else if (sizeof(int32_t) == sizeof(long)) {
+ if (is_unsigned)
+ return (int32_t)__Pyx_PyInt_AsUnsignedLong(x);
+ else
+ return (int32_t)__Pyx_PyInt_AsSignedLong(x);
+ } else if (sizeof(int32_t) == sizeof(PY_LONG_LONG)) {
+ if (is_unsigned)
+ return (int32_t)__Pyx_PyInt_AsUnsignedLongLong(x);
+ else
+ return (int32_t)__Pyx_PyInt_AsSignedLongLong(x);
+ } else {
+ int32_t val;
+ PyObject *v = __Pyx_PyNumber_Int(x);
+ #if PY_VERSION_HEX < 0x03000000
+ if (likely(v) && !PyLong_Check(v)) {
+ PyObject *tmp = v;
+ v = PyNumber_Long(tmp);
+ Py_DECREF(tmp);
+ }
+ #endif
+ if (likely(v)) {
+ int one = 1; int is_little = (int)*(unsigned char *)&one;
+ unsigned char *bytes = (unsigned char *)&val;
+ int ret = _PyLong_AsByteArray((PyLongObject *)v,
+ bytes, sizeof(val),
+ is_little, !is_unsigned);
+ Py_DECREF(v);
+ if (likely(!ret))
+ return val;
+ }
+ return (int32_t)-1;
+ }
+}
+
+static CYTHON_INLINE PyObject *__Pyx_PyInt_to_py_uint8_t(uint8_t val) {
+ const uint8_t neg_one = (uint8_t)-1, const_zero = (uint8_t)0;
+ const int is_unsigned = const_zero < neg_one;
+ if ((sizeof(uint8_t) == sizeof(char)) ||
+ (sizeof(uint8_t) == sizeof(short))) {
+ return PyInt_FromLong((long)val);
+ } else if ((sizeof(uint8_t) == sizeof(int)) ||
+ (sizeof(uint8_t) == sizeof(long))) {
+ if (is_unsigned)
+ return PyLong_FromUnsignedLong((unsigned long)val);
+ else
+ return PyInt_FromLong((long)val);
+ } else if (sizeof(uint8_t) == sizeof(PY_LONG_LONG)) {
+ if (is_unsigned)
+ return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG)val);
+ else
+ return PyLong_FromLongLong((PY_LONG_LONG)val);
+ } else {
+ int one = 1; int little = (int)*(unsigned char *)&one;
+ unsigned char *bytes = (unsigned char *)&val;
+ return _PyLong_FromByteArray(bytes, sizeof(uint8_t),
+ little, !is_unsigned);
+ }
+}
+
+#if PY_MAJOR_VERSION < 3
+static PyObject *__Pyx_GetStdout(void) {
+ PyObject *f = PySys_GetObject((char *)"stdout");
+ if (!f) {
+ PyErr_SetString(PyExc_RuntimeError, "lost sys.stdout");
+ }
+ return f;
+}
+
+static int __Pyx_Print(PyObject* f, PyObject *arg_tuple, int newline) {
+ PyObject* v;
+ int i;
+
+ if (!f) {
+ if (!(f = __Pyx_GetStdout()))
+ return -1;
+ }
+ for (i=0; i < PyTuple_GET_SIZE(arg_tuple); i++) {
+ if (PyFile_SoftSpace(f, 1)) {
+ if (PyFile_WriteString(" ", f) < 0)
+ return -1;
+ }
+ v = PyTuple_GET_ITEM(arg_tuple, i);
+ if (PyFile_WriteObject(v, f, Py_PRINT_RAW) < 0)
+ return -1;
+ if (PyString_Check(v)) {
+ char *s = PyString_AsString(v);
+ Py_ssize_t len = PyString_Size(v);
+ if (len > 0 &&
+ isspace(Py_CHARMASK(s[len-1])) &&
+ s[len-1] != ' ')
+ PyFile_SoftSpace(f, 0);
+ }
+ }
+ if (newline) {
+ if (PyFile_WriteString("\n", f) < 0)
+ return -1;
+ PyFile_SoftSpace(f, 0);
+ }
+ return 0;
+}
+
+#else /* Python 3 has a print function */
+
+static int __Pyx_Print(PyObject* stream, PyObject *arg_tuple, int newline) {
+ PyObject* kwargs = 0;
+ PyObject* result = 0;
+ PyObject* end_string;
+ if (unlikely(!__pyx_print)) {
+ __pyx_print = __Pyx_GetAttrString(__pyx_b, "print");
+ if (!__pyx_print)
+ return -1;
+ }
+ if (stream) {
+ kwargs = PyDict_New();
+ if (unlikely(!kwargs))
+ return -1;
+ if (unlikely(PyDict_SetItemString(kwargs, "file", stream) < 0))
+ goto bad;
+ if (!newline) {
+ end_string = PyUnicode_FromStringAndSize(" ", 1);
+ if (unlikely(!end_string))
+ goto bad;
+ if (PyDict_SetItemString(kwargs, "end", end_string) < 0) {
+ Py_DECREF(end_string);
+ goto bad;
+ }
+ Py_DECREF(end_string);
+ }
+ } else if (!newline) {
+ if (unlikely(!__pyx_print_kwargs)) {
+ __pyx_print_kwargs = PyDict_New();
+ if (unlikely(!__pyx_print_kwargs))
+ return -1;
+ end_string = PyUnicode_FromStringAndSize(" ", 1);
+ if (unlikely(!end_string))
+ return -1;
+ if (PyDict_SetItemString(__pyx_print_kwargs, "end", end_string) < 0) {
+ Py_DECREF(end_string);
+ return -1;
+ }
+ Py_DECREF(end_string);
+ }
+ kwargs = __pyx_print_kwargs;
+ }
+ result = PyObject_Call(__pyx_print, arg_tuple, kwargs);
+ if (unlikely(kwargs) && (kwargs != __pyx_print_kwargs))
+ Py_DECREF(kwargs);
+ if (!result)
+ return -1;
+ Py_DECREF(result);
+ return 0;
+bad:
+ if (kwargs != __pyx_print_kwargs)
+ Py_XDECREF(kwargs);
+ return -1;
+}
+
+#endif
+
+#if PY_MAJOR_VERSION < 3
+
+static int __Pyx_PrintOne(PyObject* f, PyObject *o) {
+ if (!f) {
+ if (!(f = __Pyx_GetStdout()))
+ return -1;
+ }
+ if (PyFile_SoftSpace(f, 0)) {
+ if (PyFile_WriteString(" ", f) < 0)
+ return -1;
+ }
+ if (PyFile_WriteObject(o, f, Py_PRINT_RAW) < 0)
+ return -1;
+ if (PyFile_WriteString("\n", f) < 0)
+ return -1;
+ return 0;
+ /* the line below is just to avoid compiler
+ * compiler warnings about unused functions */
+ return __Pyx_Print(f, NULL, 0);
+}
+
+#else /* Python 3 has a print function */
+
+static int __Pyx_PrintOne(PyObject* stream, PyObject *o) {
+ int res;
+ PyObject* arg_tuple = PyTuple_New(1);
+ if (unlikely(!arg_tuple))
+ return -1;
+ Py_INCREF(o);
+ PyTuple_SET_ITEM(arg_tuple, 0, o);
+ res = __Pyx_Print(stream, arg_tuple, 1);
+ Py_DECREF(arg_tuple);
+ return res;
+}
+
+#endif
+
+static CYTHON_INLINE unsigned char __Pyx_PyInt_AsUnsignedChar(PyObject* x) {
+ const unsigned char neg_one = (unsigned char)-1, const_zero = 0;
+ const int is_unsigned = neg_one > const_zero;
+ if (sizeof(unsigned char) < sizeof(long)) {
+ long val = __Pyx_PyInt_AsLong(x);
+ if (unlikely(val != (long)(unsigned char)val)) {
+ if (!unlikely(val == -1 && PyErr_Occurred())) {
+ PyErr_SetString(PyExc_OverflowError,
+ (is_unsigned && unlikely(val < 0)) ?
+ "can't convert negative value to unsigned char" :
+ "value too large to convert to unsigned char");
+ }
+ return (unsigned char)-1;
+ }
+ return (unsigned char)val;
+ }
+ return (unsigned char)__Pyx_PyInt_AsUnsignedLong(x);
+}
+
+static CYTHON_INLINE unsigned short __Pyx_PyInt_AsUnsignedShort(PyObject* x) {
+ const unsigned short neg_one = (unsigned short)-1, const_zero = 0;
+ const int is_unsigned = neg_one > const_zero;
+ if (sizeof(unsigned short) < sizeof(long)) {
+ long val = __Pyx_PyInt_AsLong(x);
+ if (unlikely(val != (long)(unsigned short)val)) {
+ if (!unlikely(val == -1 && PyErr_Occurred())) {
+ PyErr_SetString(PyExc_OverflowError,
+ (is_unsigned && unlikely(val < 0)) ?
+ "can't convert negative value to unsigned short" :
+ "value too large to convert to unsigned short");
+ }
+ return (unsigned short)-1;
+ }
+ return (unsigned short)val;
+ }
+ return (unsigned short)__Pyx_PyInt_AsUnsignedLong(x);
+}
+
+static CYTHON_INLINE unsigned int __Pyx_PyInt_AsUnsignedInt(PyObject* x) {
+ const unsigned int neg_one = (unsigned int)-1, const_zero = 0;
+ const int is_unsigned = neg_one > const_zero;
+ if (sizeof(unsigned int) < sizeof(long)) {
+ long val = __Pyx_PyInt_AsLong(x);
+ if (unlikely(val != (long)(unsigned int)val)) {
+ if (!unlikely(val == -1 && PyErr_Occurred())) {
+ PyErr_SetString(PyExc_OverflowError,
+ (is_unsigned && unlikely(val < 0)) ?
+ "can't convert negative value to unsigned int" :
+ "value too large to convert to unsigned int");
+ }
+ return (unsigned int)-1;
+ }
+ return (unsigned int)val;
+ }
+ return (unsigned int)__Pyx_PyInt_AsUnsignedLong(x);
+}
+
+static CYTHON_INLINE char __Pyx_PyInt_AsChar(PyObject* x) {
+ const char neg_one = (char)-1, const_zero = 0;
+ const int is_unsigned = neg_one > const_zero;
+ if (sizeof(char) < sizeof(long)) {
+ long val = __Pyx_PyInt_AsLong(x);
+ if (unlikely(val != (long)(char)val)) {
+ if (!unlikely(val == -1 && PyErr_Occurred())) {
+ PyErr_SetString(PyExc_OverflowError,
+ (is_unsigned && unlikely(val < 0)) ?
+ "can't convert negative value to char" :
+ "value too large to convert to char");
+ }
+ return (char)-1;
+ }
+ return (char)val;
+ }
+ return (char)__Pyx_PyInt_AsLong(x);
+}
+
+static CYTHON_INLINE short __Pyx_PyInt_AsShort(PyObject* x) {
+ const short neg_one = (short)-1, const_zero = 0;
+ const int is_unsigned = neg_one > const_zero;
+ if (sizeof(short) < sizeof(long)) {
+ long val = __Pyx_PyInt_AsLong(x);
+ if (unlikely(val != (long)(short)val)) {
+ if (!unlikely(val == -1 && PyErr_Occurred())) {
+ PyErr_SetString(PyExc_OverflowError,
+ (is_unsigned && unlikely(val < 0)) ?
+ "can't convert negative value to short" :
+ "value too large to convert to short");
+ }
+ return (short)-1;
+ }
+ return (short)val;
+ }
+ return (short)__Pyx_PyInt_AsLong(x);
+}
+
+static CYTHON_INLINE int __Pyx_PyInt_AsInt(PyObject* x) {
+ const int neg_one = (int)-1, const_zero = 0;
+ const int is_unsigned = neg_one > const_zero;
+ if (sizeof(int) < sizeof(long)) {
+ long val = __Pyx_PyInt_AsLong(x);
+ if (unlikely(val != (long)(int)val)) {
+ if (!unlikely(val == -1 && PyErr_Occurred())) {
+ PyErr_SetString(PyExc_OverflowError,
+ (is_unsigned && unlikely(val < 0)) ?
+ "can't convert negative value to int" :
+ "value too large to convert to int");
+ }
+ return (int)-1;
+ }
+ return (int)val;
+ }
+ return (int)__Pyx_PyInt_AsLong(x);
+}
+
+static CYTHON_INLINE signed char __Pyx_PyInt_AsSignedChar(PyObject* x) {
+ const signed char neg_one = (signed char)-1, const_zero = 0;
+ const int is_unsigned = neg_one > const_zero;
+ if (sizeof(signed char) < sizeof(long)) {
+ long val = __Pyx_PyInt_AsLong(x);
+ if (unlikely(val != (long)(signed char)val)) {
+ if (!unlikely(val == -1 && PyErr_Occurred())) {
+ PyErr_SetString(PyExc_OverflowError,
+ (is_unsigned && unlikely(val < 0)) ?
+ "can't convert negative value to signed char" :
+ "value too large to convert to signed char");
+ }
+ return (signed char)-1;
+ }
+ return (signed char)val;
+ }
+ return (signed char)__Pyx_PyInt_AsSignedLong(x);
+}
+
+static CYTHON_INLINE signed short __Pyx_PyInt_AsSignedShort(PyObject* x) {
+ const signed short neg_one = (signed short)-1, const_zero = 0;
+ const int is_unsigned = neg_one > const_zero;
+ if (sizeof(signed short) < sizeof(long)) {
+ long val = __Pyx_PyInt_AsLong(x);
+ if (unlikely(val != (long)(signed short)val)) {
+ if (!unlikely(val == -1 && PyErr_Occurred())) {
+ PyErr_SetString(PyExc_OverflowError,
+ (is_unsigned && unlikely(val < 0)) ?
+ "can't convert negative value to signed short" :
+ "value too large to convert to signed short");
+ }
+ return (signed short)-1;
+ }
+ return (signed short)val;
+ }
+ return (signed short)__Pyx_PyInt_AsSignedLong(x);
+}
+
+static CYTHON_INLINE signed int __Pyx_PyInt_AsSignedInt(PyObject* x) {
+ const signed int neg_one = (signed int)-1, const_zero = 0;
+ const int is_unsigned = neg_one > const_zero;
+ if (sizeof(signed int) < sizeof(long)) {
+ long val = __Pyx_PyInt_AsLong(x);
+ if (unlikely(val != (long)(signed int)val)) {
+ if (!unlikely(val == -1 && PyErr_Occurred())) {
+ PyErr_SetString(PyExc_OverflowError,
+ (is_unsigned && unlikely(val < 0)) ?
+ "can't convert negative value to signed int" :
+ "value too large to convert to signed int");
+ }
+ return (signed int)-1;
+ }
+ return (signed int)val;
+ }
+ return (signed int)__Pyx_PyInt_AsSignedLong(x);
+}
+
+static CYTHON_INLINE int __Pyx_PyInt_AsLongDouble(PyObject* x) {
+ const int neg_one = (int)-1, const_zero = 0;
+ const int is_unsigned = neg_one > const_zero;
+ if (sizeof(int) < sizeof(long)) {
+ long val = __Pyx_PyInt_AsLong(x);
+ if (unlikely(val != (long)(int)val)) {
+ if (!unlikely(val == -1 && PyErr_Occurred())) {
+ PyErr_SetString(PyExc_OverflowError,
+ (is_unsigned && unlikely(val < 0)) ?
+ "can't convert negative value to int" :
+ "value too large to convert to int");
+ }
+ return (int)-1;
+ }
+ return (int)val;
+ }
+ return (int)__Pyx_PyInt_AsLong(x);
+}
+
+static CYTHON_INLINE unsigned long __Pyx_PyInt_AsUnsignedLong(PyObject* x) {
+ const unsigned long neg_one = (unsigned long)-1, const_zero = 0;
+ const int is_unsigned = neg_one > const_zero;
+#if PY_VERSION_HEX < 0x03000000
+ if (likely(PyInt_Check(x))) {
+ long val = PyInt_AS_LONG(x);
+ if (is_unsigned && unlikely(val < 0)) {
+ PyErr_SetString(PyExc_OverflowError,
+ "can't convert negative value to unsigned long");
+ return (unsigned long)-1;
+ }
+ return (unsigned long)val;
+ } else
+#endif
+ if (likely(PyLong_Check(x))) {
+ if (is_unsigned) {
+ if (unlikely(Py_SIZE(x) < 0)) {
+ PyErr_SetString(PyExc_OverflowError,
+ "can't convert negative value to unsigned long");
+ return (unsigned long)-1;
+ }
+ return PyLong_AsUnsignedLong(x);
+ } else {
+ return 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 PyLong_AsUnsignedLongLong(x);
+ } else {
+ return 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 PyLong_AsUnsignedLong(x);
+ } else {
+ return 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 PyLong_AsUnsignedLongLong(x);
+ } else {
+ return 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 PyLong_AsUnsignedLong(x);
+ } else {
+ return 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 PyLong_AsUnsignedLongLong(x);
+ } else {
+ return 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) {
+ 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 CYTHON_INLINE uint64_t __Pyx_PyInt_from_py_uint64_t(PyObject* x) {
+ const uint64_t neg_one = (uint64_t)-1, const_zero = (uint64_t)0;
+ const int is_unsigned = const_zero < neg_one;
+ if (sizeof(uint64_t) == sizeof(char)) {
+ if (is_unsigned)
+ return (uint64_t)__Pyx_PyInt_AsUnsignedChar(x);
+ else
+ return (uint64_t)__Pyx_PyInt_AsSignedChar(x);
+ } else if (sizeof(uint64_t) == sizeof(short)) {
+ if (is_unsigned)
+ return (uint64_t)__Pyx_PyInt_AsUnsignedShort(x);
+ else
+ return (uint64_t)__Pyx_PyInt_AsSignedShort(x);
+ } else if (sizeof(uint64_t) == sizeof(int)) {
+ if (is_unsigned)
+ return (uint64_t)__Pyx_PyInt_AsUnsignedInt(x);
+ else
+ return (uint64_t)__Pyx_PyInt_AsSignedInt(x);
+ } else if (sizeof(uint64_t) == sizeof(long)) {
+ if (is_unsigned)
+ return (uint64_t)__Pyx_PyInt_AsUnsignedLong(x);
+ else
+ return (uint64_t)__Pyx_PyInt_AsSignedLong(x);
+ } else if (sizeof(uint64_t) == sizeof(PY_LONG_LONG)) {
+ if (is_unsigned)
+ return (uint64_t)__Pyx_PyInt_AsUnsignedLongLong(x);
+ else
+ return (uint64_t)__Pyx_PyInt_AsSignedLongLong(x);
+ } else {
+ uint64_t val;
+ PyObject *v = __Pyx_PyNumber_Int(x);
+ #if PY_VERSION_HEX < 0x03000000
+ if (likely(v) && !PyLong_Check(v)) {
+ PyObject *tmp = v;
+ v = PyNumber_Long(tmp);
+ Py_DECREF(tmp);
+ }
+ #endif
+ if (likely(v)) {
+ int one = 1; int is_little = (int)*(unsigned char *)&one;
+ unsigned char *bytes = (unsigned char *)&val;
+ int ret = _PyLong_AsByteArray((PyLongObject *)v,
+ bytes, sizeof(val),
+ is_little, !is_unsigned);
+ Py_DECREF(v);
+ if (likely(!ret))
+ return val;
+ }
+ return (uint64_t)-1;
+ }
+}
+
+#ifndef __PYX_HAVE_RT_ImportType
+#define __PYX_HAVE_RT_ImportType
+static PyTypeObject *__Pyx_ImportType(const char *module_name, const char *class_name,
+ long 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;
+ #if PY_MAJOR_VERSION < 3
+ py_name = PyString_FromString(class_name);
+ #else
+ py_name = PyUnicode_FromString(class_name);
+ #endif
+ 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 && ((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
+ PyErr_Warn(NULL, warning);
+ #else
+ PyErr_WarnEx(NULL, warning, 0);
+ #endif
+ }
+ else if (((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 0;
+}
+#endif
+
+#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;
+
+ #if PY_MAJOR_VERSION < 3
+ py_name = PyString_FromString(name);
+ #else
+ py_name = PyUnicode_FromString(name);
+ #endif
+ 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
+
+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;
+}
+
+#include "compile.h"
+#include "frameobject.h"
+#include "traceback.h"
+
+static void __Pyx_AddTraceback(const char *funcname) {
+ PyObject *py_srcfile = 0;
+ PyObject *py_funcname = 0;
+ PyObject *py_globals = 0;
+ PyCodeObject *py_code = 0;
+ PyFrameObject *py_frame = 0;
+
+ #if PY_MAJOR_VERSION < 3
+ py_srcfile = PyString_FromString(__pyx_filename);
+ #else
+ py_srcfile = PyUnicode_FromString(__pyx_filename);
+ #endif
+ if (!py_srcfile) goto bad;
+ if (__pyx_clineno) {
+ #if PY_MAJOR_VERSION < 3
+ py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, __pyx_clineno);
+ #else
+ py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, __pyx_clineno);
+ #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_globals = PyModule_GetDict(__pyx_m);
+ if (!py_globals) goto bad;
+ py_code = PyCode_New(
+ 0, /*int argcount,*/
+ #if PY_MAJOR_VERSION >= 3
+ 0, /*int kwonlyargcount,*/
+ #endif
+ 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,*/
+ __pyx_lineno, /*int firstlineno,*/
+ __pyx_empty_bytes /*PyObject *lnotab*/
+ );
+ if (!py_code) 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 = __pyx_lineno;
+ PyTraceBack_Here(py_frame);
+bad:
+ Py_XDECREF(py_srcfile);
+ Py_XDECREF(py_funcname);
+ 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 */