Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions ipet/parsing/StatisticReader_TableReader.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,11 @@ def extractStatistic(self, line):
else:
# treat vectors (tables with only one data column)
datakeys = ['_'.join((self.tableid, rowname))]
# TODO This works, why is eclipse complaining?
data = [self.convertToFloat(misc.numericExpression.search(line, colonidx + 1).group(0))]
finding = misc.numericExpression.search(line, colonidx + 1)
if finding is not None:
data = [self.convertToFloat(finding.group(0))]
else :
data = []

# determine minimum length (necessary if more headers were recognized than actual available data)
minlen = min(len(datakeys), len(data))
Expand Down
Empty file modified scripts/ipet-evaluate
100644 → 100755
Empty file.
1 change: 1 addition & 0 deletions scripts/ipet-parse
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ def process_one_outfiles_group(task : tuple):
outfiles, arguments = task
experiment = setup_experiment(arguments)

logger = logging.getLogger()
logger.info("Start parsing process of outfile(s) {}".format(", ".join(outfiles)))

for o in outfiles:
Expand Down
Loading