3c238d1c5a14d3cc542bca1b3f059601d5f446aa hiram Sat Jan 17 09:41:35 2026 -0800 adding more database assemblies to the topPriorities list refs #31811 diff --git src/hg/hubApi/genomePriority.py src/hg/hubApi/genomePriority.py index 4d9ffecd821..a74fd7c152d 100755 --- src/hg/hubApi/genomePriority.py +++ src/hg/hubApi/genomePriority.py @@ -1,31 +1,45 @@ #!/cluster/software/bin/python3 import subprocess import locale import sys import re import os import csv import requests from io import StringIO +# priorities derived from the 'Monthly usage stats' report +# from the qateam cron job running on the first day of the month # special top priorities topPriorities = { 'hg38': 1, 'mm39': 2, 'hs1': 3, + 'hg19': 4, + 'mm10': 5, + 'dm6': 6, + 'danRer11': 7, + 'mm9': 8, + 'hetGla2': 9, + 'rn6': 10, + 'hg18': 11, + 'galGal6': 12, + 'bosTau9': 13, + 'ce11': 14, + 'canFam4': 15, } ### key will be dbDb/GCx name, value will be priority number allPriorities = {} priorityCounter = len(topPriorities) + 1 # key is clade, value is priority, will be initialized # by initCladePriority() function cladePrio = {} #################################################################### ### this is kinda like an environment setting, it gets everything ### into a UTF-8 reading mode ####################################################################