Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was writing an rspec for a Ruby script that includes converting from PMid to PMCid, using this api: http://www.pubmedcentral.nih.gov/utils/entrezpmc.cgi

Calling it like this works fine: http://www.pubmedcentral.nih.gov/utils/entrezpmc.cgi?1279666

PubMedId             => PMCId               
1279666              => 50267    

But I was writing a spec and wanted a failing call, like when someone passes in a string instead of a number. So I tried this: http://www.pubmedcentral.nih.gov/utils/entrezpmc.cgi?foobar

PubMedId             => PMCId               
foobar               => 320759,320760,322131,322132,323033,323035,323115,323117...[599027 total PMCids]

This returns 599027 PMCids!

I just checked the reverse service http://www.pubmedcentral.nih.gov/utils/pmcentrez.cgi?50267

PMCId                => PubMedId            
50267                => 1279666  

http://www.pubmedcentral.nih.gov/utils/pmcentrez.cgi?foobar

PMCId                => PubMedId            
foobar               =>

Looks OK.

Does anyone know if this is the correct (and documented) behaviour for the PMid to PMCid service?

Interestingly, when I reverse looked-up some of the PMCids returned by 'foobar', they are all showing a matching PMid of zero: http://www.pubmedcentral.nih.gov/utils/pmcentrez.cgi?320760,320759,320760,322131,322132,323033,323035,323115,323117

PMCId                => PubMedId            
320760               => 0                   
320759               => 0                   
320760               => 0                   
322131               => 0                   
322132               => 0                   
323033               => 0                   
323035               => 0                   
323115               => 0                   
323117               => 0   
share|improve this question
Giving it any string appears to make it return all ~599000 results, but in a randomly determined order. – David Robinson Jan 23 at 18:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.