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/variantProjector.c src/hg/lib/variantProjector.c
index 5d1f1fb..aab92f0 100644
--- src/hg/lib/variantProjector.c
+++ src/hg/lib/variantProjector.c
@@ -1,21 +1,21 @@
 /* variantProjector -- use sequence alignments and indel shifting to transform genomic variants
  * to transcript/CDS and protein variants.  Compute sufficient information to predict functional
  * effects on proteins and to form HGVS g., n., and if applicable c. and p. terms. */
 
 /* Copyright (C) 2017 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 "indelShift.h"
 #include "variantProjector.h"
 
 static enum vpTxRegion complementRegion(enum vpTxRegion regionIn)
 /* Reverse the +-strand-computed region for a transcript on the - strand. */
 {
 enum vpTxRegion regionOut = regionIn;
 if (regionIn == vpUpstream)
     regionOut = vpDownstream;
 else if (regionIn == vpDownstream)
     regionOut = vpUpstream;
 return regionOut;
 }