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/tfbsConsLoc/matt-maf.c src/hg/makeDb/tfbsConsLoc/matt-maf.c index 5b95bd5..9d5648a 100644 --- src/hg/makeDb/tfbsConsLoc/matt-maf.c +++ src/hg/makeDb/tfbsConsLoc/matt-maf.c @@ -1,21 +1,21 @@ // matt-maf.c - Read/write maf format. Stolen from Jim Kent & seriously abused //#include "multiz.h" //#include "mz_util.h" /* Copyright (C) 2004 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 "matt-maf.h" #include "util.h" struct mafFile *mafOpen(char *fileName) { struct mafFile *mf; FILE *fp; char buf[500], *s; mf = ckalloc(sizeof(struct mafFile)); mf->next = NULL; fp = mf->fp = ckopen(fileName, "r"); if (fgets(buf, 500, fp) == NULL) fatalf("empty file %s", fileName); if (sscanf(buf, "##maf version=%d", &(mf->version)) != 1)