# HG changeset patch # User greg # Date 1542225182 18000 # Node ID 017f975149b290672ff94ebfcd6c606a93ffbc26 # Parent f3ca1cd544fac4382e5cac2cfa139a341b25730e Uploaded diff -r f3ca1cd544fa -r 017f975149b2 validate_affy_metadata.py --- a/validate_affy_metadata.py Wed Nov 14 14:51:26 2018 -0500 +++ b/validate_affy_metadata.py Wed Nov 14 14:53:02 2018 -0500 @@ -66,7 +66,7 @@ if i > 97: accumulated_msgs = add_error_msg(accumulated_msgs, "The input file contains more than 96 data lines.") stop_error(accumulated_msgs) - items = line.split("\t") + items = line.split(",") if len(items) != 31: accumulated_msgs = add_error_msg(accumulated_msgs, "Line %d contains %s columns, (must be 31)." % (i, len(items))) stop_error(accumulated_msgs)