998833f3086db9b664f7998f1122e0a3ddfe8ff8
lrnassar
  Mon Jan 20 09:15:04 2025 -0800
Adding two more files to be ignored by the comparison script, no RM.

diff --git src/hg/utils/otto/ottoCompareGitVsHiveFiles.py src/hg/utils/otto/ottoCompareGitVsHiveFiles.py
index 4307c8c..a69ead3 100755
--- src/hg/utils/otto/ottoCompareGitVsHiveFiles.py
+++ src/hg/utils/otto/ottoCompareGitVsHiveFiles.py
@@ -47,31 +47,31 @@
 def compareGitMd5sumsToHiveMd5sums(fileNameDic,fileNameHiveMatches):
     """Compare md5sums between files in git and all matching files in hive"""
     for fileName in fileNameDic.keys():
         if fileNameDic[fileName] in fileNameHiveMatches[fileName]:
             continue
             print("Found matching file: "+fileName)
         elif fileNameHiveMatches[fileName] == []:
             continue
             print("File was never found: "+fileName)
         else:
             print("The following otto file was found, but the md5sum of the git file did not match the one running on hive: "+fileName)
             
 
 def findGitFilesBuildDics():
     """Find all files in git minus exceptions and get md5sums, build dics"""
-    fileListWithMd5sum = bash("find ~/kent/src/hg/utils/otto -type f | grep -v 'uniprot\|ncbiRefSeq\|crontab\|README*\|clinvarSubLolly\|makefile\|.c$\|sarscov2phylo\|nextstrainNcov\|knownGene\|rsv/exclude.ids\|mask.bed' | xargs md5sum")
+    fileListWithMd5sum = bash("find ~/kent/src/hg/utils/otto -type f | grep -v 'uniprot\|ncbiRefSeq\|crontab\|README*\|clinvarSubLolly\|makefile\|.c$\|sarscov2phylo\|nextstrainNcov\|knownGene\|rsv/exclude.ids\|mask.bed\|.gitignore\|R00000039_repregions.bed' | xargs md5sum")
     fileNameDic = {}
     fileNameHiveMatches = {}
     fileListWithMd5sum[0].split("  ")
     return(fileListWithMd5sum,fileNameDic,fileNameHiveMatches)
     
 def checkCrontabDifferences():
     """Looks for differences between the committed otto crontab and the one running"""
     user = getpass.getuser()
 
     if user != "otto":
         crontab = bash("ssh otto@hgwdev crontab -l")
     else:
         crontab = bash("crontab -l")
     
     liveCrontab = open("/cluster/home/"+user+"/ottoCrontab.tmp",'w')