9d4635d2821b3d8a73396728cbd9cd56ad842f7c
wisulliv
  Fri Feb 9 15:54:43 2024 -0800
Updated Home and Data Images.

diff --git src/hg/cirm/cdw/cdwWebBrowse/cdwWebBrowse.c src/hg/cirm/cdw/cdwWebBrowse/cdwWebBrowse.c
index 448051a..eee196c 100644
--- src/hg/cirm/cdw/cdwWebBrowse/cdwWebBrowse.c
+++ src/hg/cirm/cdw/cdwWebBrowse/cdwWebBrowse.c
@@ -2004,31 +2004,31 @@
 {
 FILE *fh = fopen(fname, "r");
 if (fh==NULL)
     return;
 char buf[1000];
 while (fgets(buf, 1000, fh) != NULL)
     puts(buf);
 }
 
 char *tagPopularityFields[] = { "tag name", "vals", "popular values (files)...", "files",};
 
 void doHome(struct sqlConnection *conn)
 /* Put up home/summary page */
 {
 printf("<table><tr><td>");
-printf("<img src=\"../images/freeStemCell.jpg\" width=%d height=%d>\n", 200, 275);
+printf("<img src=\"../images/sspsygene_data_portal_data_img.jpg\" width=%d height=%d>\n", 200, 275);
 printf("</td><td>");
 
 /* Print sentence with summary of bytes, files, and labs */
 char query[256];
 printf("The SSPsyGene Staging Portal contains ");
 sqlSafef(query, sizeof(query),
     "select sum(size) from cdwFile,cdwValidFile where cdwFile.id=cdwValidFile.id "
     " and (errorMessage = '' or errorMessage is null)"
     );
 long long totalBytes = sqlQuickLongLong(conn, query);
 printWithGreekByte(stdout, totalBytes);
 printf(" of data in ");
 #ifdef OLD
 sqlSafef(query, sizeof(query),
     "select count(*) from cdwFile,cdwValidFile where cdwFile.id=cdwValidFile.fileId "