Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove titles #135

Merged
merged 1 commit into from
Oct 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions covigator/dashboard/tabs/dataset_covid19_portal.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 %.
""")
Expand Down Expand Up @@ -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)))
Expand Down