acaa4f6b604d90d9573204fb866b88990f5203c3 kent Thu Jan 29 14:38:14 2015 -0800 Adding note that this line of development is moving to tagStorm. diff --git src/inc/meta.h src/inc/meta.h index 5a09103..e9be142 100644 --- src/inc/meta.h +++ src/inc/meta.h @@ -1,27 +1,29 @@ /* 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. */ #ifndef META_H #define META_H struct metaTagVal /* A tag/value pair. */ { struct metaTagVal *next; /* Next in list. */ char *tag; /* Tag name. */ char *val; /* Tag value. */ }; struct metaTagVal *metaTagValNew(char *tag, char *val); /* Create new meta tag/val */