diff options
Diffstat (limited to 'parse_exps.py')
-rwxr-xr-x | parse_exps.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/parse_exps.py b/parse_exps.py index f8a1b98..5228cbe 100755 --- a/parse_exps.py +++ b/parse_exps.py | |||
@@ -11,14 +11,17 @@ import sys | |||
11 | from collections import namedtuple | 11 | from collections import namedtuple |
12 | from common import load_params | 12 | from common import load_params |
13 | from optparse import OptionParser | 13 | from optparse import OptionParser |
14 | from parse.dir_map import DirMap | ||
14 | from parse.point import ExpPoint | 15 | from parse.point import ExpPoint |
15 | from parse.tuple_table import ColMap,TupleTable | 16 | from parse.tuple_table import ColMap,TupleTable |
16 | 17 | ||
18 | |||
17 | def parse_args(): | 19 | def parse_args(): |
18 | # TODO: convert data-dir to proper option, clean 'dest' options | 20 | # TODO: convert data-dir to proper option, clean 'dest' options |
19 | parser = OptionParser("usage: %prog [options] [data_dir]...") | 21 | parser = OptionParser("usage: %prog [options] [data_dir]...") |
20 | 22 | ||
21 | print("default to no params.py") | 23 | print("default to no params.py") |
24 | print("save measurements in temp directory for faster reloading") | ||
22 | 25 | ||
23 | parser.add_option('-o', '--out', dest='out', | 26 | parser.add_option('-o', '--out', dest='out', |
24 | help='file or directory for data output', default='parse-data') | 27 | help='file or directory for data output', default='parse-data') |