1d601669b9ad580b6a9c610b92ebe411d01ac1cd kent Mon Nov 18 17:16:53 2013 -0800 Program to help revoke files mistakenly imported into ENCODE3 seems to work. diff --git src/lib/gff.c src/lib/gff.c index 489ef6d..ec2ce06 100644 --- src/lib/gff.c +++ src/lib/gff.c @@ -375,31 +375,31 @@ int end = -start; line = group->lineList; group->strand = line->strand; for (; line != NULL; line = line->next) { if (start > line->start) start = line->start; if (end < line->end) end = line->end; } group->start = start; group->end = end; } void gffGroupLines(struct gffFile *gff) -/* Group lines of gff file together, in process mofing +/* Group lines of gff file together, in process moving * gff->lineList to gffGroup->lineList. */ { struct gffLine *line, *nextLine; struct hash *groupHash = gff->groupHash; char *groupName; struct gffGroup *group; struct gffLine *ungroupedLines = NULL; for (line = gff->lineList; line != NULL; line = nextLine) { nextLine = line->next; if ((groupName = line->group) != NULL) { struct hashEl *hel = hashLookup(groupHash, groupName); group = hel->val;