e8e9f56ae9f3a3de5b078575668bfa3a549d40a5
brianlee
  Thu Mar 6 14:08:14 2025 -0800
Changing tiff to tif to match file of lab naming

diff --git src/hg/cirm/cdw/cdwSubmit/cdwSubmit.c src/hg/cirm/cdw/cdwSubmit/cdwSubmit.c
index 3ac928267d5..f59103b3ace 100644
--- src/hg/cirm/cdw/cdwSubmit/cdwSubmit.c
+++ src/hg/cirm/cdw/cdwSubmit/cdwSubmit.c
@@ -561,31 +561,31 @@
 }
 
 boolean isSupportedFormat(char *format)
 /* Return TRUE if this is one of our supported formats */
 {
 /* First deal with non bigBed */
 static char *otherSupportedFormats[] = {"unknown", "fastq", "bam", "bed", "gtf", 
     "bam.bai", "vcf.gz.tbi",
     "bigWig", "bigBed", 
     "bedLogR", "bedRrbs", "bedMethyl", "broadPeak", "narrowPeak", 
     "bed_bedLogR", "bed_bedRrbs", "bed_bedMethyl", "bed_broadPeak", "bed_narrowPeak",
     "bedRnaElements", "openChromCombinedPeaks", "peptideMapping", "shortFrags", 
     "rcc", "idat", "fasta", "customTrack", "pdf", "png", "vcf", "cram", "jpg", "text", "html",
     "tsv", "csv",
     "raw", "xls",
-    "tiff", "avi",
+    "tif", "avi",
     "kallisto_abundance", "expression_matrix",
     };
 static int otherSupportedFormatsCount = ArraySize(otherSupportedFormats);
 if (stringArrayIx(format, otherSupportedFormats, otherSupportedFormatsCount) >= 0)
     return TRUE;
 
 /* If starts with bed_ then skip over prefix.  It will be caught by bigBed */
 if (startsWith("bed_", format))
     format += 4;
 return cdwIsSupportedBigBedFormat(format);
 }
 
 void prefetchChecks(char *format, char *fileName, char *submitDir)
 /* Perform some basic format checks. */
 {