<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Depth-First: Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL</title>
    <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>Walking the Web of Chemical Informatics</description>
    <item>
      <title>Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL</title>
      <description>&lt;p&gt;&lt;a href="http://flickr.com/photos/ecstaticist/1340787730/"&gt;&lt;img src="http://depth-first.com/demo/20080506/web.jpg" align="right"&gt;&lt;/img&gt;&lt;/a&gt;Science is in the middle of a transition from print to the internet as the primary medium of communication. This transition, although a boon for many scientists, creates a host of problems for those dealing with scientific information. For example, how would you interconvert a &lt;a href="http://www.doi.org/"&gt;DOI&lt;/a&gt; and its corresponding bibliographic reference?&lt;/p&gt;

&lt;p&gt;A previous Depth-First article discussed &lt;a href="http://depth-first.com/articles/2007/06/27/easily-convert-publisher-urls-and-dois-to-bibliographical-citations-synthesis-synlett-ruby-and-mechanize"&gt;a screen-scraping method&lt;/a&gt; as one solution. Unfortunately, this system relies on an intimate understanding of how individual publishers' Websites work, requires a different implementation for each publisher, and can break at any time without warning.&lt;/p&gt;

&lt;p&gt;This article discusses a far more robust solution to the problem of interconverting bibliographic references and DOIs.&lt;/p&gt;

&lt;h4&gt;Background: OpenURL and CrossRef&lt;/h4&gt;

&lt;p&gt;&lt;a href="http://www.crossref.org/"&gt;CrossRef&lt;/a&gt; is the official &lt;a href="http://www.doi.org/"&gt;DOI&lt;/a&gt; link registration agency for scholarly and professional publications. One of the less well-known services offered by CrossRef is a free, Web-based &lt;a href="http://www.crossref.org/openurl_info.html"&gt;bidirectional DOI/bibliographic reference converter&lt;/a&gt; based on &lt;a href="http://en.wikipedia.org/wiki/OpenURL"&gt;OpenURL&lt;/a&gt;.&lt;/p&gt;

&lt;h4&gt;A Simple Ruby Library&lt;/h4&gt;

&lt;p&gt;The following Ruby library is all we need to begin using CrossRef and OpenURL:&lt;/p&gt;

&lt;div class="typocode"&gt;&lt;pre&gt;&lt;code class="typocode_ruby "&gt;&lt;span class="ident"&gt;require&lt;/span&gt; &lt;span class="punct"&gt;'&lt;/span&gt;&lt;span class="string"&gt;rubygems&lt;/span&gt;&lt;span class="punct"&gt;'&lt;/span&gt;
&lt;span class="ident"&gt;require&lt;/span&gt; &lt;span class="punct"&gt;'&lt;/span&gt;&lt;span class="string"&gt;hpricot&lt;/span&gt;&lt;span class="punct"&gt;'&lt;/span&gt;
&lt;span class="ident"&gt;require&lt;/span&gt; &lt;span class="punct"&gt;'&lt;/span&gt;&lt;span class="string"&gt;open-uri&lt;/span&gt;&lt;span class="punct"&gt;'&lt;/span&gt;

