diff options
author | Frederick Muriuki Muriithi | 2023-10-25 11:28:35 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-10-25 11:28:35 +0300 |
commit | 051d7b57ca7b36b6e2624e350768f16fb898d01f (patch) | |
tree | 6c70cbe750425f706154288930d2fffbc4ce9e6b /gn3 | |
parent | a57f96724a0f9626f1aaea7a26eeb0ddc800269e (diff) | |
download | genenetwork3-051d7b57ca7b36b6e2624e350768f16fb898d01f.tar.gz |
case-attribute: Bug: List ALL case-attribute values
Fix bug where only one case-attribute value was returned.
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/case_attributes.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gn3/case_attributes.py b/gn3/case_attributes.py index c964553..e3e6dc6 100644 --- a/gn3/case_attributes.py +++ b/gn3/case_attributes.py @@ -154,6 +154,7 @@ def __by_strain__(accumulator, item): } } return { + **accumulator, strain_name: { **{ key: value for key,value in item.items() |