Skip to content

Commit

Permalink
Fixed case check
Browse files Browse the repository at this point in the history
  • Loading branch information
victorskl committed Sep 19, 2024
1 parent 5f31dc4 commit 4e607dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data_portal/models/s3object.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def get_subject_cttsov2_results(self, subject_id: str, **kwargs) -> QuerySet:
# Get both ctTSO and ctTSOv2 libraries of the Subject
subject_meta_list: List[LabMetadata] = LabMetadata.objects.filter(
subject_id=subject_id,
assay__in=[str(LabMetadataAssay.CT_TSO_V2.value).lower(), str(LabMetadataAssay.CT_TSO.value).upper()],
assay__in=[LabMetadataAssay.CT_TSO_V2.value, LabMetadataAssay.CT_TSO.value],
).all()

cttsov2_libraries: List[str] = list()
Expand Down

0 comments on commit 4e607dd

Please sign in to comment.