Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specific error for curation tracker duplicate DOIs during release #380

Merged
merged 2 commits into from
Jul 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions release/scripts/run_release_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,8 @@ def update_curation_tracker():
curation_pub.save()
except CurationPublicationAnnotation.DoesNotExist:
print(f"Can't find study in Curation Tracker to add the new PGP ID '{pgp_id}'")
except CurationPublicationAnnotation.MultipleObjectsReturned:
print(f"DOI '{publication.doi}' is duplicated in the Curation Tracker. It won't be updated ({pgp_id}).")

# Old released entries which are still missing the PubMed ID
# Use the PGS Catalog data to update the study information in the Curation Tracker
Expand Down
Loading