eccLib 1.1.0
Python library for bioinformatics written in C
Loading...
Searching...
No Matches
GtfList.h
Go to the documentation of this file.
1
6#ifndef GtfList_H
7#define GtfList_H
8
9#include <Python.h>
10
29typedef struct {
34 PyListObject list;
35} GtfList;
36
41extern PyTypeObject GtfListType;
42
48PyObject *GtfList_new(Py_ssize_t len);
49
55#define GtfList_Check(op) PyObject_TypeCheck(op, &GtfListType)
56
57#endif
PyObject * GtfList_new(Py_ssize_t len)
Creates a new GtfList object.
Definition GtfList.c:604
PyTypeObject GtfListType
The Python type definition for the GtfList object.
Definition GtfList.c:647
A list that holds geneDicts.
Definition GtfList.h:29
PyListObject list
The underlying list object.
Definition GtfList.h:34