2f4b2eb1df8521e7f931c3c8cb5d6d20e60384da ceisenhart Wed Apr 26 09:04:55 2017 -0700 Updating the autoSql and sql files to include gene name, refs #19155 diff --git src/hg/lib/barChartBed.as src/hg/lib/barChartBed.as index 8d8dabc..ac48ee6 100644 --- src/hg/lib/barChartBed.as +++ src/hg/lib/barChartBed.as @@ -1,14 +1,15 @@ table barChartBed -"BED6+4 with additional fields for category count and median values, and sample matrix fields" +"BED6+5 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. + string gene; "Hugo gene name associated with the transcript." )