From f6fa53d538d931865c73dbcd10d753620a2bf3eb Mon Sep 17 00:00:00 2001 From: karnem <mikhail.karnevskiy@desy.de> Date: Thu, 6 Jun 2019 16:28:42 +0200 Subject: [PATCH] use latex table with 3 columns for input parameters --- xfel_calibrate/calibrate.py | 76 +++++++++++++++++++++++++++---------- 1 file changed, 57 insertions(+), 19 deletions(-) diff --git a/xfel_calibrate/calibrate.py b/xfel_calibrate/calibrate.py index 34a25713c..8290dc6b7 100755 --- a/xfel_calibrate/calibrate.py +++ b/xfel_calibrate/calibrate.py @@ -442,6 +442,62 @@ def concurrent_run(temp_path, nb, nbname, args, cparm=None, cval=None, return jobid +def make_par_table(parms, temp_path, run_uuid): + ''' + Create a table with input parameters if the notebook + + :param parms: parameters of the notebook + :param temp_path: path to temporary directory for job outputs + :param run_uuid: inset of folder name containing job output + ''' + def split_len(seq, length): + l = [seq[i:i+length] for i in range(0, len(seq), length)] + return ' '.join(l) + + # prepare strings and estimate their length + l_parms = [] + len_parms = [0, 0] + max_len = [30, 30] + for p in parms: + name = p.name.replace('_', '-') + if len(name)>max_len[0]: + len_parms[0] = max_len[0] + name = split_len(name, max_len[0]) + + value = str(p.value) + if len(value)>max_len[1]: + len_parms[1] = max_len[1] + value = split_len(value, max_len[1]) + if p.type is str: + value = "``{}''".format(value) + value = value.replace('_', '\\_') + + comment = str(p.comment)[1:].replace('_', '\\_') + + l_parms.append([name, value, comment ]) + + with open("{}/slurm_tmp_{}/InputParameters.rst".format(temp_path, run_uuid), "w") as finfile: + finfile.write("Input of the calibration pipeline \n") + finfile.write("================================= \n\n") + finfile.write(".. math::\n") + col_type = ['l', 'c', 'p{.3\\textwidth}'] + + # fix column width is needed + if len_parms[0]==max_len[0]: + col_type[0] = 'p{.3\\textwidth}' + if len_parms[1]==max_len[1]: + col_type[1] = 'p{.3\\textwidth}' + + finfile.write(" \\begin{{tabular}}{{ {} {} {} }}\n".format(*col_type)) + finfile.write(" \\hline\n") + for p in l_parms: + tmpl = " \\textbf{{-{{}}-{} }} & {} & {}\\\\\n" + finfile.write(tmpl.format(*p)) + + finfile.write(" \\hline\n") + finfile.write(" \\end{tabular}\n") + + def run(): """ Run a calibration task with parser arguments """ @@ -527,25 +583,7 @@ def run(): # Write all input parameters to rst file to be included to final report parms = parameter_values(parms, **args) - with open("{}/slurm_tmp_{}/InputParameters.rst".format(temp_path, run_uuid), "w") as finfile: - finfile.write("Input of the calibration pipeline \n") - finfile.write("================================= \n\n") - finfile.write(".. math::\n") - finfile.write(" \\begin{tabular}{ll}\n") - finfile.write(" \\hline\n") - for p in parms: - #finfile.write("{} \n\n".format(p.comment)) - #finfile.write(".. parsed-literal::\n") - if p.type is str: - tmpl = " \\textbf{{-{{}}-{} }} & ``{}'', {}\\\\\n" - else: - tmpl = " \\textbf{{-{{}}-{} }} & {}, {}\\\\\n" - - finfile.write(tmpl.format(p.name.replace('_', '-'), - str(p.value).replace('_', '\\_'), - str(p.comment)[1:].replace('_', '\\_'))) - finfile.write(" \\hline\n") - finfile.write(" \\end{tabular}\n") + make_par_table(parms, temp_path, run_uuid) # wait on all jobs to run and then finalize the run by creating a report from the notebooks out_path = "{}/{}/{}/{}".format(report_path, detector.upper(), -- GitLab