From edd2ba0acdf765be364d33176edaa63b7f26171b Mon Sep 17 00:00:00 2001 From: Douwe Schulte Date: Mon, 23 Jan 2023 16:52:57 +0100 Subject: [PATCH] Fixed #212 by removing consensus sequence --- assets | 2 +- stitch/Reporting/HTMLReport/Report.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/assets b/assets index 053edf50..20339f96 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit 053edf501bf3a72edffecf604c776eadb269798d +Subproject commit 20339f96918962f6fd22dc2aa4c132b0ec739f9e diff --git a/stitch/Reporting/HTMLReport/Report.cs b/stitch/Reporting/HTMLReport/Report.cs index c6abe766..a491cf2c 100644 --- a/stitch/Reporting/HTMLReport/Report.cs +++ b/stitch/Reporting/HTMLReport/Report.cs @@ -382,7 +382,6 @@ private HtmlBuilder CreateOverview() { html.Open(HtmlTag.h3); html.OpenAndClose(HtmlTag.a, "", CommonPieces.GetAsideLinkHtml(template.MetaData, AsideType.Template, AssetsFolderName)); html.Close(HtmlTag.h3); - html.OpenAndClose(HtmlTag.p, "class='aside-seq'", AminoAcid.ArrayToString(seq.SelectMany(i => i.Sequence))); html.Open(HtmlTag.div, "class='doc-plot'"); html.Add(HTMLGraph.Bargraph(HTMLGraph.AnnotateDOCData(doc), new HtmlGenerator.HtmlBuilder("Depth of Coverage"), null, null, 10, template.ConsensusSequenceAnnotation())); html.Close(HtmlTag.div);