diff options
| author | zsloan | 2024-11-14 21:06:24 +0000 |
|---|---|---|
| committer | zsloan | 2024-11-14 21:06:31 +0000 |
| commit | 12492bf5ceb1ed014dbab8738d5517a809396c4a (patch) | |
| tree | 95f10476e00d1dff399f68b0d4575144652536e2 | |
| parent | 5ea318ef0dc5e0e54801d5d27aa9d55c168cabb0 (diff) | |
| download | genenetwork3-12492bf5ceb1ed014dbab8738d5517a809396c4a.tar.gz | |
Fix case attribute query
| -rw-r--r-- | gn3/case_attributes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/case_attributes.py b/gn3/case_attributes.py index 9baff1e..1e74403 100644 --- a/gn3/case_attributes.py +++ b/gn3/case_attributes.py @@ -186,7 +186,7 @@ def __case_attribute_values_by_inbred_set__( "ON ca.CaseAttributeId=caxrn.CaseAttributeId " "INNER JOIN Strain AS s " "ON caxrn.StrainId=s.Id " - "WHERE ca.InbredSetId=%(inbredset_id)s " + "WHERE caxrn.InbredSetId=%(inbredset_id)s " "ORDER BY StrainName", {"inbredset_id": inbredset_id}) return tuple( |
