Skip to content

Commit

Permalink
Fix report formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cjw85 committed Jun 17, 2021
1 parent 515914c commit 55e68f6
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions bin/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ def main():
section = report_doc.add_section()
section.markdown('''
### Read Quality control
This section displays basic QC metrics indicating read data quality.
''')
# read length summary
Expand Down Expand Up @@ -180,7 +181,9 @@ def main():

section = report_doc.add_section()
section.markdown("""
### Artic Analysis status The panel below lists samples which failed to produce
### Artic Analysis status
The panel below lists samples which failed to produce
results from the primary ARTIC analysis. Samples not listed here were analysed
successfully, but may still contain inconclusive or invalid results. See the
following sections for further indications of failed or inconclusive results.
Expand Down Expand Up @@ -208,7 +211,9 @@ def main():
if not args.hide_coverage:
section = report_doc.add_section()
section.markdown('''
### Genome coverage Plots below indicate depth of coverage from data used
### Genome coverage
Plots below indicate depth of coverage from data used
within the Artic analysis coloured by amplicon pool. Variant filtering during
the ARTIC analysis mandates a minimum coverage of at least {}X at
variant/genotyping loci for a call to be made.
Expand Down Expand Up @@ -345,6 +350,7 @@ def main():
section = report_doc.add_section()
section.markdown('''
### Software versions
The table below highlights versions of key software used within the analysis.
''')
req = [
Expand All @@ -358,6 +364,7 @@ def main():
section = report_doc.add_section()
section.markdown('''
### Workflow parameters
The table below highlights values of the main parameters used in this analysis.
''')
df_params = load_params(args.params)
Expand Down

0 comments on commit 55e68f6

Please sign in to comment.