Skip to content

Commit

Permalink
Show PSICQUIC
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosribas committed Feb 27, 2024
1 parent 36ebca7 commit 0be30aa
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions backend/sequence/api/xref/viewsets.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ def get_queryset(self):

xrefs = (
Xref.objects.filter(deleted="N", upi=upi)
.exclude(accession__accession__startswith="PSICQUIC")
.select_related("db", "accession", "created", "last")
.order_by("db")
)
Expand All @@ -38,7 +37,6 @@ def get_queryset(self):
if not xrefs.exists():
xrefs = (
Xref.objects.filter(deleted="Y", upi=upi)
.exclude(accession__accession__startswith="PSICQUIC")
.select_related("db", "accession", "created", "last")
.order_by("db")
)
Expand Down

0 comments on commit 0be30aa

Please sign in to comment.