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/cgilib/transMapStuff.c src/hg/cgilib/transMapStuff.c index 4df43df..0abf803 100644 --- src/hg/cgilib/transMapStuff.c +++ src/hg/cgilib/transMapStuff.c @@ -1,20 +1,20 @@ /* transMapStuff - common definitions and functions for supporting transMap * tracks in the browser CGIs */ /* Copyright (C) 2014 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 "transMapStuff.h" #include "trackDb.h" #include "hdb.h" char* transMapSkipGenomeDbPrefix(char *id) /* Skip the source genome db prefix (e.g. hg19:) in a TransMap identifier. * Return the full id if no db prefix is found for compatibility with older * version of transmap. */ { char *simpleId = strchr(id, ':'); if (simpleId == NULL) return id; else return simpleId+1;