4898794edd81be5285ea6e544acbedeaeb31bf78
max
  Tue Nov 23 08:10:57 2021 -0800
Fixing pointers to README file for license in all source code files. refs #27614

diff --git src/hg/makeDb/hgMedianMicroarray/hgMedianMicroarray.c src/hg/makeDb/hgMedianMicroarray/hgMedianMicroarray.c
index 5c90f64..5e803c6 100644
--- src/hg/makeDb/hgMedianMicroarray/hgMedianMicroarray.c
+++ src/hg/makeDb/hgMedianMicroarray/hgMedianMicroarray.c
@@ -1,155 +1,155 @@
 /* hgMedianMicroarray - Create a copy of microarray database that contains the median value of replicas. */
 
 /* Copyright (C) 2013 The Regents of the University of California 
- * See README in this or parent directory for licensing information. */
+ * See kent/LICENSE or http://genome.ucsc.edu/license/ for licensing information. */
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "options.h"
 #include "obscure.h"
 #include "portable.h"
 #include "jksql.h"
 #include "hdb.h"
 #include "hgRelate.h"
 #include "expRecord.h"
 #include "expData.h"
 #include "microarray.h"
 
 
 char *tabDir = ".";
 boolean doLoad;
 int limit = 0;
 int minExps = 2;
 
 void usage()
 /* Explain usage and exit. */
 {
 errAbort(
   "hgMedianMicroarray - Create a copy of microarray database that contains the\n"
   "median value of replicas\n"
   "usage:\n"
   "   hgMedianMicroarray db table expTable specFile.ra newTable newExpTable\n"
   "The specFile.ra contains a line for each expression column you want in\n"
   "the new table.  The format of the line is\n"
   " 'name' 'group' ix1 ix2 ... ixN\n"
   "where 'name' is what will appear in the column label in the Family browser\n"
   "and 'group' is what whill appear in the row label in dense mode in the\n"
   "genome browser, and ix1 ... ixN are the (zero based) indices of columns you\n"
   "are taking the median of in the original data set\n"
   "options:\n"
   "   -tab=dir - Output tab-separated files to directory.\n"
   "   -noLoad  - If true don't load database and don't clean up tab files\n"
   "   -limit=N - Only do limit rows of table, for testing\n"
   "   -minExps=N - Minimum number of experiments to use, default %d\n"
   , minExps
   );
 }
 
 static struct optionSpec options[] = {
    {"tab", OPTION_STRING},
    {"noLoad", OPTION_BOOLEAN},
    {"limit", OPTION_INT},
    {"minExps", OPTION_INT},
    {NULL, 0},
 };
 
 void makeNewExpTable(char *oldTable, struct maMedSpec *medList, char *newTable)
 /* Create new expTable in hgFixed that is very similar
  * to oldExpTable, but with rows defined by medList. */
 {
 struct maMedSpec *med;
 struct expRecord *oldExp, newExp;
 struct sqlConnection *conn = sqlConnect("hgFixed");
 FILE *f = hgCreateTabFile(tabDir, newTable);
 char query[256], **row;
 struct sqlResult *sr;
 int curId = 0;
 
 for (med = medList; med != NULL; med = med->next)
     {
     /* Load expression record from old table of first
      * thing in median. */
     sqlSafef(query, sizeof(query),
     	"select * from %s where id = %d", oldTable, med->ids[0]);
     sr = sqlGetResult(conn, query);
     if ((row = sqlNextRow(sr)) == NULL)
         errAbort("Can't find id %d in %s\n", med->ids[0], oldTable);
     oldExp = expRecordLoad(row);
     sqlFreeResult(&sr);
     if (oldExp->numExtras < 3)
         errAbort("Can only deal with old tables with 3 extras or more");
 
 
     /* Create new expression record, mostly just a shallow copy of old. */
     newExp = *oldExp;
     newExp.id = curId;
     ++curId;
     newExp.name = newExp.description = med->name;
     newExp.extras[2] = med->group;
 
     /* Save new one, free old one. */
     expRecordTabOut(&newExp, f);
     expRecordFree(&oldExp);
     }
 
 if (doLoad)
     {
     expRecordCreateTable(conn, newTable);
     hgLoadTabFile(conn, tabDir, newTable, &f);
     hgRemoveTabFile(tabDir, newTable);
     }
 sqlDisconnect(&conn);
 }
 
 void makeNewDataTable(char *database, char *oldTable, struct maMedSpec *medList, char *newTable)
 /* Create new table in database based on medians of data
  * in old table as defined by medList. */
 {
 struct sqlConnection *conn = sqlConnect(database);
 FILE *f = hgCreateTabFile(tabDir, newTable);
 struct expData *expList, *medianExpList, *exp;
 
 expList = expDataLoadTableLimit(conn, oldTable, limit);
 medianExpList = maExpDataMedianFromSpec(expList, medList, minExps);
 for (exp = medianExpList; exp != NULL; exp = exp->next)
     expDataTabOut(exp, f);
 if (doLoad)
     {
     expDataCreateTable(conn, newTable);
     hgLoadTabFile(conn, tabDir, newTable, &f);
     hgRemoveTabFile(tabDir, newTable);
     }
 expDataFreeList(&expList);
 expDataFreeList(&medianExpList);
 sqlDisconnect(&conn);
 }
 
 
 void hgMedianMicroarray(char *database, char *table, char *expTable, 
 	char *specFile, char *newTable, char *newExpTable)
 /* hgMedianMicroarray - Create a copy of microarray database that contains 
  * the median value of replicas. */
 {
 struct maMedSpec *medList = maMedSpecReadAll(specFile);
 makeNewExpTable(expTable, medList, newExpTable);
 makeNewDataTable(database, table, medList, newTable);
 }
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 optionInit(&argc, argv, options);
 if (argc != 7)
     usage();
 doLoad = !optionExists("noLoad");
 minExps = optionInt("minExps", minExps);
 if (optionExists("tab"))
     {
     tabDir = optionVal("tab", tabDir);
     makeDir(tabDir);
     }
 limit = optionInt("limit", limit);
 
 hgMedianMicroarray(argv[1], argv[2], argv[3], argv[4], argv[5], argv[6]);
 return 0;
 }