135eb5b13252cdb26d6e2390108a87348d225781 kent Tue Mar 26 09:34:47 2013 -0700 Unrolling gff changes that broke some of Mark's tests. diff --git src/inc/gff.h src/inc/gff.h index 199c347..f33a52a 100644 --- src/inc/gff.h +++ src/inc/gff.h @@ -46,31 +46,30 @@ }; struct gffSource /* A list of sources. */ { struct gffSource *next; /* Next in list. */ char *name; /* Name, not allocated here. */ unsigned int id; /* Database ID (or just 0) */ }; struct gffFeature /* A list of types in GFF file. */ { struct gffFeature *next; /* Next in list. */ char *name; /* Name, not allocated here. */ - int count; /* Number of times this feature is used. */ }; struct gffSeqName /* A list of sequence. */ { struct gffSeqName *next; /* Next in list. */ char *name; /* Name, not allocated here. */ }; struct gffGeneId /* A list of genes. */ { struct gffGeneId *next; /* Next in list. */ char *name; /* Name, not allocated here. */ };