Skip to content

ndi.database.metadata_app.fun.resolveRelatedPublication

 resolveRelatedPublication - Resolve publication information based on DOI.

    S = resolveRelatedPublication(doi) retrieves publication information
    such as title, PubMed ID, and PubMed Central ID using the provided DOI.

    Input:
    - doi (1x1 string): Digital Object Identifier for the publication.

    Output:
    - S (struct): Structure containing publication information.
      - S.doi: Original cleaned DOI.
      - S.title: Title of the publication.
      - S.pmid: PubMed ID of the publication.
      - S.pmcid: PubMed Central ID of the publication.

    Example:
    doi = '10.1523/ENEURO.0073-21.2022';
    publicationInfo = ndi.database.metadata_app.fun.resolveRelatedPublication(doi);