5adcf6bc2904690de7b7b30a83ec8a7a0996abe9 galt Tue Aug 21 00:01:25 2018 -0700 changing cse subdomain to soe diff --git src/utils/qa/compareHgFindSpecs.csh src/utils/qa/compareHgFindSpecs.csh index 278992b..7103101 100755 --- src/utils/qa/compareHgFindSpecs.csh +++ src/utils/qa/compareHgFindSpecs.csh @@ -62,34 +62,34 @@ # check if valid field -- checks on localhost (usually hgwdev) set field = $argv[4] hgsql -t -e "DESC $table" $db | grep -w $field | wc -l > /dev/null if ( $status ) then echo echo " $field is not a valid field for $table" echo echo ${0}: $0 exit 1 endif endif #### NEW WAY WITH hgTables -#set url = "http://hgwdev.cse.ucsc.edu/cgi-bin/hgTables?db=hg16&hgta_outputType=selectedFields&hgta_regionType=genome&hgta_table=trackDb&origPhase=Get+results&outputType=Tab-separated%2C+Choose+fields...&phase=Get+these+fields&hgta_doPrintSelectedFields=get+output" +#set url = "http://hgwdev.soe.ucsc.edu/cgi-bin/hgTables?db=hg16&hgta_outputType=selectedFields&hgta_regionType=genome&hgta_table=trackDb&origPhase=Get+results&outputType=Tab-separated%2C+Choose+fields...&phase=Get+these+fields&hgta_doPrintSelectedFields=get+output" set url1 = "http://" -set url2 = ".cse.ucsc.edu/cgi-bin/hgTables?db=" +set url2 = ".soe.ucsc.edu/cgi-bin/hgTables?db=" set url3 = "&hgta_outputType=selectedFields&hgta_regionType=genome&hgta_table=" set url4 = "&outputType=Tab-separated%2C+Choose+fields...&origPhase=Get+results" set url5 = "&field_$field=on" set url6 = "&phase=Get+these+fields&hgta_doPrintSelectedFields=get+output" # add tableName to output if checking other fields -- to help interpret results # doesn't work for settings of because of embedded newlines set url5a = "" if ($field != "tableName") then set url5a = "&field_tableName=on" endif set machine=$machine1 foreach mach ( $machine1 $machine2 ) set url="$url1$mach$url2$db$url3$table$url4$url5a$url5$url6"