When an author enters their article title, the system fetches search hits from PubMed EUTILS and returns the first hit for which the input is contained in the search hit's title.
An edge case is published corrections, which contain the full title. Example: ROCK-mediated selective activation of PERK signalling causes fibroblast reprogramming and tumour progression through a CRELD2-dependent mechanism which returns the top hit Publisher Correction: ROCK-mediated selective activation of PERK signalling causes fibroblast reprogramming and tumour progression through a CRELD2-dependent mechanism
Idea: Filter raw EUTILS ESEARCH results
The raw article data contains a PublicationType attribute which we can use to include/exclude results.
There is a huge list of possible PublicationTypes listed here: https://www.nlm.nih.gov/mesh/pubtypes.html so I'm more inclined to just exclude certain ones that seem problematic, i.e. <PublicationType UI="D016425">Published Erratum</PublicationType>
Refs #845
When an author enters their article title, the system fetches search hits from PubMed EUTILS and returns the first hit for which the input is contained in the search hit's title.
An edge case is published corrections, which contain the full title. Example:
ROCK-mediated selective activation of PERK signalling causes fibroblast reprogramming and tumour progression through a CRELD2-dependent mechanismwhich returns the top hitPublisher Correction: ROCK-mediated selective activation of PERK signalling causes fibroblast reprogramming and tumour progression through a CRELD2-dependent mechanismIdea: Filter raw EUTILS ESEARCH results
The raw article data contains a PublicationType attribute which we can use to include/exclude results.
There is a huge list of possible PublicationTypes listed here: https://www.nlm.nih.gov/mesh/pubtypes.html so I'm more inclined to just exclude certain ones that seem problematic, i.e.
<PublicationType UI="D016425">Published Erratum</PublicationType>Refs #845