e5a54c455c6cf05fda2bc967254e2929f0b07d39 max Tue Nov 4 03:59:16 2025 -0800 adding the word "flank" to table browser exon split output mode, so the user knows what this is about, refs #30655 diff --git src/hg/lib/featureBits.c src/hg/lib/featureBits.c index a155f388447..b7f3d84501e 100644 --- src/hg/lib/featureBits.c +++ src/hg/lib/featureBits.c @@ -556,31 +556,31 @@ else { if (e < bed->thickEnd) continue; if (s < bed->thickEnd) s = bed->thickEnd; } fName = "utr3"; } else { fName = "exon"; } if (!doScore || (doScore && bed->score >= scoreThreshold)) { // the -1 is because we output exon numbers starting at 0 int exonNum = bed->strand[0] == '+' ? i : count - 1 - i; - safef(nameBuf, sizeof(nameBuf), "%s_%s_%d_%d_%s_%d_%c", + safef(nameBuf, sizeof(nameBuf), "%s_%s_%d_flank%d_%s_%d_%c", bed->name, fName, exonNum, extraSize, bed->chrom, s+1, frForStrand(bed->strand[0])); setRangePlusExtra(db, &fbList, nameBuf, bed->chrom, s, e, bed->strand[0], extraSize, extraSize, chromStart, chromEnd); } } } else { if (doCds) { s = bed->thickStart; e = bed->thickEnd; fName = "cds";