2018-11-17 12:42:12 +05:30
|
|
|
#!/usr/bin/env python3
|
2015-07-10 21:58:01 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
import os
|
|
|
|
import sys
|
2019-12-05 13:05:34 +05:30
|
|
|
from io import StringIO
|
2015-07-10 21:58:01 +05:30
|
|
|
from optparse import OptionParser
|
2019-06-14 16:33:30 +05:30
|
|
|
|
|
|
|
import damask
|
|
|
|
|
2015-07-10 21:58:01 +05:30
|
|
|
|
2016-01-27 22:36:00 +05:30
|
|
|
scriptName = os.path.splitext(os.path.basename(__file__))[0]
|
|
|
|
scriptID = ' '.join([scriptName,damask.version])
|
2015-07-10 21:58:01 +05:30
|
|
|
|
2019-06-14 16:33:30 +05:30
|
|
|
|
2015-07-10 21:58:01 +05:30
|
|
|
# --------------------------------------------------------------------
|
|
|
|
# MAIN
|
|
|
|
# --------------------------------------------------------------------
|
|
|
|
|
2019-02-16 22:11:56 +05:30
|
|
|
parser = OptionParser(option_class=damask.extendableOption, usage='%prog options [ASCIItable(s)]', description = """
|
2015-07-10 21:58:01 +05:30
|
|
|
Rename scalar, vectorial, and/or tensorial data header labels.
|
|
|
|
|
|
|
|
""", version = scriptID)
|
|
|
|
|
2015-08-08 00:33:26 +05:30
|
|
|
parser.add_option('-l','--label',
|
|
|
|
dest = 'label',
|
|
|
|
action = 'extend', metavar='<string LIST>',
|
|
|
|
help = 'column(s) to rename')
|
|
|
|
parser.add_option('-s','--substitute',
|
|
|
|
dest = 'substitute',
|
|
|
|
action = 'extend', metavar='<string LIST>',
|
|
|
|
help = 'new column label(s)')
|
|
|
|
|
|
|
|
parser.set_defaults(label = [],
|
|
|
|
substitute = [],
|
|
|
|
)
|
2015-07-10 21:58:01 +05:30
|
|
|
|
|
|
|
(options,filenames) = parser.parse_args()
|
2015-08-18 20:07:32 +05:30
|
|
|
if filenames == []: filenames = [None]
|
2015-07-10 21:58:01 +05:30
|
|
|
|
2019-12-05 11:20:06 +05:30
|
|
|
if len(options.label) != len(options.substitute):
|
|
|
|
parser.error('number of column labels and substitutes do not match.')
|
2015-07-10 21:58:01 +05:30
|
|
|
|
2019-12-05 11:20:06 +05:30
|
|
|
for name in filenames:
|
|
|
|
damask.util.report(scriptName,name)
|
2015-07-10 21:58:01 +05:30
|
|
|
|
2019-12-05 11:20:06 +05:30
|
|
|
table = damask.Table.from_ASCII(StringIO(''.join(sys.stdin.read())) if name is None else name)
|
|
|
|
for i,label in enumerate(options.label):
|
|
|
|
table.rename(label,
|
|
|
|
options.substitute[i],
|
|
|
|
scriptID+' '+' '.join(sys.argv[1:]))
|
2015-07-10 21:58:01 +05:30
|
|
|
|
2019-12-05 11:20:06 +05:30
|
|
|
table.to_ASCII(sys.stdout if name is None else name)
|