gffutils
gffutils copied to clipboard
GFF and GTF file manipulation and interconversion
``` ______________________________________________________________________________________ test_roundtrip _______________________________________________________________________________________ def test_roundtrip(): """ Feature -> SeqFeature -> Feature should be invariant. """ db_fname = gffutils.example_filename("gff_example1.gff3") db = gffutils.create_db(db_fname, ":memory:") feature = db["ENSMUSG00000033845"] feature.keep_order = True dialect...
I'm using your amazing library to work with some DNA modifications, which generally are 1 or 2 nucleotide "spots". while using the "completely_within=True" param I'm not getting anything back as...
Hi there, I've loaded a GFF file into memory like this: ``` db = gffutils.create_db(args.gff,":memory:", force=True,merge_strategy="create_unique") ``` If I do this: ``` for feature in db.all_features(): feature.seqid = pepid_to_scafid[feature.seqid] feature.start...
simplejson was of backport of Python3 json module for Python2