198c9b8daecc44fbda6a6494c566c723920f030a lrnassar Wed Mar 11 18:25:21 2026 -0700 Fixing a few hundred clear typos with the help of Claude. Some are less important in code comments, but majority of them are in user-facing places. I manually approved 60%+ of the changes and didn't see any that were an incorrect suggestion, at worst it was potentially uncessesary, like a code comment having cant instead of can't. No RM. diff --git python/lib/ucscGb/qa/tables/trackUtils.py python/lib/ucscGb/qa/tables/trackUtils.py index 68c55f3f09e..ec931c4fb6c 100644 --- python/lib/ucscGb/qa/tables/trackUtils.py +++ python/lib/ucscGb/qa/tables/trackUtils.py @@ -59,31 +59,31 @@ def getChromCol(trackType): """Returns the name of the column that contains the chrom name, based on track type.""" if trackType in chromTypes: return 'chrom' elif trackType in genoNameTypes: return 'genoName' elif trackType in tNameTypes: return 'tName' else: raise Exception("Can't find column name for track type " + trackType) def getChrStartEndCols(trackType): """Get columns names for chromosome, chromosome start and chromosome end based on track type""" - # genePred chromsome start/end col names are slightly different + # genePred chromosome start/end col names are slightly different # than others in chromType list if trackType == "genePred": colNames = ("chrom","txStart","txEnd") elif trackType in chromTypes: colNames = ("chrom", "chromStart", "chromEnd") elif trackType in genoNameTypes: colNames = ("genoName", "genoStart", "genoEnd") elif trackType in tNameTypes: colNames = ("tName", "tStart", "tEnd") else: raise Exception("Can't find chrom, start, end column names for track type " + trackType) return colNames def checkCanPack(db, table): """Check if a track can be set to pack"""