From 1449c4e3072d6597129f72541dbc01b7805594bc Mon Sep 17 00:00:00 2001 From: james94 <james94@mi.fu-berlin.de> Date: Tue, 9 Nov 2021 12:45:28 +0100 Subject: [PATCH] fix report table size --- scripts/makePDF_indivMD.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/makePDF_indivMD.py b/scripts/makePDF_indivMD.py index a5bf840..f295419 100644 --- a/scripts/makePDF_indivMD.py +++ b/scripts/makePDF_indivMD.py @@ -70,11 +70,11 @@ with open(snakemake.output[0], 'w') as outFile: print("\\pagebreak", file=outFile) print("\\", file=outFile) print("", file=outFile) - print("\\small", file=outFile) + print("\\tiny", file=outFile) print("### QV Score", file=outFile) print(tabulate(QV_score_table, headers='keys',tablefmt="pipe", showindex=True), file=outFile) print("", file=outFile) - print("\\small", file=outFile) + print("\\tiny", file=outFile) print("### Kmer Completeness", file=outFile) print(tabulate(kmer_completeness_table, headers='keys',tablefmt="pipe", showindex=True), file=outFile) print("", file=outFile) -- GitLab