GuyAllard / gff_iterator

python iterator for gff files

Repository from Github https://github.comGuyAllard/gff_iteratorRepository from Github https://github.comGuyAllard/gff_iterator

GFF Iterator

A very simple python iterator for parsing GFF/GTF files

Installation
To install with pip, run

pip install https://github.com/guyallard/gff_iterator/archive/v1.0.0.zip

Usage

from gff_iterator import gff_iterator
with open("somefile.gff", "r") as gff_file:
    for record in gff_iterator(gff_file):
        print(record)

About

python iterator for gff files


Languages

Language:Python 100.0%