src/hg/lib/encode/gappedPeak.as 1.3

1.3 2009/03/06 17:40:30 kate
Correct comments for encode Peaks schemas
Index: src/hg/lib/encode/gappedPeak.as
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/lib/encode/gappedPeak.as,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 1000000 -r1.2 -r1.3
--- src/hg/lib/encode/gappedPeak.as	24 Oct 2008 19:18:10 -0000	1.2
+++ src/hg/lib/encode/gappedPeak.as	6 Mar 2009 17:40:30 -0000	1.3
@@ -1,19 +1,19 @@
 table gappedPeak
 "This format is used to provide called regions of signal enrichment based on pooled, normalized (interpreted) data where the regions may be spliced or incorporate gaps in the genomic sequence. It is a BED12+3 format."
     (
     string chrom;	"Reference sequence chromosome or scaffold"
     uint chromStart;	"pseudogene alignment start position"
     uint chromEnd;      "pseudogene alignment end position"
     string name;        "Name of pseudogene"
     uint score;         "score of pseudogene with gene"
     char[2] strand;     "+ or -"
     uint thickStart;    "Start of where display should be thick (start codon)"
     uint thickEnd;      "End of where display should be thick (stop codon)"
     uint reserved;      "Always zero for now"
     int blockCount;     "Number of blocks"
     int[blockCount] blockSizes; "Comma separated list of block sizes"
     int[blockCount] chromStarts; "Start positions relative to chromStart"
     float  signalValue;  "Measurement of average enrichment for the region"
-    float  pValue;       "Within dataset statistical significance of signal value (-log10)"
-    float  qValue;       "Cross-dataset statistical significance of signal value (-log10)"
+    float  pValue;       "Statistical significance of signal value (-log10). Set to -1 if not used."
+    float  qValue;       "Statistical significance with multiple-test correction applied (FDR). Set to -1 if not used."
     )