# HG changeset patch
# User stevecassidy
# Date 1481770437 18000
# Node ID f188eb0b526d65eef4292c2f617c679f5e91b0c2
# Parent 6f4db0e89117af7d211b025ff48a152122cfbfd9
planemo upload commit 2d22bc12c66a3d1949d4bf4c84e7ce7c4610383c-dirty
diff -r 6f4db0e89117 -r f188eb0b526d cut_timeseries.py
--- a/cut_timeseries.py Thu Dec 08 01:45:31 2016 -0500
+++ b/cut_timeseries.py Wed Dec 14 21:53:57 2016 -0500
@@ -68,7 +68,7 @@
with open(tsfile, 'r') as fd:
reader = csv.reader(fd, dialect=csv.excel_tab)
for row in reader:
- if row[0] == 'sampletime':
+ if row[0] == 'time':
tsheader = row
elif float(row[0]) > start and float(row[0]) < end:
collect.append(row)
diff -r 6f4db0e89117 -r f188eb0b526d cut_timeseries.xml
--- a/cut_timeseries.xml Thu Dec 08 01:45:31 2016 -0500
+++ b/cut_timeseries.xml Wed Dec 14 21:53:57 2016 -0500
@@ -20,7 +20,7 @@