Given the following DOI, use pubmed database to fill in the following information:
DOI: 10.1111/nyas.13259
Search entrez for a topic covered by this class.
Pick a data base in entrez and find the available qualifiers entrez_db_searchable("sra")
. You can look up the search fields and qualifiers here: https://www.ncbi.nlm.nih.gov/entrez/query/static/help/Summary_Matrices.html#Search_Fields_and_Qualifiers. Using the qualifiers perform a search on a topic of your choice. Explore the object that R returns.
Now, perform a Mesh search. The example we used in class was:
entrez_search(db = "pubmed",
term = "(vivax malaria[MeSH]) AND (folic acid antagonists[MeSH])")
## Entrez search result with 12 hits (object contains 12 IDs and no web_history object)
## Search term (as translated): "malaria, vivax"[MeSH Terms] AND "folic acid antag ...
Try different Mesh terms in pubmed. You can look up Mesh terms here http://www.ncbi.nlm.nih.gov/mesh or query the Mesh
databse with the term: entrez_search(db="mesh", term =...)
.