From 40f4e6012916e9cd7af0df0433fa565d944a10c5 Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Fri, 12 Apr 2024 15:57:33 -0400 Subject: [PATCH] fix(utils): correctly handle katsu experiment stats --- bento_beacon/utils/beacon_response.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bento_beacon/utils/beacon_response.py b/bento_beacon/utils/beacon_response.py index 836d8d79..4cc49d9f 100644 --- a/bento_beacon/utils/beacon_response.py +++ b/bento_beacon/utils/beacon_response.py @@ -44,14 +44,14 @@ def add_overview_stats_to_response(): def package_biosample_and_experiment_stats(stats): phenopacket_dts_stats = stats.get("phenopacket", {}).get("data_type_specific", {}) - experiment_stats = stats.get("experiment", {}) + experiment_stats = stats.get("experiment", {}).get("data_type_specific", {}).get("experiments", {}) biosamples = phenopacket_dts_stats.get("biosamples", {}) biosamples_count = biosamples.get("count", 0) sampled_tissue = biosamples.get("sampled_tissue", {}) experiments_count = experiment_stats.get("count", 0) - experiment_type = experiment_stats.get("data_type_specific", {}).get("experiment_type", {}) + experiment_type = experiment_stats.get("experiment_type", {}) # convert to bento_public response format sampled_tissue_data = [{"label": key, "value": value} for key, value in sampled_tissue.items()]