Mercurial > repos > greg > validate_affy_metadata
changeset 3:017f975149b2 draft
Uploaded
author | greg |
---|---|
date | Wed, 14 Nov 2018 14:53:02 -0500 |
parents | f3ca1cd544fa |
children | f8488ab257ac |
files | validate_affy_metadata.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)