From a8059e5b037c7dde8b572dc92b16c7b8abdc9eca Mon Sep 17 00:00:00 2001 From: "sofia.haglund" Date: Thu, 8 Oct 2020 15:23:28 +0200 Subject: [PATCH 1/2] fixed contact mail issue --- multiqc_ngi/templates/ngi/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multiqc_ngi/templates/ngi/header.html b/multiqc_ngi/templates/ngi/header.html index eabb8c1..a036369 100644 --- a/multiqc_ngi/templates/ngi/header.html +++ b/multiqc_ngi/templates/ngi/header.html @@ -42,7 +42,7 @@

{% if report.ngi['ngi_header'] %}
- {{ '
Contact E-mail:
'+report.ngi['contact_email']+'
' if 'contact_email' in report.ngi }} + {{ '
Contact E-mail:
'+report.ngi['contact_email']+'
' if 'contact_email' in report.ngi and report.ngi['contact_email'] is not None}} {{ '
Application Type:
'+report.ngi['application']+'
' if 'application' in report.ngi }} {{ '
Library Method:
'+report.ngi['libprep']+'
' if 'libprep' in report.ngi }} {{ '
Sequencing Platform:
'+report.ngi['sequencing_platform']+'
' if 'sequencing_platform' in report.ngi }} From cd2588b07f2aff0369fc5c8760424dbe52acf08f Mon Sep 17 00:00:00 2001 From: "sofia.haglund" Date: Fri, 9 Oct 2020 14:02:28 +0200 Subject: [PATCH 2/2] typo fix --- multiqc_ngi/templates/ngi/header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multiqc_ngi/templates/ngi/header.html b/multiqc_ngi/templates/ngi/header.html index a036369..0291e7d 100644 --- a/multiqc_ngi/templates/ngi/header.html +++ b/multiqc_ngi/templates/ngi/header.html @@ -42,7 +42,7 @@

{% if report.ngi['ngi_header'] %}
- {{ '
Contact E-mail:
'+report.ngi['contact_email']+'
' if 'contact_email' in report.ngi and report.ngi['contact_email'] is not None}} + {{ '
Contact E-mail:
'+report.ngi['contact_email']+'
' if 'contact_email' in report.ngi and report.ngi['contact_email'] is not none}} {{ '
Application Type:
'+report.ngi['application']+'
' if 'application' in report.ngi }} {{ '
Library Method:
'+report.ngi['libprep']+'
' if 'libprep' in report.ngi }} {{ '
Sequencing Platform:
'+report.ngi['sequencing_platform']+'
' if 'sequencing_platform' in report.ngi }}