e46073f856770bdfef4f7637eea8f9f9297aa139 chmalee Tue Nov 19 15:57:08 2019 -0800 Initial commit of new track type vcfPhased trio. A line with ticks, one per haplotype per sample in the VCF, as specified by trackDb variables. diff --git src/hg/hgTracks/simpleTracks.c src/hg/hgTracks/simpleTracks.c index 972356d..55fd569 100644 --- src/hg/hgTracks/simpleTracks.c +++ src/hg/hgTracks/simpleTracks.c @@ -14121,30 +14121,34 @@ } else if (sameWord(type, "hic")) { hicMethods(track); } #ifdef USE_HAL else if (sameWord(type, "pslSnake")) { halSnakeMethods(track, tdb, wordCount, words); } else if (sameWord(type, "halSnake")) { halSnakeMethods(track, tdb, wordCount, words); } #endif +else if (sameWord(type, "vcfPhasedTrio")) + { + vcfPhasedMethods(track); + } else if (sameWord(type, "vcfTabix")) { vcfTabixMethods(track); } else if (sameWord(type, "vcf")) { vcfMethods(track); } else if (startsWith(type, "bedDetail")) { bedDetailMethods(track); } else if (sameWord(type, "pgSnp")) { pgSnpCtMethods(track);