Skip to content
Snippets Groups Projects
Commit 1449c4e3 authored by james94's avatar james94
Browse files

fix report table size

parent 4ccfc338
No related branches found
No related tags found
No related merge requests found
...@@ -70,11 +70,11 @@ with open(snakemake.output[0], 'w') as outFile: ...@@ -70,11 +70,11 @@ with open(snakemake.output[0], 'w') as outFile:
print("\\pagebreak", file=outFile) print("\\pagebreak", file=outFile)
print("\\", file=outFile) print("\\", file=outFile)
print("", file=outFile) print("", file=outFile)
print("\\small", file=outFile) print("\\tiny", file=outFile)
print("### QV Score", file=outFile) print("### QV Score", file=outFile)
print(tabulate(QV_score_table, headers='keys',tablefmt="pipe", showindex=True), file=outFile) print(tabulate(QV_score_table, headers='keys',tablefmt="pipe", showindex=True), file=outFile)
print("", file=outFile) print("", file=outFile)
print("\\small", file=outFile) print("\\tiny", file=outFile)
print("### Kmer Completeness", file=outFile) print("### Kmer Completeness", file=outFile)
print(tabulate(kmer_completeness_table, headers='keys',tablefmt="pipe", showindex=True), file=outFile) print(tabulate(kmer_completeness_table, headers='keys',tablefmt="pipe", showindex=True), file=outFile)
print("", file=outFile) print("", file=outFile)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment