acaa4f6b604d90d9573204fb866b88990f5203c3
kent
  Thu Jan 29 14:38:14 2015 -0800
Adding note that this line of development is moving to tagStorm.

diff --git src/lib/meta.c src/lib/meta.c
index d081fc0..4f55331 100644
--- src/lib/meta.c
+++ src/lib/meta.c
@@ -1,30 +1,32 @@
 /* Copyright (C) 2013 The Regents of the University of California 
  * See README in this or parent directory for licensing information. */
 
 /* metaRa - stuff to parse and interpret a genome-hub meta.txt file, which is in 
  * a hierarchical ra format.  That is something like:
  *     meta topLevel
  *     cellLine HELA
  *
  *         meta midLevel
  *         target H3K4Me3
  *         antibody abCamAntiH3k4me3
  *       
  *            meta lowLevel
  *            fileName hg19/chipSeq/helaH3k4me3.narrowPeak.bigBed
  * The file is interpreted so that lower level stanzas inherit tags from higher level ones.
+ * NOTE: this file has largely been superceded by the tagStorm module, which does not
+ * require meta tags, but is otherwise similar. 
  */
 
 #include "common.h"
 #include "linefile.h"
 #include "hash.h"
 #include "errAbort.h"
 #include "meta.h"
 #include "net.h"
 #include "ra.h"
 
 struct metaTagVal *metaTagValNew(char *tag, char *val)
 /* Create new meta tag/val */
 {
 struct metaTagVal *mtv;
 AllocVar(mtv);