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/lib/encode/encodeRegionInfoCustom.c src/hg/lib/encode/encodeRegionInfoCustom.c index 2e18016..9c047d5 100644 --- src/hg/lib/encode/encodeRegionInfoCustom.c +++ src/hg/lib/encode/encodeRegionInfoCustom.c @@ -1,29 +1,29 @@ /* encodeRegionInfoCustom - custom (not autoSQL generated) code for working * with ENCODE region information table in hgFixed */ /* 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 "jksql.h" #include "hdb.h" #include "encode/encodeRegionInfo.h" char *getEncodeRegionDescr(char *name) /* Get descriptive text for a region */ { struct sqlConnection *conn = sqlConnect("hgFixed"); char buf[128]; char query[256]; char *res = NULL; sqlSafef(query, sizeof(query), "select descr from encodeRegionInfo where name = '%s'", name); if (sqlQuickQuery(conn, query, buf, sizeof(buf)) != NULL) { res = cloneString(buf); } sqlDisconnect(&conn); return res; }