97a6375174305aeffb487fd4f0425b89a29bb672 steve Mon Sep 16 16:42:40 2013 -0700 Modified the script to also output the date and filesize of all 2bit files if applicable (redmine #6508) diff --git src/utils/qa/2bitCompare src/utils/qa/2bitCompare index a3aca4b..ff73e06 100755 --- src/utils/qa/2bitCompare +++ src/utils/qa/2bitCompare @@ -161,15 +161,39 @@ 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" else if ($md5sumGbdbBetaExists == '' ) then echo " hgwbeta gbdb md5sum: $db.2bit does not exist in /gbdb/$db on hgwbeta" else echo " hgwbeta 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 ($md5sumGbdbDevExists != '') then + echo " hgwbeta 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" +endif + +echo