Learn R Programming

easyPubMed (version 3.1.6)

get_epm_uilist: Get PubMed Record Identifiers from an easyPubMed Object.

Description

Request the list of unique PubMed Record Identifiers that are contained in an `easyPubMed` object. This function is a wrapper function calling the `getEPMUilist()` method. This function returns contents from the `uilist` slot.

Usage

get_epm_uilist(x)

Value

a character vector including a list of unique record identifiers from an `easyPubMed` object.

Arguments

x

An `easyPubMed` object.

Author

Damiano Fantini, damiano.fantini@gmail.com

References

https://www.data-pulse.com/dev_site/easypubmed/

Examples

Run this code
# Note: a time limit can be set in order to kill the operation when/if 
# the NCBI/Entrez server becomes unresponsive.
setTimeLimit(elapsed = 4.9)
try({
  x <- epm_query(query_string = 'Damiano Fantini[AU] AND "2018"[PDAT]')
  x <- epm_fetch(x)
  get_epm_uilist(x)
}, silent = TRUE)
setTimeLimit(elapsed = Inf)

 

Run the code above in your browser using DataLab