428a47dfc975f02f3c3a97b3273d7b95f9789ff4 angie Tue Oct 1 13:12:08 2019 -0700 New util dbSnpJsonToTab converts JSON to bigDbSnp and dbSnpDetails files; checkBigDbSnp flags clustering anomalies. refs #23283 diff --git src/hg/snp/makefile src/hg/snp/makefile index 94e9b8e..52beccd 100644 --- src/hg/snp/makefile +++ src/hg/snp/makefile @@ -1,20 +1,20 @@ -SNP_DIRS=snpLoad snpMask snpValid +SNP_DIRS=snpLoad snpMask snpValid dbSnpJsonToTab checkBigDbSnp all:: @for D in ${SNP_DIRS} x; do \ if test "$$D" != "x" ; then \ ( cd $$D && echo $$D && ${MAKE} ) ;\ x=$$? ; if [ $$x -ne 0 ]; then exit $$x ; fi \ fi ;\ done clean:: @for D in ${SNP_DIRS} ; do \ ( cd "$$D" && echo cleaning $$D && ${MAKE} clean ) ; \ done compile:: @for D in ${SNP_DIRS} ; do \ ( cd "$$D" && echo compile $$D && ${MAKE} compile ) ; \ done