55ed87f7bd1f116bc5357922d7127f90ffb88e1e steve Thu Jan 16 11:39:30 2014 -0800 Per Ann, added 'rr' to hgwbeta output lines and adjusted spacing of other output lines to compensate diff --git src/utils/qa/2bitCompare src/utils/qa/2bitCompare index 5affb2d..3159ea0 100755 --- src/utils/qa/2bitCompare +++ src/utils/qa/2bitCompare @@ -151,49 +151,49 @@ endif # Checks for the existence of the $db directory in gbdb on beta. If the directory is # found, checks for the existence of the 2bit file. If the 2bit file is found, # checks the md5sum. set gbdbBetaExists=`ssh qateam@hgwbeta ls /gbdb | grep ^$db\$` if ($gbdbBetaExists != '' ) then set md5sumGbdbBetaExists=`ssh qateam@hgwbeta ls /gbdb/$db | grep $db.2bit` if ($md5sumGbdbBetaExists != '' ) then set md5sumGbdbBeta=`ssh qateam@hgwbeta md5sum /gbdb/$db/$db.2bit` endif endif # Reports the findings of the above section if ($gbdbBetaExists == '' ) then - echo " hgwbeta gbdb md5sum: The $db directory does not exist in /gbdb on hgwbeta" + echo " hgwbeta/rr gbdb md5sum: The $db directory does not exist in /gbdb on hgwbeta" else if ($md5sumGbdbBetaExists == '' ) then - echo " hgwbeta gbdb md5sum: $db.2bit does not exist in /gbdb/$db on hgwbeta" + echo " hgwbeta/rr gbdb md5sum: $db.2bit does not exist in /gbdb/$db on hgwbeta" else - echo " hgwbeta gbdb md5sum: $md5sumGbdbBeta" + echo " hgwbeta/rr gbdb md5sum: $md5sumGbdbBeta" endif endif echo # Outputs the date and filesize of all 2bit files if applicable if ($md5sumBlatExists != '') then echo " $blatSpacing date,size: "`ssh qateam@$blat ls /scratch/$db/$db.2bit -l | awk '{print $6,$7,$8,$5}'` else echo " blat date,size: N/A" endif if ($md5sumDownloadExists != '') then echo " download date,size: "`ls /usr/local/apache/htdocs-hgdownload/goldenPath/$db/bigZips/$db.2bit -l | awk '{print $6,$7,$8,$5}'` else echo " download date,size: N/A" endif if ($md5sumGbdbDevExists != '') then echo " hgwdev gbdb date,size: "`ls /gbdb/$db/$db.2bit -l | awk '{print $6,$7,$8,$5}'` else echo " hgwdev gbdb date,size: N/A" endif if ($md5sumGbdbBetaExists != '') then - echo " hgwbeta gbdb date,size: "`ssh qateam@hgwbeta ls /gbdb/$db/$db.2bit -l | awk '{print $6,$7,$8,$5}'` + echo " hgwbeta/rr gbdb date,size: "`ssh qateam@hgwbeta ls /gbdb/$db/$db.2bit -l | awk '{print $6,$7,$8,$5}'` else - echo " hgwbeta gbdb date,size: N/A" + echo " hgwbeta/rr gbdb date,size: N/A" endif echo