&lt;span class="keyword"&gt;module &lt;/span&gt;&lt;span class="module"&gt;DOI&lt;/span&gt;
  &lt;span class="comment"&gt;# Convert a doi into a bibliographic reference.&lt;/span&gt;
  &lt;span class="keyword"&gt;def &lt;/span&gt;&lt;span class="method"&gt;biblio_for&lt;/span&gt; &lt;span class="ident"&gt;doi&lt;/span&gt;
    &lt;span class="ident"&gt;doc&lt;/span&gt; &lt;span class="punct"&gt;=&lt;/span&gt; &lt;span class="constant"&gt;Hpricot&lt;/span&gt;&lt;span class="punct"&gt;(&lt;/span&gt;&lt;span class="ident"&gt;open&lt;/span&gt;&lt;span class="punct"&gt;(&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;http://www.crossref.org/openurl/?id=doi:&lt;span class="expr"&gt;#{doi}&lt;/span&gt;&amp;amp;noredirect=true&amp;amp;pid=ourl_sample:sample&amp;amp;format=unixref&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;))&lt;/span&gt;

    &lt;span class="ident"&gt;journal&lt;/span&gt; &lt;span class="punct"&gt;=&lt;/span&gt; &lt;span class="punct"&gt;(&lt;/span&gt;&lt;span class="ident"&gt;doc&lt;/span&gt;&lt;span class="punct"&gt;/&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;abbrev_title&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;).&lt;/span&gt;&lt;span class="ident"&gt;inner_html&lt;/span&gt;
    &lt;span class="ident"&gt;year&lt;/span&gt; &lt;span class="punct"&gt;=&lt;/span&gt; &lt;span class="punct"&gt;(&lt;/span&gt;&lt;span class="ident"&gt;doc&lt;/span&gt;&lt;span class="punct"&gt;/&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;journal_issue/publication_date/year&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;).&lt;/span&gt;&lt;span class="ident"&gt;inner_html&lt;/span&gt;
    &lt;span class="ident"&gt;volume&lt;/span&gt; &lt;span class="punct"&gt;=&lt;/span&gt; &lt;span class="punct"&gt;(&lt;/span&gt;&lt;span class="ident"&gt;doc&lt;/span&gt;&lt;span class="punct"&gt;/&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;journal_issue/journal_volume/volume&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;).&lt;/span&gt;&lt;span class="ident"&gt;inner_html&lt;/span&gt;
    &lt;span class="ident"&gt;number&lt;/span&gt; &lt;span class="punct"&gt;=&lt;/span&gt; &lt;span class="punct"&gt;(&lt;/span&gt;&lt;span class="ident"&gt;doc&lt;/span&gt;&lt;span class="punct"&gt;/&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;journal_issue/issue&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;).&lt;/span&gt;&lt;span class="ident"&gt;inner_html&lt;/span&gt;
    &lt;span class="ident"&gt;first_page&lt;/span&gt; &lt;span class="punct"&gt;=&lt;/span&gt; &lt;span class="punct"&gt;(&lt;/span&gt;&lt;span class="ident"&gt;doc&lt;/span&gt;&lt;span class="punct"&gt;/&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;pages/first_page&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;).&lt;/span&gt;&lt;span class="ident"&gt;inner_html&lt;/span&gt;
    &lt;span class="ident"&gt;last_page&lt;/span&gt; &lt;span class="punct"&gt;=&lt;/span&gt; &lt;span class="punct"&gt;(&lt;/span&gt;&lt;span class="ident"&gt;doc&lt;/span&gt;&lt;span class="punct"&gt;/&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;pages/last_page&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;).&lt;/span&gt;&lt;span class="ident"&gt;inner_html&lt;/span&gt;

    &lt;span class="punct"&gt;&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;&lt;span class="expr"&gt;#{journal}&lt;/span&gt; &lt;span class="expr"&gt;#{year}&lt;/span&gt;, &lt;span class="expr"&gt;#{volume}&lt;/span&gt;(&lt;span class="expr"&gt;#{number}&lt;/span&gt;) &lt;span class="expr"&gt;#{first_page}&lt;/span&gt;-&lt;span class="expr"&gt;#{last_page}&lt;/span&gt;&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;&lt;/span&gt;
  &lt;span class="keyword"&gt;end&lt;/span&gt;

  &lt;span class="comment"&gt;# Convert a bibliographic reference into a DOI.&lt;/span&gt;
  &lt;span class="keyword"&gt;def &lt;/span&gt;&lt;span class="method"&gt;doi_for&lt;/span&gt; &lt;span class="ident"&gt;journal&lt;/span&gt;&lt;span class="punct"&gt;,&lt;/span&gt; &lt;span class="ident"&gt;year&lt;/span&gt;&lt;span class="punct"&gt;,&lt;/span&gt; &lt;span class="ident"&gt;volume&lt;/span&gt;&lt;span class="punct"&gt;,&lt;/span&gt; &lt;span class="ident"&gt;issue&lt;/span&gt;&lt;span class="punct"&gt;,&lt;/span&gt; &lt;span class="ident"&gt;page&lt;/span&gt;
    &lt;span class="ident"&gt;doc&lt;/span&gt; &lt;span class="punct"&gt;=&lt;/span&gt; &lt;span class="constant"&gt;Hpricot&lt;/span&gt;&lt;span class="punct"&gt;(&lt;/span&gt;&lt;span class="ident"&gt;open&lt;/span&gt;&lt;span class="punct"&gt;(&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;http://www.crossref.org/openurl/?title=&lt;span class="expr"&gt;#{journal.gsub(/ /, '%20')}&lt;/span&gt;&amp;amp;volume=&lt;span class="expr"&gt;#{volume}&lt;/span&gt;&amp;amp;issue=&lt;span class="expr"&gt;#{issue}&lt;/span&gt;&amp;amp;spage=&lt;span class="expr"&gt;#{page}&lt;/span&gt;&amp;amp;date=&lt;span class="expr"&gt;#{year}&lt;/span&gt;&amp;amp;pid=ourl_sample:sample&amp;amp;redirect=false&amp;amp;format=unixref&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;))&lt;/span&gt;

   &lt;span class="punct"&gt;(&lt;/span&gt;&lt;span class="ident"&gt;doc&lt;/span&gt;&lt;span class="punct"&gt;/&amp;quot;&lt;/span&gt;&lt;span class="string"&gt;doi&lt;/span&gt;&lt;span class="punct"&gt;&amp;quot;).&lt;/span&gt;&lt;span class="ident"&gt;inner_html&lt;/span&gt;
  &lt;span class="keyword"&gt;end&lt;/span&gt;
&lt;span class="keyword"&gt;end&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;

&lt;p&gt;This code makes use of the excellent Ruby HTML parser library &lt;a href="http://code.whytheluckystiff.net/hpricot"&gt;Hpricot&lt;/a&gt;.&lt;/p&gt;

&lt;h4&gt;Testing the Library&lt;/h4&gt;

&lt;p&gt;Saving the Ruby code to a file named &lt;strong&gt;doi.rb&lt;/strong&gt;, we can test it using the interactive Ruby shell:&lt;/p&gt;

&lt;div class="console"&gt;
&lt;pre&gt;
$ irb
irb(main):001:0&gt; require 'doi'
=&gt; true
irb(main):002:0&gt; include DOI
=&gt; Object
irb(main):003:0&gt; biblio_for "10.1021/cr00032a009"
=&gt; "Chem. Rev. 1994, 94(8) 2483-2547"
irb(main):004:0&gt; doi_for "Chem. Rev.", 1994, 94, 8, 2483
=&gt; "10.1021/cr00032a009"
&lt;/pre&gt;
&lt;/div&gt;

&lt;p&gt;Notice how the journal abbreviation &lt;em&gt;Chem. Rev.&lt;/em&gt; was used; we'd get the same result if we used &lt;em&gt;Chemical Reviews&lt;/em&gt;.&lt;/p&gt;

&lt;p&gt;Of course, the implementation described here could be refined a lot. With a DOI, it's trivial to &lt;a href="http://dx.doi.org/10.1021/cr00032a009"&gt;construct a URL to the example paper&lt;/a&gt;. But we could take it further than that. With some carefully crafted regular expressions, our &lt;tt&gt;doi_for&lt;/tt&gt; method could accept a freeform bibliographical citation rather than separately identified fragments. From there we might start to think about creating living HTML and/or Wikis from old PDFs and Word documents.&lt;/p&gt;

&lt;p&gt;With a little creative thought, other possibilities are well within reach.&lt;/p&gt;

&lt;h4&gt;Caveat&lt;/h4&gt;

&lt;p&gt;Before extensively experimenting with CrossRef's OpenURL system, you might want to &lt;a href="http://www.crossref.org/requestaccount/"&gt;sign up for a free account&lt;/a&gt;. CrossRef is understandably interested in tracking usage and this is their way to do it.&lt;/p&gt;

&lt;h4&gt;Conclusions&lt;/h4&gt;

&lt;p&gt;DOIs and traditional bibliographical citations now coexist in a variety of settings, from literature citation managers to journals themselves. Using CrossRef, OpenURL and a little bit of code, it's now possible to make a great deal more sense of it all.&lt;/p&gt;

&lt;p&gt;Harvesting bibliographical citations must be one of the least sexy topics in cheminformatics. But as Google demonstrated (building on the approach taken by &lt;a href="http://scientific.thomson.com/products/sci/"&gt;&lt;em&gt;Science Citation Index&lt;/em&gt;&lt;/a&gt;), cataloging citation behavior leads to a unique and highly productive way to view many tough problems. Future articles will discuss how this might apply to cheminformatics.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Image Credit: &lt;a href="http://flickr.com/photos/ecstaticist/"&gt;ecstaticist&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 06 May 2008 15:50:00 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:8eafadd6-bf10-4e65-ac43-2a3bf37de457</guid>
      <author>Rich Apodaca</author>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl</link>
      <category>Tools</category>
      <category>openurl</category>
      <category>crossref</category>
      <category>ruby</category>
      <category>hpricot</category>
      <category>sciencecitationindex</category>
      <category>citations</category>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by baoilleach</title>
      <description>&lt;p&gt;(With title...load test data)&lt;/p&gt;

2 CrossRef is missing the title.

10 CrossRef is not sure of the journal name

17 CrossRef thinks there only one author, and has decided to go for the full journal name this time.

19 PubMed doesn't believe in a third initial.

27 Same journal, and CrossRef knows there are two authors, but doesn't know the second initial.</description>
      <pubDate>Tue, 13 May 2008 09:27:26 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:4f335d8a-da54-4117-bd30-9b8a2be9fddb</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-553</link>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by Richard Apodaca</title>
      <description>&lt;p&gt;Hello Euan, thanks for the link - Webcite looks like it could be nicely complementary to CrossRef/OpenURL. I know very little about PHP - does the citation fetcher use &lt;a href="http://depth-first.com/articles/2007/06/27/easily-convert-publisher-urls-and-dois-to-bibliographical-citations-synthesis-synlett-ruby-and-mechanize" rel="nofollow"&gt;screen-scraping&lt;/a&gt; or some other method for the primary retrieval?&lt;/p&gt;

&lt;p&gt;Noel, the reference checker works for me now. How can you use it to find limitations in CrossRef metadata? For example, after loading the test data, see how it corrected the misspellings, but the metadata looks fine as far as I can tell.&lt;/p&gt;</description>
      <pubDate>Mon, 12 May 2008 08:30:42 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:015e1081-eb64-49b7-8e6c-9c15e30180c0</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-548</link>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by baoilleach</title>
      <description>&lt;p&gt;My hoster (RedBrick) is back up so the ACS reference checker linked above should now work fine...&lt;/p&gt;</description>
      <pubDate>Mon, 12 May 2008 07:23:57 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:b8f7a609-652a-40fd-9e9c-35a0c4d80273</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-546</link>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by Euan</title>
      <description>&lt;p&gt;You might find the Connotea Webcite service useful (it exposes Connotea's citation fetchers via REST, basically, returns MODS, JSON or RIS).&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.connotea.org/webcite" rel="nofollow"&gt;http://www.connotea.org/webcite&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The source code is available if you want to run it on your own server (after a certain amount of hackery, I'm afraid, it's not particularly portable) :(&lt;/p&gt;

&lt;p&gt;Connotea falls back to CrossRef metadata if the URI being queried doesn't have citation data embedded in the page, a linked RefMan or EndNote file etc. etc.&lt;/p&gt;</description>
      <pubDate>Mon, 12 May 2008 05:40:15 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:eb3fa2ac-e2d7-4489-a48f-54b2b127ec29</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-544</link>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by will</title>
      <description>&lt;p&gt;I hit the limit while using the metadata retrieval service with only Internet Explorer (i.e. not programatically). This server load explanation looks like a red herring.&lt;/p&gt;

&lt;p&gt;I've also never used CrossRef metadata (I prefer to screen scrape) so they don't have to worry about unfair usage (which is left conveniently undefined).&lt;/p&gt;</description>
      <pubDate>Fri, 09 May 2008 07:06:59 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:211cdae0-8168-42e1-97fb-ecdba199af7c</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-539</link>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by Rich Apodaca</title>
      <description>&lt;p&gt;Chuck, thanks - that's good to know. Can you give an idea of roughly how much might be too much use - as a guideline?&lt;/p&gt;</description>
      <pubDate>Thu, 08 May 2008 17:48:36 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:f26bf3c8-7160-424b-ac62-4e123829d0b8</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-538</link>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by Chuck Koscher</title>
      <description>&lt;p&gt;We have no automatic limits set right now on the openurl interface. We monitor overall use and if it is being hit unusually hard we try to track down the cause and work with the folks behind it. Generally our belief is, as long as the servers are handling the load then all is fine. But, we do need to watch for commercial outfits unfairly benefiting from the service.&lt;/p&gt;</description>
      <pubDate>Wed, 07 May 2008 10:34:39 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:c149d854-79ca-41dd-8165-0997ca9cdef5</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-534</link>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by baoilleach</title>
      <description>&lt;p&gt;There are plenty of examples among the 25 or so references in the example data on my ACS citation checker. Am waiting for that website to come back online (my hoster got hacked).&lt;/p&gt;</description>
      <pubDate>Wed, 07 May 2008 09:45:00 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:33a76b30-72d0-4572-b841-96b805ec9226</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-533</link>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by Rich Apodaca</title>
      <description>&lt;p&gt;Will, any idea of how many uses CrossRef allows before being throttled? I didn't see anything about that in their documentation.&lt;/p&gt;

&lt;p&gt;Noel, could you provide some examples of where the CrossRef metadata is of poor quality?&lt;/p&gt;</description>
      <pubDate>Wed, 07 May 2008 09:22:21 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:d75a911d-2cc3-4568-935b-9b60a63b84bc</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-531</link>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by baoilleach</title>
      <description>&lt;p&gt;As CrossRef themselves have said (see the link in Rich's comment above) and/or I have learned, the quality of the metadata supplied to them by the publishers is often quite poor, e.g. it may or may not include the title, the endpage, or any but the first author; the name of the journal might be abbreviated, with/out periods, or it might be written in full. Nice.&lt;/p&gt;

&lt;p&gt;It's difficult to use such metadata for validating references in papers (where it could save a lot of mindless human labor). The best I could do is the &lt;a href="http://www.redbrick.dcu.ie/~noel/ACSlookup.html" rel="nofollow"&gt;ACS citation checker&lt;/a&gt; (webpage may currently be off-line due to maintainence). &lt;/p&gt;</description>
      <pubDate>Wed, 07 May 2008 08:28:17 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:2bf9cf95-179f-49e4-9687-afd8fe3c15ed</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-530</link>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by Will</title>
      <description>&lt;p&gt;This is really nice. I have used CrossRef to try to retrieve metadata by DOI and there is actually a limit on what you are allowed, but for most peoples purposes it should be fine as they are not generally as greedy as me.&lt;/p&gt;

&lt;p&gt;For libraries, who do need bulk metadata, it is a different matter of course and CrossRef have indicated that they are prepared to charge some libraries (for metadata, not access) which is of questionable value (depending on the amount charged) since it is almost free to retrieve with screen scraping tools these days (plus the income from journals).&lt;/p&gt;</description>
      <pubDate>Wed, 07 May 2008 07:29:15 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:a3e06bea-e3d6-43d5-b5e5-f52f78c31af1</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-529</link>
    </item>
    <item>
      <title>"Hacking DOI: Interconvert Bibliographic References and DOIs with CrossRef and OpenURL" by Rich Apodaca</title>
      <description>&lt;p&gt;&lt;a href="http://baoilleach.blogspot.com/2008/02/which-is-worse-pubmed-metadata-or.html" rel="nofollow"&gt;This post&lt;/a&gt; and its comments are also worth reading. Many of Noel O'Boyle's concerns have been addressed by the CrossRef team.&lt;/p&gt;</description>
      <pubDate>Tue, 06 May 2008 23:59:23 -0400</pubDate>
      <guid isPermaLink="false">urn:uuid:14d2204d-ee3c-4d82-8eec-eca6aeea8225</guid>
      <link>http://depth-first.com/articles/2008/05/06/hacking-doi-interconvert-bibliographic-references-and-dois-with-crossref-and-openurl#comment-528</link>
    </item>
  </channel>
</rss>
