From bf9734477a411fc83d6f0b736856267c3b413490 Mon Sep 17 00:00:00 2001 From: Pablo Riesgo-Ferreiro Date: Tue, 24 Oct 2023 08:52:06 +0000 Subject: [PATCH] remove titles --- covigator/dashboard/tabs/dataset_covid19_portal.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/covigator/dashboard/tabs/dataset_covid19_portal.py b/covigator/dashboard/tabs/dataset_covid19_portal.py index c37ac7df..0e820755 100644 --- a/covigator/dashboard/tabs/dataset_covid19_portal.py +++ b/covigator/dashboard/tabs/dataset_covid19_portal.py @@ -134,8 +134,6 @@ def get_plot_coverage(queries: Queries): return [ dcc.Graph(figure=fig, config=PLOTLY_CONFIG), dcc.Markdown(""" - **Horizontal coverage (%)** - Horizontal coverage is estimated as the sequence length divided by the reference genome length. Some samples have thus an horizontal coverage larger than 100 %. """) @@ -163,8 +161,6 @@ def get_plot_bad_bases_ratio(queries: Queries, count_samples): return [ dcc.Graph(figure=fig, config=PLOTLY_CONFIG), dcc.Markdown(""" - **Ratio of N and ambiguous bases (%)** - The ratio of N and ambiguous bases over the whole sequence length measures the quality of the assembly sequence. {} % of samples have a ratio <= 5 %. """.format(round(float(data[data["bad_bases_ratio"] <= 5]["count"].sum()) / count_samples, 1)))