Last active
March 19, 2025 22:55
-
-
Save blahah/51730eb7a36f34e48964c933750aba6d to your computer and use it in GitHub Desktop.
easily find retracted papers in PubMed, using only bionode-ncbi and jq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# you'll need: | |
# - bionode-ncbi (https://github.com/bionode/bionode-ncbi) | |
# - jq (https://github.com/stedolan/jq) | |
# count the number of retracted papers | |
bionode-ncbi search pubmed "\"Retracted Publication\"" \ | |
| jq -c 'select(.pubtype[] | inside("Retracted Publication"))' | |
| wc -l | |
# get DOIs for all the retracted papers | |
# note that not all retracted papers have DOIs - those without DOIs will be left out of this list | |
bionode-ncbi search pubmed "\"Retracted Publication\"" \ | |
| jq -c 'select(.pubtype[] | inside("Retracted Publication")) | .articleids | .[] | select(.idtype == "doi")| .value' \ | |
> pubmed_retracted_DOIs.txt | |
# get all notifications of retraction | |
bionode-ncbi search pubmed "\"Retraction of Publication\"" \ | |
| jq -c 'select(.pubtype[] | inside("Retraction of Publication"))' > pubmed_notifications.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment