i'm able to refine the problem...
Statement of the Problem:
parse Medline/Pubmed file paths on a Unix system in order to finally pass the PMID from each path to a pmid2doi conversion website < http://www.pmid2doi.org/ > ... and output companion DOIs…
(1) parse this link and fetch the pmid;
"/xxxxx/xxxxx/xxxxx/xxxxx/xxxxx/UNC00000000000042/00223468/v45i3/S0022346809003820";
(2) submit a query to http://www.pmid2doi.org/, fetch the return contents and parse the DOI value.
If you simply point your browser to:
http://www.pmid2doi.org/rest/json/doi/18507872
then your browser will display the result in the form:
{"pmid":18507872,"doi":"10.1186/gb-2008-9-5-r89"}
and then you need to parse this JSON format.
Examples of how to do that are at:
http://beerpla.net/2008/03/27/parsing-json-in-perl-by-example-southparkstudioscom-south-park-episodes/
#!/usr/local/bin/perl
use strict;
use warnings;
use 5.010;
use LWP::Simple;
# Fetch line from <DATA>
while ( <DATA> ) {
# PMID is an 8-digit string, surrounded by "/" and "/"
my $pmid = $1 if ( /\/(\d{8})\// );
# Query pmid in http://www.pmid2doi.org/
my $ret = get("http://www.pmid2doi.org/rest/json/doi/$pmid");
unless (defined $ret) {
warn "Failed to get doi for '$pmid': $!\n";
next;
}
# Parse query result, which would be like:
# {"pmid":18507872,"doi":"10.1186/gb-2008-9-5-r89"}
if ( $ret =~ /"doi":"(.*?)"}/ ) {
my $doi = $1;
# Output
say $pmid, "\t=>\t", $doi;
}
else {
say "doi not found in '$ret'";
}
}
exit 0;
__DATA__
/xxxxx/xxxxx/xxxxx/xxxxx/xxxxx/UNC00000000000042/00223468/v45i3/S00223
+46809003820
i'd appreciate any critiques/insights -- thx!
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|