diff --git a/microsetta_interface/templates/new_results_page.jinja2 b/microsetta_interface/templates/new_results_page.jinja2 index b4c493c3..3654aacd 100644 --- a/microsetta_interface/templates/new_results_page.jinja2 +++ b/microsetta_interface/templates/new_results_page.jinja2 @@ -1036,7 +1036,7 @@ } // We override the default alpha_metric from state for this page. - let alpha_metric = "observed_features" + let alpha_metric = "shannon" for (let key in POST_DATA) { $.ajax( { @@ -1048,7 +1048,7 @@ data: JSON.stringify(POST_DATA[key]), contentType: "application/json", success: function (data) { - let display = data["group_summary"]["median"] + let display = Math.round(data["group_summary"]["median"] * 100)/100; $(SELECTORS[key]).text(display).removeClass("spinner-grow spinner-grow-sm"); } }).fail(function (result, textStatus, errorThrown) { @@ -1064,7 +1064,7 @@ method: "GET", contentType: "application/json", success: function (data) { - let display = data["data"] + let display = Math.round(data["data"] * 100)/100; $("#diversity_in_sample").text(display).removeClass("spinner-grow spinner-grow-sm"); } }).fail(function (result, textStatus, errorThrown) { @@ -1199,15 +1199,15 @@ END BLOCK COMMENTED OUT WHILE TAXA VIOLIN IS HIDDEN */ } - function updateObservedOTUs(state) { - var us_text = document.getElementById('average-american-observed-otus'); - var hadza_text = document.getElementById('average-hadza-observed-otus'); + function updateObservedAverages(state) { + var us_text = document.getElementById('average-american-observed-average'); + var hadza_text = document.getElementById('average-hadza-observed-average'); if (state.dataset_type.value === 'WGS') { - us_text.innerText = '107'; - hadza_text.innerText = '129'; + us_text.innerText = '5.31'; + hadza_text.innerText = '6.30'; } else if (state.dataset_type.value === '16S') { - us_text.innerText = '93'; - hadza_text.innerText = '132'; + us_text.innerText = '4.47'; + hadza_text.innerText = '5.20'; } } @@ -1340,7 +1340,7 @@ updateDatasetDetails(state); getMicrobiomeMapsRasterizedPlots(state); - updateObservedOTUs(state); + updateObservedAverages(state); }, state.dataset_input); refreshDatasets(state); @@ -1390,7 +1390,7 @@
- {{ _('How many kinds of microbes were in your sample? Check out your') }} {{ _('Diversity') }}. + {{ _('How diverse is your microbiome? Check out your') }} {{ _('Diversity') }}.
- {{ _('Recent estimates suggest hundreds of billions of types of microbes live on earth. This number dwarfs the meager 2 million different kinds of animals and plants discovered on the planet.') }} + {{ _('This section provides insights into your microbiome diversity and how it compares to others\'.') }}
- {{ _('If we were to randomly select a set number of microbial DNA sequences from a stool sample, we would find that the average American has FILLIN different types of microbes, which is lower than we find in people living a more hunter-gatherer lifestyle, like the FILLIN we find in samples from the Hadza people of Tanzania.') }} + {{ _('How do we calculate your diversity value?') }}
- {{ _('The number of microbes found in your sample can be very close or vastly different from this average, and it doesn\'t necessarily mean something is right or wrong with you. We are all different, and this number is affected by many different factors.') }} + {{ _('Diversity can be measured in a lot of different ways. We measure it by first taking the DNA sequences from your sample and figuring out which Bacteria and Archaea they may have come from. This produces a good estimate of how many of each kind of microbe you have. The measure we use, called Shannon\'s index, takes into account how many different kinds of microbes make up your gut community (also known as richness) and how relatively abundant each of those microbes are (also known as evenness).') }} +
++ {{ _('This number isn\'t exact for many reasons. However, because it\'s calculated in the same way for every sample in our dataset, it provides insight into how your microbial diversity compares to others\'. For example, the average diversity value for people living in the US in our dataset is FILLIN, which is lower than we find in people living a more hunter-gatherer lifestyle like the Hadza people of Tanzania, who have an average value of FILLIN. ') }} +
++ {{ _('What does this number mean for my health?') }} +
++ {{ _('This number reflects the variety of Bacteria and Archaea observed in your fecal sample at the time of testing. Currently, there\'s no standard for how gut microbiome diversity relates to health. While some studies suggest a potential link between higher diversity and specific health benefits, that is not true universally and more research is needed to understand the relationship. For example, it may be that the specific microbes present are more important than having many different types of microbes.') }} +
++ {{ _('It\'s important to remember that everyone\'s gut microbiome is unique and changes over time. If your score differs from the average, it doesn\'t necessarily indicate a health concern.') }}
- {{ _('The number of microbes listed here might be different from what was reported as your Diversity because of the way microbes are grouped according to their taxonomy (i.e. names). There are likely many species of microbes in your sample that are all grouped in the same genus.') }} -
-