# HG changeset patch
# User greg
# Date 1568397324 14400
# Node ID b5f5c3d0f349c7c70423a8d1bb1cbfea296b8ff8
# Parent 80d672b3e6ddfb0cbd18adfc67b39bfdf76d7847
Uploaded
diff -r 80d672b3e6dd -r b5f5c3d0f349 validate_affy_metadata.py
--- a/validate_affy_metadata.py Thu Aug 15 13:17:41 2019 -0400
+++ b/validate_affy_metadata.py Fri Sep 13 13:55:24 2019 -0400
@@ -74,9 +74,6 @@
# Keep 1-based line value for error messages.
line_no = i + 1
line = line.rstrip("\r\n")
- if i > 97:
- accumulated_msgs = add_error_msg(accumulated_msgs, "The input file contains more than 97 lines (must be 1 header line and no more than 96 data lines).")
- stop_error(accumulated_msgs)
items = line.split("\t")
if len(items) != 32:
accumulated_msgs = add_error_msg(accumulated_msgs, "Line %d contains %s columns, (must be 32)." % (line_no, len(items)))
diff -r 80d672b3e6dd -r b5f5c3d0f349 validate_affy_metadata.xml
--- a/validate_affy_metadata.xml Thu Aug 15 13:17:41 2019 -0400
+++ b/validate_affy_metadata.xml Fri Sep 13 13:55:24 2019 -0400
@@ -6,7 +6,7 @@
--output '$output']]>
-
+
@@ -21,7 +21,7 @@
**What it does**
-Validates an Affymetrix metadata file for 96 well plate data. These files consist of 32 columns and no more than 96 data lines.
+Validates an Affymetrix metadata file for 96 well plate data consisting of 32 columns.
The tool will output the input file if it is valid.
-----