41d01fd0f045a58696edb753981feef6865f62e5 kate Mon Apr 24 15:11:24 2017 -0700 1. Fix schema file syntax problem, strangely in comment. Caused crash in QA testing. 2. Allow bigBarChart w/o offset/len into matrix. refs #18736 diff --git src/hg/lib/barChartBed.as src/hg/lib/barChartBed.as index 82852fa..8d8dabc 100644 --- src/hg/lib/barChartBed.as +++ src/hg/lib/barChartBed.as @@ -1,14 +1,14 @@ table barChartBed "BED6+4 with additional fields for category count and median values, and sample matrix fields" ( string chrom; "Reference sequence chromosome or scaffold" uint chromStart; "Start position in chromosome" uint chromEnd; "End position in chromosome" string name; "Name or ID of item, ideally both human readable and unique" - uint score; "Score from 0-1000; typically derived from total of median value from all categories" + uint score; "Score from 0-1000. Typically derived from total of median value from all categories" char[1] strand; "+ or - for strand. Use . if not applicable" uint expCount; "Number of categories" float[expCount] expScores; "Comma separated list of category values" bigint _dataOffset; "Offset of sample data in data matrix file, for boxplot on details page." int _dataLen; "Length of sample data row in data matrix file. )