e70152e44cc66cc599ff6b699eb8adc07f3e656a
kent
  Sat May 24 21:09:34 2014 -0700
Adding Copyright NNNN Regents of the University of California to all files I believe with reasonable certainty were developed under UCSC employ or as part of Genome Browser copyright assignment.
diff --git src/hg/hgTracks/gvfTrack.c src/hg/hgTracks/gvfTrack.c
index b3a874c..f458b1c 100644
--- src/hg/hgTracks/gvfTrack.c
+++ src/hg/hgTracks/gvfTrack.c
@@ -1,17 +1,20 @@
 /* gvfTrack.c - display variants from GVF (http://www.sequenceontology.org/gvf.html) */
 
+/* Copyright (C) 2012 The Regents of the University of California 
+ * See README in this or parent directory for licensing information. */
+
 #include "common.h"
 #include "hgTracks.h"
 #include "imageV2.h"
 #include "hdb.h"
 #include "bed8Attrs.h"
 
 static Color gvfColor(struct track *tg, void *item, struct hvGfx *hvg)
 /* Color item by var_type attribute, according to Deanna Church's document
  * SvRepresentation2.doc attached to redmine #34. */
 {
 struct bed8Attrs *gvf = item;
 Color dbVarUnknown = hvGfxFindColorIx(hvg, 0xb2, 0xb2, 0xb2);
 int ix = stringArrayIx("var_type", gvf->attrTags, gvf->attrCount);
 if (ix < 0)
     return dbVarUnknown;