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/lib/rnautil.c src/lib/rnautil.c index 06795fb..9331aba 100644 --- src/lib/rnautil.c +++ src/lib/rnautil.c @@ -1,19 +1,19 @@ /* rnautil.c - functions for dealing with RNA and RNA secondary structure. */ /* Copyright (C) 2007 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 "rnautil.h" #include "common.h" const char *RNA_PAIRS[] = {"AU","UA","GC","CG","GU","UG",0}; /* Null terminated array of rna pairs */ void dna2rna(char *s) /* Replace 't' with 'u' and 'T' with 'U' in s. */ { for (;*s;s++) { if (*s == 't') *s = 'u'; if (*s == 'T') *s = 'U';