6a8d7741dd91b8c219f367c285f5800bd389ea9b chmalee Mon Aug 10 06:02:48 2020 -0700 Remove some debug code, #25996 diff --git src/hg/hgTracks/vcfTrack.c src/hg/hgTracks/vcfTrack.c index 836efc5..7362509 100644 --- src/hg/hgTracks/vcfTrack.c +++ src/hg/hgTracks/vcfTrack.c @@ -2491,33 +2491,30 @@ int gtIx = gtHapOrder[i]; struct vcfGenotype *gt = &(rec->genotypes[gtIx >> 1]); int alleleSampleIx = stringArrayIx(gt->id, sampleOrder, gtHapCount / 2); if (alleleSampleIx != childSampleIx) if (alleleSampleIx > childSampleIx) { transmitOrder[i] = i % 2 == 0 ? "transmitted" : "untransmitted"; } else { transmitOrder[i] = i % 2 == 0 ? "untransmitted" : "transmitted"; } else transmitOrder[i] = "child"; } -for (i = 0; i < gtHapCount; i++) - fprintf(stderr, "%s, ", transmitOrder[i]); -fprintf(stderr, "\n"); } enum phasedColorMode { noColorMode, mendelDiffMode, deNovoOnlyMode, phasedFunctionMode }; static enum phasedColorMode getPhasedColorMode(struct trackDb *tdb) /* Get the coloring mode for phased trio tracks */ { enum phasedColorMode colorMode = noColorMode; char *colorBy = cartOrTdbString(cart, tdb, VCF_PHASED_COLORBY_VAR, VCF_PHASED_COLORBY_VAR);