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/protein/lib/doSam.c src/hg/protein/lib/doSam.c index 86e3fd5..8b04fa7 100644 --- src/hg/protein/lib/doSam.c +++ src/hg/protein/lib/doSam.c @@ -1,19 +1,19 @@ /* doSamT02 prints out the UCSC SAM-T02 Protein Structure Analysis and Prediction sub-section */ /* 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 "hdb.h" #include "pbTracks.h" char *getSgdId(char *protId, char *database) /* Get SGD gene ID from a Swiss-Prot ID */ { struct sqlConnection *conn2 = hAllocConn(database); char condStr[256]; char *sgdId; sqlSafefFrag(condStr, sizeof condStr, "proteinId='%s'", protId); sgdId = sqlGetField(database, "sgdGene", "name", condStr); hFreeConn(&conn2);