-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get PubMed metadata from large amount of articles #180
Comments
I think I recall the Entrez documentation saying something about this. I don't think they use the same search algorithm but I'm not sure.
This is going to be a big job so you should review NCBI's Entrez API documentation about limits and best time to execute the request. You can get the information with |
Thank you for the help. I did find a way around this problem for now because both my query and the amount of data were too large. The query problem I solved by dividing it in three parts, while the too much data was solved using an lapply (or can be solved with a for loop also of course). There does seem to be a bug in the PMID retrieval because it also seems to extract PMID numbers from the references in the paper, but in my case it was always the first one that was the correct one.
I also contacted NCBI support for the problem of the discrepancy between the online results and the coding results and this was their answer:
They propose to try and use their test server, however I have no idea of how to incorporate this in rentrez... |
Glad to hear you got the info you needed. To try the NCBI test server with |
I have a few questions regarding this tool. I have a query that results in 124 575 hits with
pubmed_search <- entrez_search(db="pubmed",term=new_query,use_history=TRUE)
However, this number is different compared to when I put the same query in the online NCBI.
Secondly, I was wondering how I can import all the data from these papers (First name, PMID number, DOI,...) and put these results in a data table.
Thanks for the help!
The text was updated successfully, but these errors were encountered: