src/hg/utils/automation/Encode.pm 1.51

1.51 2009/12/01 19:59:52 kate
Allow mouse
Index: src/hg/utils/automation/Encode.pm
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/utils/automation/Encode.pm,v
retrieving revision 1.50
retrieving revision 1.51
diff -b -B -U 4 -r1.50 -r1.51
--- src/hg/utils/automation/Encode.pm	6 Nov 2009 05:35:11 -0000	1.50
+++ src/hg/utils/automation/Encode.pm	1 Dec 2009 19:59:52 -0000	1.51
@@ -225,10 +225,10 @@
 }
 
 sub validateAssembly {
     my ($val) = @_;
-    if($val ne 'hg18') {
-        return "Assembly '$val' is invalid (must be 'hg18')";
+    if($val ne 'hg18' && $val ne 'mm9') {
+        return "Assembly '$val' is invalid (must be 'hg18 or mm9')";
     } else {
         return ();
     }
 }