Which tool to use to get all citations of a pmid paper?
1
0
Entering edit mode
5.6 years ago
Saad Khan ▴ 440

Hi,

I have thousands of pmid which are associated with a disease. For each pmid I need to find how many times it has been cited in a publication in order to assign importance to that particular pmid. I was wondering what available methods/tools are there that can give me this information. I have tried to dabble with entrez efetch module of biopython. As of now I am not able to get relevant results. I would appreciate any pointers in this regard.

Thanks!

entrez eutils efetch • 1.3k views
ADD COMMENT
0
Entering edit mode
5.6 years ago
h.mon 35k

Using the E-Utils command line tools (modified from EDirect_EUtils_API_Cookbook):

esearch -db pubmed -query 25229216 | elink -name pubmed_pmc_refs -target pmc \
  | efetch -format docsum \
  | xtract -pattern DocumentSummary -element Title -element Source,Volume,Pages,PubDate -block ArticleId \
    -if "IdType" -equals pmcid -element Value

Retrieving only PMC ids of citing articles:

esearch -db pubmed -query 22515591 | elink -name pubmed_pmc_refs -target pmc \
  | efetch -format docsum \
  | xtract -pattern DocumentSummary -block ArticleId -if "IdType" -equals pmcid -element Value
ADD COMMENT

Login before adding your answer.

Traffic: 2503 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6