commonmeta-ruby 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (791) hide show
  1. checksums.yaml +7 -0
  2. data/.github/workflows/build.yml +38 -0
  3. data/.github/workflows/changelog.yml +36 -0
  4. data/.github/workflows/codeql-analysis.yml +72 -0
  5. data/.github/workflows/rubocop.yml +50 -0
  6. data/.gitignore +59 -0
  7. data/.rubocop.yml +182 -0
  8. data/.rubocop_todo.yml +76 -0
  9. data/.tool-versions +1 -0
  10. data/CHANGELOG.md +124 -0
  11. data/CITATION +16 -0
  12. data/CITATION.cff +20 -0
  13. data/Gemfile +5 -0
  14. data/Gemfile.lock +270 -0
  15. data/LICENSE.md +21 -0
  16. data/README.md +733 -0
  17. data/Rakefile +13 -0
  18. data/bin/commonmeta +9 -0
  19. data/commonmeta.gemspec +68 -0
  20. data/lib/commonmeta/array.rb +13 -0
  21. data/lib/commonmeta/author_utils.rb +172 -0
  22. data/lib/commonmeta/cli.rb +70 -0
  23. data/lib/commonmeta/crossref_utils.rb +343 -0
  24. data/lib/commonmeta/doi_utils.rb +81 -0
  25. data/lib/commonmeta/metadata.rb +269 -0
  26. data/lib/commonmeta/metadata_utils.rb +184 -0
  27. data/lib/commonmeta/pubmed.rb +36 -0
  28. data/lib/commonmeta/readers/bibtex_reader.rb +62 -0
  29. data/lib/commonmeta/readers/cff_reader.rb +146 -0
  30. data/lib/commonmeta/readers/codemeta_reader.rb +90 -0
  31. data/lib/commonmeta/readers/crossref_reader.rb +186 -0
  32. data/lib/commonmeta/readers/crossref_xml_reader.rb +379 -0
  33. data/lib/commonmeta/readers/csl_reader.rb +85 -0
  34. data/lib/commonmeta/readers/datacite_reader.rb +169 -0
  35. data/lib/commonmeta/readers/npm_reader.rb +94 -0
  36. data/lib/commonmeta/readers/ris_reader.rb +66 -0
  37. data/lib/commonmeta/readers/schema_org_reader.rb +300 -0
  38. data/lib/commonmeta/schema_utils.rb +19 -0
  39. data/lib/commonmeta/string.rb +7 -0
  40. data/lib/commonmeta/utils.rb +1351 -0
  41. data/lib/commonmeta/version.rb +5 -0
  42. data/lib/commonmeta/whitelist_scrubber.rb +54 -0
  43. data/lib/commonmeta/writers/bibtex_writer.rb +36 -0
  44. data/lib/commonmeta/writers/cff_writer.rb +63 -0
  45. data/lib/commonmeta/writers/citation_writer.rb +14 -0
  46. data/lib/commonmeta/writers/codemeta_writer.rb +33 -0
  47. data/lib/commonmeta/writers/crossref_xml_writer.rb +11 -0
  48. data/lib/commonmeta/writers/csl_writer.rb +11 -0
  49. data/lib/commonmeta/writers/csv_writer.rb +26 -0
  50. data/lib/commonmeta/writers/datacite_writer.rb +94 -0
  51. data/lib/commonmeta/writers/jats_writer.rb +138 -0
  52. data/lib/commonmeta/writers/rdf_xml_writer.rb +11 -0
  53. data/lib/commonmeta/writers/ris_writer.rb +41 -0
  54. data/lib/commonmeta/writers/schema_org_writer.rb +61 -0
  55. data/lib/commonmeta/writers/turtle_writer.rb +11 -0
  56. data/lib/commonmeta/xml_converter.rb +14 -0
  57. data/lib/commonmeta.rb +35 -0
  58. data/resources/2008/09/xsd.xsl +997 -0
  59. data/resources/cff.json +1827 -0
  60. data/resources/commonmeta_v0.9.json +393 -0
  61. data/resources/crossref/AccessIndicators.xsd +47 -0
  62. data/resources/crossref/JATS-journalpublishing1-3d2-mathml3-elements.xsd +10130 -0
  63. data/resources/crossref/JATS-journalpublishing1-3d2-mathml3.xsd +48 -0
  64. data/resources/crossref/JATS-journalpublishing1-elements.xsd +8705 -0
  65. data/resources/crossref/JATS-journalpublishing1-mathml3-elements.xsd +8608 -0
  66. data/resources/crossref/JATS-journalpublishing1-mathml3.xsd +49 -0
  67. data/resources/crossref/JATS-journalpublishing1.xsd +6176 -0
  68. data/resources/crossref/clinicaltrials.xsd +61 -0
  69. data/resources/crossref/common5.3.1.xsd +1530 -0
  70. data/resources/crossref/crossref5.3.1.xsd +1949 -0
  71. data/resources/crossref/crossref_query_output3.0.xsd +1097 -0
  72. data/resources/crossref/fundref.xsd +49 -0
  73. data/resources/crossref/module-ali.xsd +39 -0
  74. data/resources/crossref/relations.xsd +444 -0
  75. data/resources/datacite-contributorType-v4.xsd +35 -0
  76. data/resources/datacite-dateType-v4.xsd +25 -0
  77. data/resources/datacite-descriptionType-v4.xsd +19 -0
  78. data/resources/datacite-funderIdentifierType-v4.xsd +15 -0
  79. data/resources/datacite-nameType-v4.xsd +10 -0
  80. data/resources/datacite-relatedIdentifierType-v4.xsd +34 -0
  81. data/resources/datacite-relationType-v4.xsd +49 -0
  82. data/resources/datacite-resourceType-v4.xsd +28 -0
  83. data/resources/datacite-titleType-v4.xsd +14 -0
  84. data/resources/datacite-v3.json +508 -0
  85. data/resources/datacite-v4.json +512 -0
  86. data/resources/kernel-3.0/include/datacite-contributorType-v3.xsd +33 -0
  87. data/resources/kernel-3.0/include/datacite-dateType-v3.xsd +21 -0
  88. data/resources/kernel-3.0/include/datacite-descriptionType-v3.xsd +17 -0
  89. data/resources/kernel-3.0/include/datacite-relatedIdentifierType-v3.xsd +27 -0
  90. data/resources/kernel-3.0/include/datacite-relationType-v3.xsd +33 -0
  91. data/resources/kernel-3.0/include/datacite-resourceType-v3.xsd +26 -0
  92. data/resources/kernel-3.0/include/datacite-titleType-v3.xsd +12 -0
  93. data/resources/kernel-3.0/include/xml.xsd +286 -0
  94. data/resources/kernel-3.0/metadata.xsd +377 -0
  95. data/resources/kernel-4/include/datacite-contributorType-v4.xsd +35 -0
  96. data/resources/kernel-4/include/datacite-dateType-v4.xsd +25 -0
  97. data/resources/kernel-4/include/datacite-descriptionType-v4.xsd +19 -0
  98. data/resources/kernel-4/include/datacite-funderIdentifierType-v4.xsd +16 -0
  99. data/resources/kernel-4/include/datacite-nameType-v4.xsd +10 -0
  100. data/resources/kernel-4/include/datacite-numberType-v4.xsd +12 -0
  101. data/resources/kernel-4/include/datacite-relatedIdentifierType-v4.xsd +34 -0
  102. data/resources/kernel-4/include/datacite-relationType-v4.xsd +51 -0
  103. data/resources/kernel-4/include/datacite-resourceType-v4.xsd +43 -0
  104. data/resources/kernel-4/include/datacite-titleType-v4.xsd +14 -0
  105. data/resources/kernel-4/include/xml.xsd +286 -0
  106. data/resources/kernel-4/metadata.xsd +707 -0
  107. data/resources/oecd/dfg-mappings.json +1866 -0
  108. data/resources/oecd/for-mappings.json +1099 -0
  109. data/resources/oecd/fos-mappings.json +198 -0
  110. data/resources/schema_org/jsonldcontext.json +7477 -0
  111. data/resources/spdx/licenses.json +5297 -0
  112. data/resources/xml.xsd +286 -0
  113. data/rubocop.sarif +0 -0
  114. data/sonar-project.properties +11 -0
  115. data/spec/array_spec.rb +22 -0
  116. data/spec/author_utils_spec.rb +132 -0
  117. data/spec/cli_spec.rb +309 -0
  118. data/spec/doi_utils_spec.rb +318 -0
  119. data/spec/find_from_format_spec.rb +144 -0
  120. data/spec/fixtures/CITATION.cff +83 -0
  121. data/spec/fixtures/aida.json +82 -0
  122. data/spec/fixtures/cgimp_package.json +18 -0
  123. data/spec/fixtures/cit_package.json +19 -0
  124. data/spec/fixtures/citeproc-no-author.json +26 -0
  125. data/spec/fixtures/citeproc-no-categories.json +21 -0
  126. data/spec/fixtures/citeproc.json +30 -0
  127. data/spec/fixtures/codemeta.json +86 -0
  128. data/spec/fixtures/codemeta_v2.json +86 -0
  129. data/spec/fixtures/crosscite.json +63 -0
  130. data/spec/fixtures/crossref.bib +14 -0
  131. data/spec/fixtures/crossref.json +572 -0
  132. data/spec/fixtures/crossref.ris +15 -0
  133. data/spec/fixtures/crossref.xml +606 -0
  134. data/spec/fixtures/datacite.json +86 -0
  135. data/spec/fixtures/datacite_software.json +21 -0
  136. data/spec/fixtures/datacite_software_missing_comma.json +18 -0
  137. data/spec/fixtures/datacite_software_overlapping_keys.json +18 -0
  138. data/spec/fixtures/datacite_software_version.json +74 -0
  139. data/spec/fixtures/edam_package.json +12 -0
  140. data/spec/fixtures/maremma/codemeta.json +36 -0
  141. data/spec/fixtures/pure.bib +14 -0
  142. data/spec/fixtures/pure.ris +15 -0
  143. data/spec/fixtures/pure.xml +188 -0
  144. data/spec/fixtures/ris_bug.ris +9 -0
  145. data/spec/fixtures/schema_4.0.xml +140 -0
  146. data/spec/fixtures/schema_org.json +49 -0
  147. data/spec/fixtures/schema_org_front-matter.json +32 -0
  148. data/spec/fixtures/schema_org_geolocation.json +82 -0
  149. data/spec/fixtures/schema_org_geoshape.json +550 -0
  150. data/spec/fixtures/schema_org_gtex.json +75 -0
  151. data/spec/fixtures/schema_org_list.json +12623 -0
  152. data/spec/fixtures/schema_org_tdl_iodp_invalid_authors.json +25 -0
  153. data/spec/fixtures/schema_org_topmed.json +53 -0
  154. data/spec/fixtures/schema_org_type_as_array.json +41 -0
  155. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/default.yml +110 -0
  156. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_bibtex.yml +110 -0
  157. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_crossref_xml.yml +110 -0
  158. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_datacite.yml +110 -0
  159. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_schema_org.yml +110 -0
  160. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/default.yml +55 -0
  161. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_bibtex.yml +55 -0
  162. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_crossref_xml.yml +55 -0
  163. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_datacite.yml +55 -0
  164. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_schema_org.yml +55 -0
  165. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/default.yml +299 -0
  166. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_bibtex.yml +299 -0
  167. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_citation.yml +299 -0
  168. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_crossref_xml.yml +299 -0
  169. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_datacite.yml +299 -0
  170. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_jats.yml +299 -0
  171. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_schema_org.yml +299 -0
  172. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/default.yml +172 -0
  173. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_bibtex.yml +172 -0
  174. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_citation.yml +172 -0
  175. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_datacite.yml +172 -0
  176. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_jats.yml +172 -0
  177. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_schema_org.yml +172 -0
  178. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/default.yml +1098 -0
  179. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_datacite.yml +1098 -0
  180. data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_schema_org.yml +1100 -0
  181. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/crossref.yml +55 -0
  182. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/datacite.yml +55 -0
  183. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/jalc.yml +55 -0
  184. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/kisti.yml +55 -0
  185. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/medra.yml +55 -0
  186. data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/op.yml +55 -0
  187. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/author.yml +164 -0
  188. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/no_author.yml +164 -0
  189. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/single_author.yml +164 -0
  190. data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/with_organization.yml +164 -0
  191. data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +247 -0
  192. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/crossref.yml +55 -0
  193. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/datacite.yml +55 -0
  194. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/jalc.yml +55 -0
  195. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/kisti.yml +55 -0
  196. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/medra.yml +55 -0
  197. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/not_found.yml +55 -0
  198. data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/op.yml +55 -0
  199. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref.yml +55 -0
  200. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +55 -0
  201. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite.yml +55 -0
  202. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite_doi_http.yml +55 -0
  203. data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +55 -0
  204. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_match.yml +221 -0
  205. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_with_schemeUri_in_hash.yml +221 -0
  206. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_match.yml +221 -0
  207. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_no_match.yml +221 -0
  208. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_for_match.yml +221 -0
  209. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_match.yml +221 -0
  210. data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_no_match.yml +221 -0
  211. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org/with_id.yml +221 -0
  212. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/with_affiliation.yml +221 -0
  213. data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/without_affiliation.yml +221 -0
  214. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/cff-converter-python.yml +200 -0
  215. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/ruby-cff.yml +154 -0
  216. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/ruby-cff_repository_url.yml +154 -0
  217. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/maremma.yml +86 -0
  218. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/metadata_reports.yml +93 -0
  219. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +337 -0
  220. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +347 -0
  221. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +359 -0
  222. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/JaLC.yml +384 -0
  223. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/KISTI.yml +330 -0
  224. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/OP.yml +969 -0
  225. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/affiliation_is_space.yml +358 -0
  226. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book.yml +312 -0
  227. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book_chapter.yml +465 -0
  228. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/article_id_as_page_number.yml +276 -0
  229. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/author_literal.yml +492 -0
  230. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book.yml +523 -0
  231. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter.yml +377 -0
  232. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter_with_RDF_for_container.yml +336 -0
  233. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_oup.yml +289 -0
  234. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/component.yml +289 -0
  235. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset.yml +299 -0
  236. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset_usda.yml +341 -0
  237. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/date_in_future.yml +570 -0
  238. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dissertation.yml +301 -0
  239. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/empty_given_name.yml +303 -0
  240. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/invalid_date.yml +307 -0
  241. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article.yml +461 -0
  242. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +276 -0
  243. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with.yml +470 -0
  244. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_RDF_for_container.yml +519 -0
  245. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_funding.yml +456 -0
  246. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_issue.yml +270 -0
  247. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/mEDRA.yml +310 -0
  248. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/markup.yml +329 -0
  249. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/missing_creator.yml +307 -0
  250. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_issn.yml +393 -0
  251. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles.yml +265 -0
  252. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles_with_missing.yml +860 -0
  253. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/not_found_error.yml +209 -0
  254. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/peer_review.yml +287 -0
  255. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content.yml +326 -0
  256. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content_copernicus.yml +297 -0
  257. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/report_osti.yml +315 -0
  258. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/vor_with_url.yml +451 -0
  259. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book.yml +816 -0
  260. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +324 -0
  261. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_raw/journal_article.yml +110 -0
  262. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/dissertation.yml +152 -0
  263. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/funding_references.yml +175 -0
  264. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/subject_scheme.yml +328 -0
  265. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date/publication_date.yml +221 -0
  266. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/date.yml +221 -0
  267. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year-month.yml +221 -0
  268. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year.yml +221 -0
  269. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/date.yml +221 -0
  270. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year-month.yml +221 -0
  271. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year.yml +221 -0
  272. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/date.yml +221 -0
  273. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year-month.yml +221 -0
  274. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year.yml +221 -0
  275. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/future.yml +221 -0
  276. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/invalid.yml +221 -0
  277. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/nil.yml +221 -0
  278. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/past.yml +221 -0
  279. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/present.yml +221 -0
  280. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_familyName.yml +133 -0
  281. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +153 -0
  282. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/is_organization.yml +164 -0
  283. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/name_with_affiliation_crossref.yml +247 -0
  284. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/only_familyName_and_givenName.yml +468 -0
  285. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting.yml +530 -0
  286. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +530 -0
  287. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/get_schema_org_metadata_front_matter/BlogPosting.yml +534 -0
  288. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/harvard_dataverse.yml +1838 -0
  289. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/pangaea.yml +468 -0
  290. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/upstream_blog.yml +885 -0
  291. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/zenodo.yml +583 -0
  292. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/only_title.yml +221 -0
  293. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_and_pages.yml +221 -0
  294. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_and_pages.yml +221 -0
  295. data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_issue_and_pages.yml +221 -0
  296. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_as_cff_url.yml +221 -0
  297. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_as_codemeta_url.yml +221 -0
  298. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url.yml +221 -0
  299. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url_cff_file.yml +221 -0
  300. data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url_file.yml +221 -0
  301. data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +55 -0
  302. data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/unknown_DOI_prefix.yml +55 -0
  303. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_comma.yml +164 -0
  304. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_family_name.yml +164 -0
  305. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_id.yml +164 -0
  306. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_known_given_name.yml +164 -0
  307. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_no_info.yml +164 -0
  308. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_orcid_id.yml +164 -0
  309. data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_type_organization.yml +164 -0
  310. data/spec/fixtures/vcr_cassettes/Briard_Metadata/json_schema_errors/is_valid.yml +221 -0
  311. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/not_found.yml +221 -0
  312. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash.yml +221 -0
  313. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +221 -0
  314. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi.yml +221 -0
  315. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi_as_url.yml +221 -0
  316. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/filename.yml +221 -0
  317. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/ftp.yml +221 -0
  318. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/invalid_url.yml +221 -0
  319. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_options.yml +221 -0
  320. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_url.yml +221 -0
  321. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/string.yml +221 -0
  322. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url.yml +221 -0
  323. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url_with_utf-8.yml +221 -0
  324. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/doi.yml +221 -0
  325. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/url.yml +221 -0
  326. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_array.yml +221 -0
  327. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_empty_array.yml +221 -0
  328. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_hash.yml +221 -0
  329. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_string.yml +221 -0
  330. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/uri.yml +221 -0
  331. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash.yml +221 -0
  332. data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +221 -0
  333. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array.yml +221 -0
  334. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array_of_strings.yml +221 -0
  335. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/first.yml +221 -0
  336. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/hash.yml +221 -0
  337. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/hash_with_array_value.yml +221 -0
  338. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/nil.yml +221 -0
  339. data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/string.yml +221 -0
  340. data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/decode_anothe_doi.yml +221 -0
  341. data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/decode_doi.yml +221 -0
  342. data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/encode_doi.yml +221 -0
  343. data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/onlies_keep_specific_tags.yml +221 -0
  344. data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/removes_a_tags.yml +221 -0
  345. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_id.yml +221 -0
  346. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_not_found.yml +221 -0
  347. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_url.yml +221 -0
  348. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_exists.yml +221 -0
  349. data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_id.yml +221 -0
  350. data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org/with_id.yml +221 -0
  351. data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org_identifiers/with_identifiers.yml +221 -0
  352. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid.yml +221 -0
  353. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_https.yml +221 -0
  354. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_id.yml +221 -0
  355. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox.yml +221 -0
  356. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +221 -0
  357. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_with_spaces.yml +221 -0
  358. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_wrong_id.yml +221 -0
  359. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_www.yml +221 -0
  360. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +221 -0
  361. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +221 -0
  362. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +221 -0
  363. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +221 -0
  364. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/DOI.yml +221 -0
  365. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/ISSN.yml +221 -0
  366. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/URL.yml +221 -0
  367. data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/string.yml +221 -0
  368. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/BlogPosting.yml +81 -0
  369. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/Dataset.yml +120 -0
  370. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +186 -0
  371. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/climate_data.yml +74 -0
  372. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/from_schema_org.yml +530 -0
  373. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +149 -0
  374. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/maremma.yml +86 -0
  375. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/text.yml +100 -0
  376. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_data_citation.yml +247 -0
  377. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_pages.yml +228 -0
  378. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/Collection_of_Jupyter_notebooks.yml +143 -0
  379. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/SoftwareSourceCode_Zenodo.yml +150 -0
  380. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/SoftwareSourceCode_also_Zenodo.yml +93 -0
  381. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/ruby-cff.yml +154 -0
  382. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Dataset.yml +120 -0
  383. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article.yml +247 -0
  384. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article_vancouver_style.yml +299 -0
  385. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Missing_author.yml +199 -0
  386. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/interactive_resource_without_dates.yml +75 -0
  387. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/software_w/version.yml +86 -0
  388. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +76 -0
  389. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +76 -0
  390. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/another_schema_org_from_front-matter.yml +541 -0
  391. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/journal_article.yml +55 -0
  392. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/journal_article_from_datacite.yml +85 -0
  393. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/posted_content.yml +283 -0
  394. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_another_science_blog.yml +123 -0
  395. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +477 -0
  396. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_upstream_blog.yml +1025 -0
  397. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/Another_dataset.yml +110 -0
  398. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/BlogPosting.yml +81 -0
  399. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/BlogPosting_schema_org.yml +530 -0
  400. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/Dataset.yml +120 -0
  401. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/container_title.yml +153 -0
  402. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/interactive_resource_without_dates.yml +75 -0
  403. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/journal_article.yml +247 -0
  404. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/keywords_subject_scheme.yml +149 -0
  405. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/maremma.yml +86 -0
  406. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/missing_creator.yml +199 -0
  407. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/multiple_abstracts.yml +101 -0
  408. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/organization_author.yml +314 -0
  409. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/software.yml +90 -0
  410. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/software_w/version.yml +86 -0
  411. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/with_only_first_page.yml +333 -0
  412. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/with_pages.yml +228 -0
  413. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/climate_data.yml +74 -0
  414. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/maremma.yml +86 -0
  415. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/text.yml +100 -0
  416. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_data_citation.yml +247 -0
  417. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_pages.yml +228 -0
  418. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/from_schema_org.yml +530 -0
  419. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/maremma.yml +86 -0
  420. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/with_ORCID_ID.yml +228 -0
  421. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/with_data_citation.yml +247 -0
  422. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/from_schema_org.yml +530 -0
  423. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/maremma.yml +86 -0
  424. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_ORCID_ID.yml +228 -0
  425. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_data_citation.yml +247 -0
  426. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +120 -0
  427. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +106 -0
  428. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/book_chapter.yml +163 -0
  429. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/from_schema_org.yml +530 -0
  430. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/interactive_resource_without_dates.yml +75 -0
  431. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/maremma.yml +86 -0
  432. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +228 -0
  433. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +247 -0
  434. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_editor.yml +355 -0
  435. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting.yml +81 -0
  436. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting_schema_org.yml +530 -0
  437. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/journal_article.yml +247 -0
  438. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/maremma.yml +86 -0
  439. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/with_pages.yml +228 -0
  440. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting.yml +81 -0
  441. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +530 -0
  442. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/Dataset.yml +120 -0
  443. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/alternate_name.yml +138 -0
  444. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/journal_article.yml +115 -0
  445. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +149 -0
  446. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/maremma.yml +86 -0
  447. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/with_pages.yml +112 -0
  448. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Another_Schema_org_JSON.yml +120 -0
  449. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding.yml +192 -0
  450. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +150 -0
  451. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +98 -0
  452. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_Cyark.yml +160 -0
  453. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +153 -0
  454. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +131 -0
  455. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/data_catalog.yml +136 -0
  456. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/geo_location_box.yml +181 -0
  457. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/interactive_resource_without_dates.yml +127 -0
  458. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/journal_article.yml +247 -0
  459. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +86 -0
  460. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/series_information.yml +174 -0
  461. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme.yml +199 -0
  462. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +201 -0
  463. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting.yml +81 -0
  464. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting_schema_org.yml +530 -0
  465. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/Dataset.yml +120 -0
  466. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/journal_article.yml +247 -0
  467. data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/with_pages.yml +228 -0
  468. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/default.yml +110 -0
  469. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_bibtex.yml +110 -0
  470. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_crossref_xml.yml +110 -0
  471. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_datacite.yml +110 -0
  472. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_schema_org.yml +110 -0
  473. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/default.yml +55 -0
  474. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_bibtex.yml +55 -0
  475. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_crossref_xml.yml +55 -0
  476. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_datacite.yml +55 -0
  477. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_schema_org.yml +55 -0
  478. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/default.yml +299 -0
  479. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_bibtex.yml +299 -0
  480. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_citation.yml +299 -0
  481. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_crossref_xml.yml +299 -0
  482. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_datacite.yml +299 -0
  483. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_jats.yml +299 -0
  484. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_schema_org.yml +299 -0
  485. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/default.yml +172 -0
  486. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_bibtex.yml +172 -0
  487. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_citation.yml +172 -0
  488. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_datacite.yml +172 -0
  489. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_jats.yml +172 -0
  490. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_schema_org.yml +172 -0
  491. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/default.yml +1096 -0
  492. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/to_datacite.yml +1096 -0
  493. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/to_schema_org.yml +1098 -0
  494. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/crossref.yml +55 -0
  495. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/datacite.yml +55 -0
  496. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/jalc.yml +55 -0
  497. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/kisti.yml +55 -0
  498. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/medra.yml +55 -0
  499. data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/op.yml +55 -0
  500. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +247 -0
  501. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/crossref.yml +55 -0
  502. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/datacite.yml +55 -0
  503. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/jalc.yml +55 -0
  504. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/kisti.yml +55 -0
  505. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/medra.yml +55 -0
  506. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/not_found.yml +55 -0
  507. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/op.yml +55 -0
  508. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/crossref.yml +55 -0
  509. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +55 -0
  510. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/datacite.yml +55 -0
  511. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/datacite_doi_http.yml +55 -0
  512. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +55 -0
  513. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_for_match.yml +221 -0
  514. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_for_with_schemeUri_in_hash.yml +221 -0
  515. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_match.yml +221 -0
  516. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_no_match.yml +221 -0
  517. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_for_match.yml +221 -0
  518. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_match.yml +221 -0
  519. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_no_match.yml +221 -0
  520. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/from_schema_org/with_id.yml +221 -0
  521. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/cff-converter-python.yml +200 -0
  522. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/ruby-cff.yml +154 -0
  523. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/ruby-cff_repository_url.yml +154 -0
  524. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_codemeta_metadata/maremma.yml +86 -0
  525. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_codemeta_metadata/metadata_reports.yml +93 -0
  526. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +337 -0
  527. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +347 -0
  528. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +170 -0
  529. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/JaLC.yml +384 -0
  530. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/KISTI.yml +330 -0
  531. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/OP.yml +969 -0
  532. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/affiliation_is_space.yml +358 -0
  533. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/another_book.yml +312 -0
  534. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/another_book_chapter.yml +465 -0
  535. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/article_id_as_page_number.yml +276 -0
  536. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/author_literal.yml +492 -0
  537. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book.yml +523 -0
  538. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_chapter.yml +377 -0
  539. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_chapter_with_RDF_for_container.yml +336 -0
  540. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_oup.yml +289 -0
  541. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/component.yml +289 -0
  542. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dataset.yml +300 -0
  543. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dataset_usda.yml +341 -0
  544. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/date_in_future.yml +570 -0
  545. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dissertation.yml +301 -0
  546. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/empty_given_name.yml +303 -0
  547. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/invalid_date.yml +307 -0
  548. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article.yml +461 -0
  549. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +276 -0
  550. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with.yml +908 -0
  551. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with_RDF_for_container.yml +519 -0
  552. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with_funding.yml +456 -0
  553. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_issue.yml +270 -0
  554. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/mEDRA.yml +310 -0
  555. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/markup.yml +329 -0
  556. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/missing_creator.yml +307 -0
  557. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_issn.yml +393 -0
  558. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_titles.yml +265 -0
  559. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_titles_with_missing.yml +860 -0
  560. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/not_found_error.yml +209 -0
  561. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/peer_review.yml +287 -0
  562. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/posted_content.yml +326 -0
  563. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/posted_content_copernicus.yml +297 -0
  564. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/report_osti.yml +315 -0
  565. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/vor_with_url.yml +451 -0
  566. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/yet_another_book.yml +816 -0
  567. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +324 -0
  568. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_raw/journal_article.yml +110 -0
  569. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/dissertation.yml +152 -0
  570. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/funding_references.yml +175 -0
  571. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/subject_scheme.yml +328 -0
  572. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date/publication_date.yml +221 -0
  573. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/date.yml +221 -0
  574. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/year-month.yml +221 -0
  575. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/year.yml +221 -0
  576. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/date.yml +221 -0
  577. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/year-month.yml +221 -0
  578. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/year.yml +221 -0
  579. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/date.yml +221 -0
  580. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/year-month.yml +221 -0
  581. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/year.yml +221 -0
  582. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/future.yml +221 -0
  583. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/invalid.yml +221 -0
  584. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/nil.yml +221 -0
  585. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/past.yml +221 -0
  586. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/present.yml +221 -0
  587. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/has_familyName.yml +133 -0
  588. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +153 -0
  589. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/name_with_affiliation_crossref.yml +247 -0
  590. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/only_familyName_and_givenName.yml +467 -0
  591. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/BlogPosting.yml +530 -0
  592. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +530 -0
  593. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/get_schema_org_metadata_front_matter/BlogPosting.yml +534 -0
  594. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/harvard_dataverse.yml +1838 -0
  595. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/pangaea.yml +467 -0
  596. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/upstream_blog.yml +885 -0
  597. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/zenodo.yml +583 -0
  598. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/only_title.yml +221 -0
  599. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_and_pages.yml +221 -0
  600. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_volume_and_pages.yml +221 -0
  601. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_volume_issue_and_pages.yml +221 -0
  602. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_as_cff_url.yml +221 -0
  603. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_as_codemeta_url.yml +221 -0
  604. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url.yml +221 -0
  605. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url_cff_file.yml +221 -0
  606. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url_file.yml +221 -0
  607. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +55 -0
  608. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/handle_input/unknown_DOI_prefix.yml +55 -0
  609. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/json_schema_errors/is_valid.yml +221 -0
  610. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/not_found.yml +221 -0
  611. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/with_trailing_slash.yml +221 -0
  612. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +221 -0
  613. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/doi.yml +221 -0
  614. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/doi_as_url.yml +221 -0
  615. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/filename.yml +221 -0
  616. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/ftp.yml +221 -0
  617. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/invalid_url.yml +221 -0
  618. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/sandbox_via_options.yml +221 -0
  619. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/sandbox_via_url.yml +221 -0
  620. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/string.yml +221 -0
  621. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/url.yml +221 -0
  622. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/url_with_utf-8.yml +221 -0
  623. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_array.yml +221 -0
  624. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_empty_array.yml +221 -0
  625. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_hash.yml +221 -0
  626. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_string.yml +221 -0
  627. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/uri.yml +221 -0
  628. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/with_trailing_slash.yml +221 -0
  629. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +221 -0
  630. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/array.yml +221 -0
  631. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/array_of_strings.yml +221 -0
  632. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/first.yml +221 -0
  633. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/hash.yml +221 -0
  634. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/hash_with_array_value.yml +221 -0
  635. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/nil.yml +221 -0
  636. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/string.yml +221 -0
  637. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/decode_anothe_doi.yml +221 -0
  638. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/decode_doi.yml +221 -0
  639. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/encode_doi.yml +221 -0
  640. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/sanitize/onlies_keep_specific_tags.yml +221 -0
  641. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/sanitize/removes_a_tags.yml +221 -0
  642. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_id.yml +221 -0
  643. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_not_found.yml +221 -0
  644. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_url.yml +221 -0
  645. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/name_to_spdx_exists.yml +221 -0
  646. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/name_to_spdx_id.yml +221 -0
  647. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/to_schema_org/with_id.yml +221 -0
  648. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/to_schema_org_identifiers/with_identifiers.yml +221 -0
  649. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid.yml +221 -0
  650. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_https.yml +221 -0
  651. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_id.yml +221 -0
  652. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_sandbox.yml +221 -0
  653. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +221 -0
  654. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_with_spaces.yml +221 -0
  655. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_wrong_id.yml +221 -0
  656. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_www.yml +221 -0
  657. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +221 -0
  658. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +221 -0
  659. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +221 -0
  660. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +221 -0
  661. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/DOI.yml +221 -0
  662. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/ISSN.yml +221 -0
  663. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/URL.yml +221 -0
  664. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/string.yml +221 -0
  665. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/BlogPosting.yml +81 -0
  666. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/Dataset.yml +120 -0
  667. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +186 -0
  668. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/climate_data.yml +74 -0
  669. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/from_schema_org.yml +530 -0
  670. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +149 -0
  671. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/maremma.yml +86 -0
  672. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/text.yml +100 -0
  673. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/with_data_citation.yml +247 -0
  674. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/with_pages.yml +228 -0
  675. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/Collection_of_Jupyter_notebooks.yml +143 -0
  676. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/SoftwareSourceCode_Zenodo.yml +150 -0
  677. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/SoftwareSourceCode_also_Zenodo.yml +93 -0
  678. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/ruby-cff.yml +154 -0
  679. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Dataset.yml +120 -0
  680. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Journal_article.yml +247 -0
  681. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Journal_article_vancouver_style.yml +299 -0
  682. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Missing_author.yml +199 -0
  683. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/interactive_resource_without_dates.yml +75 -0
  684. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/software_w/version.yml +86 -0
  685. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +76 -0
  686. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +76 -0
  687. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/another_schema_org_from_front-matter.yml +541 -0
  688. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article.yml +55 -0
  689. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article_from_datacite.yml +85 -0
  690. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/posted_content.yml +283 -0
  691. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_another_science_blog.yml +123 -0
  692. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +477 -0
  693. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_upstream_blog.yml +1025 -0
  694. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/Another_dataset.yml +110 -0
  695. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/BlogPosting.yml +81 -0
  696. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/BlogPosting_schema_org.yml +530 -0
  697. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/Dataset.yml +120 -0
  698. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/container_title.yml +153 -0
  699. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/interactive_resource_without_dates.yml +75 -0
  700. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/journal_article.yml +247 -0
  701. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/keywords_subject_scheme.yml +149 -0
  702. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/maremma.yml +86 -0
  703. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/missing_creator.yml +199 -0
  704. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/multiple_abstracts.yml +101 -0
  705. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/organization_author.yml +314 -0
  706. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/software.yml +90 -0
  707. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/software_w/version.yml +86 -0
  708. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/with_only_first_page.yml +333 -0
  709. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/with_pages.yml +228 -0
  710. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/climate_data.yml +74 -0
  711. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/maremma.yml +86 -0
  712. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/text.yml +100 -0
  713. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/with_data_citation.yml +247 -0
  714. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/with_pages.yml +228 -0
  715. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/dissertation.yml +218 -0
  716. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/from_schema_org.yml +530 -0
  717. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/journal_article.yml +407 -0
  718. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/maremma.yml +86 -0
  719. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/with_ORCID_ID.yml +228 -0
  720. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/with_data_citation.yml +247 -0
  721. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +120 -0
  722. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +106 -0
  723. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/book_chapter.yml +163 -0
  724. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/from_schema_org.yml +530 -0
  725. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/interactive_resource_without_dates.yml +75 -0
  726. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/maremma.yml +86 -0
  727. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +228 -0
  728. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +247 -0
  729. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_editor.yml +355 -0
  730. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/BlogPosting.yml +81 -0
  731. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/BlogPosting_schema_org.yml +530 -0
  732. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/journal_article.yml +247 -0
  733. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/maremma.yml +86 -0
  734. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/with_pages.yml +228 -0
  735. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/BlogPosting.yml +81 -0
  736. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +530 -0
  737. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/Dataset.yml +120 -0
  738. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/alternate_name.yml +138 -0
  739. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/journal_article.yml +115 -0
  740. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +149 -0
  741. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/maremma.yml +86 -0
  742. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/with_pages.yml +112 -0
  743. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Another_Schema_org_JSON.yml +120 -0
  744. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Funding.yml +192 -0
  745. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +150 -0
  746. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +98 -0
  747. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON_Cyark.yml +160 -0
  748. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +153 -0
  749. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +131 -0
  750. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/data_catalog.yml +136 -0
  751. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/geo_location_box.yml +181 -0
  752. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/interactive_resource_without_dates.yml +127 -0
  753. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/journal_article.yml +247 -0
  754. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +86 -0
  755. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/series_information.yml +174 -0
  756. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/subject_scheme.yml +199 -0
  757. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +201 -0
  758. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/BlogPosting.yml +81 -0
  759. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/BlogPosting_schema_org.yml +530 -0
  760. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/Dataset.yml +120 -0
  761. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/journal_article.yml +247 -0
  762. data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/with_pages.yml +228 -0
  763. data/spec/fixtures/vivli.xml +17 -0
  764. data/spec/metadata_spec.rb +147 -0
  765. data/spec/readers/bibtex_reader_spec.rb +58 -0
  766. data/spec/readers/cff_reader_spec.rb +148 -0
  767. data/spec/readers/codemeta_reader_spec.rb +116 -0
  768. data/spec/readers/crossref_reader_spec.rb +919 -0
  769. data/spec/readers/crossref_xml_reader_spec.rb +948 -0
  770. data/spec/readers/csl_reader_spec.rb +61 -0
  771. data/spec/readers/datacite_reader_spec.rb +156 -0
  772. data/spec/readers/npm_reader_spec.rb +69 -0
  773. data/spec/readers/ris_reader_spec.rb +70 -0
  774. data/spec/readers/schema_org_reader_spec.rb +416 -0
  775. data/spec/schema_utils_spec.rb +16 -0
  776. data/spec/spec_helper.rb +96 -0
  777. data/spec/utils_spec.rb +631 -0
  778. data/spec/writers/bibtex_writer_spec.rb +160 -0
  779. data/spec/writers/cff_writer_spec.rb +118 -0
  780. data/spec/writers/citation_writer_spec.rb +51 -0
  781. data/spec/writers/codemeta_writer_spec.rb +47 -0
  782. data/spec/writers/crossref_xml_writer_spec.rb +173 -0
  783. data/spec/writers/csl_writer_spec.rb +291 -0
  784. data/spec/writers/csv_writer_spec.rb +82 -0
  785. data/spec/writers/datacite_writer_spec.rb +150 -0
  786. data/spec/writers/jats_writer_spec.rb +210 -0
  787. data/spec/writers/rdf_xml_writer_spec.rb +91 -0
  788. data/spec/writers/ris_writer_spec.rb +206 -0
  789. data/spec/writers/schema_org_writer_spec.rb +301 -0
  790. data/spec/writers/turtle_writer_spec.rb +85 -0
  791. metadata +1514 -0
@@ -0,0 +1,860 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.crossref.org/works/10.1186/1471-2164-7-187
6
+ body:
7
+ encoding: UTF-8
8
+ string: ''
9
+ headers:
10
+ Connection:
11
+ - close
12
+ Host:
13
+ - api.crossref.org
14
+ User-Agent:
15
+ - http.rb/5.1.1
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: OK
20
+ headers:
21
+ Date:
22
+ - Sun, 12 Mar 2023 22:21:45 GMT
23
+ Content-Type:
24
+ - application/json
25
+ Transfer-Encoding:
26
+ - chunked
27
+ Access-Control-Expose-Headers:
28
+ - Link
29
+ Access-Control-Allow-Headers:
30
+ - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language,
31
+ Accept-Ranges, Cache-Control
32
+ Access-Control-Allow-Origin:
33
+ - "*"
34
+ Server:
35
+ - Jetty(9.4.40.v20210413)
36
+ X-Ratelimit-Limit:
37
+ - '50'
38
+ X-Ratelimit-Interval:
39
+ - 1s
40
+ X-Api-Pool:
41
+ - public
42
+ X-Rate-Limit-Limit:
43
+ - '50'
44
+ X-Rate-Limit-Interval:
45
+ - 1s
46
+ Permissions-Policy:
47
+ - interest-cohort=()
48
+ Connection:
49
+ - close
50
+ body:
51
+ encoding: UTF-8
52
+ string: '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2023,2,23]],"date-time":"2023-02-23T14:27:37Z","timestamp":1677162457093},"reference-count":38,"publisher":"Springer
53
+ Science and Business Media LLC","issue":"1","license":[{"start":{"date-parts":[[2006,7,25]],"date-time":"2006-07-25T00:00:00Z","timestamp":1153785600000},"content-version":"tdm","delay-in-days":0,"URL":"http:\/\/creativecommons.org\/licenses\/by\/2.0"}],"content-domain":{"domain":["link.springer.com"],"crossmark-restriction":false},"short-container-title":["BMC
54
+ Genomics"],"published-print":{"date-parts":[[2006,12]]},"abstract":"<jats:title>Abstract<\/jats:title>\n <jats:sec>\n <jats:title>Background<\/jats:title>\n <jats:p>Accurate
55
+ evaluation of the quality of genomic or proteomic data and computational methods
56
+ is vital to our ability to use them for formulating novel biological hypotheses
57
+ and directing further experiments. There is currently no standard approach
58
+ to evaluation in functional genomics. Our analysis of existing approaches
59
+ shows that they are inconsistent and contain substantial functional biases
60
+ that render the resulting evaluations misleading both quantitatively and qualitatively.
61
+ These problems make it essentially impossible to compare computational methods
62
+ or large-scale experimental datasets and also result in conclusions that generalize
63
+ poorly in most biological applications.<\/jats:p>\n <\/jats:sec>\n <jats:sec>\n <jats:title>Results<\/jats:title>\n <jats:p>We
64
+ reveal issues with current evaluation methods here and suggest new approaches
65
+ to evaluation that facilitate accurate and representative characterization
66
+ of genomic methods and data. Specifically, we describe a functional genomics
67
+ gold standard based on curation by expert biologists and demonstrate its use
68
+ as an effective means of evaluation of genomic approaches. Our evaluation
69
+ framework and gold standard are freely available to the community through
70
+ our website.<\/jats:p>\n <\/jats:sec>\n <jats:sec>\n <jats:title>Conclusion<\/jats:title>\n <jats:p>Proper
71
+ methods for evaluating genomic data and computational approaches will determine
72
+ how much we, as a community, are able to learn from the wealth of available
73
+ data. We propose one possible solution to this problem here but emphasize
74
+ that this topic warrants broader community discussion.<\/jats:p>\n <\/jats:sec>","DOI":"10.1186\/1471-2164-7-187","type":"journal-article","created":{"date-parts":[[2006,7,25]],"date-time":"2006-07-25T18:14:51Z","timestamp":1153851291000},"update-policy":"http:\/\/dx.doi.org\/10.1007\/springer_crossmark_policy","source":"Crossref","is-referenced-by-count":171,"title":["Finding
75
+ function: evaluation methods for functional genomic data"],"prefix":"10.1186","volume":"7","author":[{"given":"Chad
76
+ L","family":"Myers","sequence":"first","affiliation":[]},{"given":"Daniel
77
+ R","family":"Barrett","sequence":"additional","affiliation":[]},{"given":"Matthew
78
+ A","family":"Hibbs","sequence":"additional","affiliation":[]},{"given":"Curtis","family":"Huttenhower","sequence":"additional","affiliation":[]},{"given":"Olga
79
+ G","family":"Troyanskaya","sequence":"additional","affiliation":[]}],"member":"297","published-online":{"date-parts":[[2006,7,25]]},"reference":[{"key":"570_CR1","volume-title":"Bioinformatics","author":"Z
80
+ Barutcuoglu","year":"2006","unstructured":"Barutcuoglu Z, Schapire RE, Troyanskaya
81
+ OG: Hierarchical multi-label prediction of gene function. Bioinformatics.
82
+ 2006"},{"issue":"Suppl 2","key":"570_CR2","doi-asserted-by":"publisher","first-page":"II42","DOI":"10.1093\/bioinformatics\/btg1058","volume":"19","author":"A
83
+ Clare","year":"2003","unstructured":"Clare A, King RD: Predicting gene function
84
+ in Saccharomyces cerevisiae. Bioinformatics. 2003, 19 (Suppl 2): II42-II49.","journal-title":"Bioinformatics"},{"key":"570_CR3","first-page":"300","volume-title":"Pac
85
+ Symp Biocomput","author":"GR Lanckriet","year":"2004","unstructured":"Lanckriet
86
+ GR, Deng M, Cristianini N, Jordan MI, Noble WS: Kernel-based data fusion and
87
+ its application to protein function prediction in yeast. Pac Symp Biocomput.
88
+ 2004, 300-311."},{"issue":"2","key":"570_CR4","doi-asserted-by":"publisher","first-page":"401","DOI":"10.1089\/10665270252935539","volume":"9","author":"P
89
+ Pavlidis","year":"2002","unstructured":"Pavlidis P, Weston J, Cai J, Noble
90
+ WS: Learning gene functional classifications from multiple data types. J Comput
91
+ Biol. 2002, 9 (2): 401-411. 10.1089\/10665270252935539.","journal-title":"J
92
+ Comput Biol"},{"issue":"Suppl 1","key":"570_CR5","doi-asserted-by":"publisher","first-page":"i38","DOI":"10.1093\/bioinformatics\/bti1016","volume":"21","author":"A
93
+ Ben-Hur","year":"2005","unstructured":"Ben-Hur A, Noble WS: Kernel methods
94
+ for predicting protein-protein interactions. Bioinformatics. 2005, 21 (Suppl
95
+ 1): i38-i46. 10.1093\/bioinformatics\/bti1016.","journal-title":"Bioinformatics"},{"issue":"5644","key":"570_CR6","doi-asserted-by":"publisher","first-page":"449","DOI":"10.1126\/science.1087361","volume":"302","author":"R
96
+ Jansen","year":"2003","unstructured":"Jansen R, Yu H, Greenbaum D, Kluger
97
+ Y, Krogan NJ, Chung S, Emili A, Snyder M, Greenblatt JF, Gerstein M: A Bayesian
98
+ networks approach for predicting protein-protein interactions from genomic
99
+ data. Science. 2003, 302 (5644): 449-453. 10.1126\/science.1087361.","journal-title":"Science"},{"issue":"5701","key":"570_CR7","doi-asserted-by":"publisher","first-page":"1555","DOI":"10.1126\/science.1099511","volume":"306","author":"I
100
+ Lee","year":"2004","unstructured":"Lee I, Date SV, Adai AT, Marcotte EM: A
101
+ probabilistic functional network of yeast genes. Science. 2004, 306 (5701):
102
+ 1555-1558. 10.1126\/science.1099511.","journal-title":"Science"},{"issue":"1","key":"570_CR8","doi-asserted-by":"publisher","first-page":"154","DOI":"10.1186\/1471-2105-5-154","volume":"5","author":"N
103
+ Lin","year":"2004","unstructured":"Lin N, Wu B, Jansen R, Gerstein M, Zhao
104
+ H: Information assessment on predicting protein-protein interactions. BMC
105
+ Bioinformatics. 2004, 5 (1): 154-10.1186\/1471-2105-5-154.","journal-title":"BMC
106
+ Bioinformatics"},{"issue":"14","key":"570_CR9","doi-asserted-by":"publisher","first-page":"8348","DOI":"10.1073\/pnas.0832373100","volume":"100","author":"OG
107
+ Troyanskaya","year":"2003","unstructured":"Troyanskaya OG, Dolinski K, Owen
108
+ AB, Altman RB, Botstein D: A Bayesian framework for combining heterogeneous
109
+ data sources for gene function prediction (in Saccharomyces cerevisiae). Proc
110
+ Natl Acad Sci USA. 2003, 100 (14): 8348-8353. 10.1073\/pnas.0832373100.","journal-title":"Proc
111
+ Natl Acad Sci USA"},{"issue":"8","key":"570_CR10","doi-asserted-by":"publisher","first-page":"424","DOI":"10.1016\/j.tig.2005.06.006","volume":"21","author":"SL
112
+ Wong","year":"2005","unstructured":"Wong SL, Zhang LV, Roth FP: Discovering
113
+ functional relationships: biochemistry versus genetics. Trends Genet. 2005,
114
+ 21 (8): 424-427. 10.1016\/j.tig.2005.06.006.","journal-title":"Trends Genet"},{"issue":"1","key":"570_CR11","doi-asserted-by":"publisher","first-page":"27","DOI":"10.1093\/nar\/28.1.27","volume":"28","author":"M
115
+ Kanehisa","year":"2000","unstructured":"Kanehisa M, Goto S: KEGG: kyoto encyclopedia
116
+ of genes and genomes. Nucleic Acids Res. 2000, 28 (1): 27-30. 10.1093\/nar\/28.1.27.","journal-title":"Nucleic
117
+ Acids Res"},{"issue":"Suppl 1","key":"570_CR12","doi-asserted-by":"publisher","first-page":"I363","DOI":"10.1093\/bioinformatics\/bth910","volume":"20","author":"Y
118
+ Yamanishi","year":"2004","unstructured":"Yamanishi Y, Vert JP, Kanehisa M:
119
+ Protein network inference from multiple genomic data: a supervised approach.
120
+ Bioinformatics. 2004, 20 (Suppl 1): I363-I370. 10.1093\/bioinformatics\/bth910.","journal-title":"Bioinformatics"},{"key":"570_CR13","unstructured":"GRIFn
121
+ Home Page. [http:\/\/function.princeton.edu\/GRIFn]"},{"issue":"6868","key":"570_CR14","doi-asserted-by":"publisher","first-page":"141","DOI":"10.1038\/415141a","volume":"415","author":"AC
122
+ Gavin","year":"2002","unstructured":"Gavin AC, Bosche M, Krause R, Grandi
123
+ P, Marzioch M, Bauer A, Schultz J, Rick JM, Michon AM, Cruciat CM: Functional
124
+ organization of the yeast proteome by systematic analysis of protein complexes.
125
+ Nature. 2002, 415 (6868): 141-147. 10.1038\/415141a.","journal-title":"Nature"},{"issue":"5","key":"570_CR15","doi-asserted-by":"publisher","first-page":"919","DOI":"10.1016\/S0022-2836(03)00239-0","volume":"327","author":"E
126
+ Sprinzak","year":"2003","unstructured":"Sprinzak E, Sattath S, Margalit H:
127
+ How reliable are experimental protein-protein interaction data?. J Mol Biol.
128
+ 2003, 327 (5): 919-923. 10.1016\/S0022-2836(03)00239-0.","journal-title":"J
129
+ Mol Biol"},{"issue":"6770","key":"570_CR16","doi-asserted-by":"publisher","first-page":"623","DOI":"10.1038\/35001009","volume":"403","author":"P
130
+ Uetz","year":"2000","unstructured":"Uetz P, Giot L, Cagney G, Mansfield TA,
131
+ Judson RS, Knight JR, Lockshon D, Narayan V, Srinivasan M, Pochart P: A comprehensive
132
+ analysis of protein-protein interactions in Saccharomyces cerevisiae. Nature.
133
+ 2000, 403 (6770): 623-627. 10.1038\/35001009.","journal-title":"Nature"},{"issue":"6887","key":"570_CR17","doi-asserted-by":"publisher","first-page":"399","DOI":"10.1038\/nature750","volume":"417","author":"C
134
+ von Mering","year":"2002","unstructured":"von Mering C, Krause R, Snel B,
135
+ Cornell M, Oliver SG, Fields S, Bork P: Comparative assessment of large-scale
136
+ data sets of protein-protein interactions. Nature. 2002, 417 (6887): 399-403.
137
+ 10.1038\/nature750.","journal-title":"Nature"},{"issue":"3","key":"570_CR18","doi-asserted-by":"publisher","first-page":"381","DOI":"10.1093\/bioinformatics\/btg420","volume":"20","author":"SG
138
+ Lee","year":"2004","unstructured":"Lee SG, Hur JU, Kim YS: A graph-theoretic
139
+ modeling on GO space for biological interpretation of gene clusters. Bioinformatics.
140
+ 2004, 20 (3): 381-388. 10.1093\/bioinformatics\/btg420.","journal-title":"Bioinformatics"},{"issue":"1","key":"570_CR19","doi-asserted-by":"publisher","first-page":"25","DOI":"10.1038\/75556","volume":"25","author":"M
141
+ Ashburner","year":"2000","unstructured":"Ashburner M, Ball CA, Blake JA, Botstein
142
+ D, Butler H, Cherry JM, Davis AP, Dolinski K, Dwight SS, Eppig JT: Gene ontology:
143
+ tool for the unification of biology. The Gene Ontology Consortium. Nat Genet.
144
+ 2000, 25 (1): 25-29. 10.1038\/75556.","journal-title":"Nat Genet"},{"issue":"1","key":"570_CR20","doi-asserted-by":"publisher","first-page":"77","DOI":"10.1093\/nar\/28.1.77","volume":"28","author":"CA
145
+ Ball","year":"2000","unstructured":"Ball CA, Dolinski K, Dwight SS, Harris
146
+ MA, Issel-Tarver L, Kasarskis A, Scafe CR, Sherlock G, Binkley G, Jin H: Integrating
147
+ functional genomic information into the Saccharomyces genome database. Nucleic
148
+ Acids Res. 2000, 28 (1): 77-80. 10.1093\/nar\/28.1.77.","journal-title":"Nucleic
149
+ Acids Res"},{"issue":"1","key":"570_CR21","doi-asserted-by":"publisher","first-page":"31","DOI":"10.1093\/nar\/30.1.31","volume":"30","author":"HW
150
+ Mewes","year":"2002","unstructured":"Mewes HW, Frishman D, Guldener U, Mannhaupt
151
+ G, Mayer K, Mokrejs M, Morgenstern B, Munsterkotter M, Rudd S, Weil B: MIPS:
152
+ a database for genomes and protein sequences. Nucleic Acids Res. 2002, 30
153
+ (1): 31-34. 10.1093\/nar\/30.1.31.","journal-title":"Nucleic Acids Res"},{"issue":"1","key":"570_CR22","doi-asserted-by":"publisher","first-page":"75","DOI":"10.1093\/nar\/29.1.75","volume":"29","author":"MC
154
+ Costanzo","year":"2001","unstructured":"Costanzo MC, Crawford ME, Hirschman
155
+ JE, Kranz JE, Olsen P, Robertson LS, Skrzypek MS, Braun BR, Hopkins KL, Kondu
156
+ P: YPD, PombePD and WormPD: model organism volumes of the BioKnowledge library,
157
+ an integrated resource for protein information. Nucleic Acids Res. 2001, 29
158
+ (1): 75-79. 10.1093\/nar\/29.1.75.","journal-title":"Nucleic Acids Res"},{"issue":"5","key":"570_CR23","doi-asserted-by":"publisher","first-page":"535","DOI":"10.1016\/j.mib.2004.08.012","volume":"7","author":"R
159
+ Jansen","year":"2004","unstructured":"Jansen R, Gerstein M: Analyzing protein
160
+ function on a genomic scale: the importance of gold-standard positives and
161
+ negatives for network prediction. Curr Opin Microbiol. 2004, 7 (5): 535-545.
162
+ 10.1016\/j.mib.2004.08.012.","journal-title":"Curr Opin Microbiol"},{"issue":"1","key":"570_CR24","doi-asserted-by":"publisher","first-page":"100","DOI":"10.1186\/1471-2105-6-100","volume":"6","author":"A
163
+ Patil","year":"2005","unstructured":"Patil A, Nakamura H: Filtering high-throughput
164
+ protein-protein interaction data using a combination of genomic features.
165
+ BMC Bioinformatics. 2005, 6 (1): 100-10.1186\/1471-2105-6-100.","journal-title":"BMC
166
+ Bioinformatics"},{"issue":"6959","key":"570_CR25","doi-asserted-by":"publisher","first-page":"686","DOI":"10.1038\/nature02026","volume":"425","author":"WK
167
+ Huh","year":"2003","unstructured":"Huh WK, Falvo JV, Gerke LC, Carroll AS,
168
+ Howson RW, Weissman JS, O''Shea EK: Global analysis of protein localization
169
+ in budding yeast. Nature. 2003, 425 (6959): 686-691. 10.1038\/nature02026.","journal-title":"Nature"},{"issue":"5","key":"570_CR26","doi-asserted-by":"publisher","first-page":"349","DOI":"10.1074\/mcp.M100037-MCP200","volume":"1","author":"CM
170
+ Deane","year":"2002","unstructured":"Deane CM, Salwinski L, Xenarios I, Eisenberg
171
+ D: Protein interactions: two methods for assessment of the reliability of
172
+ high throughput observations. Mol Cell Proteomics. 2002, 1 (5): 349-356. 10.1074\/mcp.M100037-MCP200.","journal-title":"Mol
173
+ Cell Proteomics"},{"key":"570_CR27","first-page":"531","volume-title":"Pac
174
+ Symp Biocomput","author":"Y Qi","year":"2005","unstructured":"Qi Y, Klein-Seetharaman
175
+ J, Bar-Joseph Z: Random forest similarity for protein-protein interaction
176
+ prediction from multiple sources. Pac Symp Biocomput. 2005, 531-542."},{"issue":"3","key":"570_CR28","doi-asserted-by":"publisher","first-page":"292","DOI":"10.1016\/j.sbi.2004.05.003","volume":"14","author":"P
177
+ Bork","year":"2004","unstructured":"Bork P, Jensen LJ, von Mering C, Ramani
178
+ AK, Lee I, Marcotte EM: Protein interaction networks from yeast to human.
179
+ Curr Opin Struct Biol. 2004, 14 (3): 292-299. 10.1016\/j.sbi.2004.05.003.","journal-title":"Curr
180
+ Opin Struct Biol"},{"issue":"1","key":"570_CR29","doi-asserted-by":"publisher","first-page":"289","DOI":"10.1093\/nar\/28.1.289","volume":"28","author":"I
181
+ Xenarios","year":"2000","unstructured":"Xenarios I, Rice DW, Salwinski L,
182
+ Baron MK, Marcotte EM, Eisenberg D: DIP: the database of interacting proteins.
183
+ Nucleic Acids Res. 2000, 28 (1): 289-291. 10.1093\/nar\/28.1.289.","journal-title":"Nucleic
184
+ Acids Res"},{"issue":"3","key":"570_CR30","doi-asserted-by":"publisher","first-page":"R23","DOI":"10.1186\/gb-2003-4-3-r23","volume":"4","author":"BJ
185
+ Breitkreutz","year":"2003","unstructured":"Breitkreutz BJ, Stark C, Tyers
186
+ M: The GRID: the General Repository for Interaction Datasets. Genome Biol.
187
+ 2003, 4 (3): R23-10.1186\/gb-2003-4-3-r23.","journal-title":"Genome Biol"},{"key":"570_CR31","doi-asserted-by":"crossref","unstructured":"Alfarano
188
+ C, Andrade CE, Anthony K, Bahroos N, Bajec M, Bantoft K, Betel D, Bobechko
189
+ B, Boutilier K, Burgess E: The Biomolecular Interaction Network Database and
190
+ related tools 2005 update. Nucleic Acids Res. 2005, D418-424. 33 Database","DOI":"10.1093\/nar\/gki051"},{"issue":"10","key":"570_CR32","doi-asserted-by":"publisher","first-page":"1275","DOI":"10.1093\/bioinformatics\/btg153","volume":"19","author":"PW
191
+ Lord","year":"2003","unstructured":"Lord PW, Stevens RD, Brass A, Goble CA:
192
+ Investigating semantic similarity measures across the Gene Ontology: the relationship
193
+ between sequence and annotation. Bioinformatics. 2003, 19 (10): 1275-1283.
194
+ 10.1093\/bioinformatics\/btg153.","journal-title":"Bioinformatics"},{"issue":"Suppl61","key":"570_CR33","first-page":"S2","volume":"7","author":"A
195
+ Ben-Hur","year":"2005","unstructured":"Ben-Hur A, Noble WS: Choosing negative
196
+ examples for the prediction of protein-protein interactions. BMC Bioinformatics.
197
+ 2005, 7 (Suppl61): S2-","journal-title":"BMC Bioinformatics"},{"issue":"8","key":"570_CR34","doi-asserted-by":"publisher","first-page":"4569","DOI":"10.1073\/pnas.061034498","volume":"98","author":"T
198
+ Ito","year":"2001","unstructured":"Ito T, Chiba T, Ozawa R, Yoshida M, Hattori
199
+ M, Sakaki Y: A comprehensive two-hybrid analysis to explore the yeast protein
200
+ interactome. Proc Natl Acad Sci U S A. 2001, 98 (8): 4569-4574. 10.1073\/pnas.061034498.","journal-title":"Proc
201
+ Natl Acad Sci U S A"},{"issue":"5553","key":"570_CR35","doi-asserted-by":"publisher","first-page":"321","DOI":"10.1126\/science.1064987","volume":"295","author":"AH
202
+ Tong","year":"2002","unstructured":"Tong AH, Drees B, Nardelli G, Bader GD,
203
+ Brannetti B, Castagnoli L, Evangelista M, Ferracuti S, Nelson B, Paoluzi S:
204
+ A combined experimental and computational strategy to define protein interaction
205
+ networks for peptide recognition modules. Science. 2002, 295 (5553): 321-324.
206
+ 10.1126\/science.1064987.","journal-title":"Science"},{"issue":"6868","key":"570_CR36","doi-asserted-by":"publisher","first-page":"180","DOI":"10.1038\/415180a","volume":"415","author":"Y
207
+ Ho","year":"2002","unstructured":"Ho Y, Gruhler A, Heilbut A, Bader GD, Moore
208
+ L, Adams SL, Millar A, Taylor P, Bennett K, Boutilier K: Systematic identification
209
+ of protein complexes in Saccharomyces cerevisiae by mass spectrometry. Nature.
210
+ 2002, 415 (6868): 180-183. 10.1038\/415180a.","journal-title":"Nature"},{"issue":"10","key":"570_CR37","doi-asserted-by":"publisher","first-page":"2987","DOI":"10.1091\/mbc.12.10.2987","volume":"12","author":"AP
211
+ Gasch","year":"2001","unstructured":"Gasch AP, Huang M, Metzner S, Botstein
212
+ D, Elledge SJ, Brown PO: Genomic expression responses to DNA-damaging agents
213
+ and the regulatory role of the yeast ATR homolog Mec1p. Mol Biol Cell. 2001,
214
+ 12 (10): 2987-3003.","journal-title":"Mol Biol Cell"},{"issue":"12","key":"570_CR38","doi-asserted-by":"publisher","first-page":"3273","DOI":"10.1091\/mbc.9.12.3273","volume":"9","author":"PT
215
+ Spellman","year":"1998","unstructured":"Spellman PT, Sherlock G, Zhang MQ,
216
+ Iyer VR, Anders K, Eisen MB, Brown PO, Botstein D, Futcher B: Comprehensive
217
+ identification of cell cycle-regulated genes of the yeast Saccharomyces cerevisiae
218
+ by microarray hybridization. Mol Biol Cell. 1998, 9 (12): 3273-3297.","journal-title":"Mol
219
+ Biol Cell"}],"container-title":["BMC Genomics"],"original-title":[],"language":"en","link":[{"URL":"http:\/\/link.springer.com\/content\/pdf\/10.1186\/1471-2164-7-187.pdf","content-type":"application\/pdf","content-version":"vor","intended-application":"text-mining"},{"URL":"http:\/\/link.springer.com\/article\/10.1186\/1471-2164-7-187\/fulltext.html","content-type":"text\/html","content-version":"vor","intended-application":"text-mining"},{"URL":"https:\/\/link.springer.com\/content\/pdf\/10.1186\/1471-2164-7-187.pdf","content-type":"application\/pdf","content-version":"vor","intended-application":"similarity-checking"}],"deposited":{"date-parts":[[2021,9,1]],"date-time":"2021-09-01T01:37:43Z","timestamp":1630460263000},"score":1,"resource":{"primary":{"URL":"https:\/\/bmcgenomics.biomedcentral.com\/articles\/10.1186\/1471-2164-7-187"}},"subtitle":[],"short-title":[],"issued":{"date-parts":[[2006,7,25]]},"references-count":38,"journal-issue":{"issue":"1","published-print":{"date-parts":[[2006,12]]}},"alternative-id":["570"],"URL":"http:\/\/dx.doi.org\/10.1186\/1471-2164-7-187","relation":{},"ISSN":["1471-2164"],"issn-type":[{"value":"1471-2164","type":"electronic"}],"subject":["Genetics","Biotechnology"],"published":{"date-parts":[[2006,7,25]]},"assertion":[{"value":"10
220
+ May 2006","order":1,"name":"received","label":"Received","group":{"name":"ArticleHistory","label":"Article
221
+ History"}},{"value":"25 July 2006","order":2,"name":"accepted","label":"Accepted","group":{"name":"ArticleHistory","label":"Article
222
+ History"}},{"value":"25 July 2006","order":3,"name":"first_online","label":"First
223
+ Online","group":{"name":"ArticleHistory","label":"Article History"}}],"article-number":"187"}}'
224
+ recorded_at: Sun, 12 Mar 2023 22:21:45 GMT
225
+ - request:
226
+ method: get
227
+ uri: https://doi.org/ra/10.1186
228
+ body:
229
+ encoding: UTF-8
230
+ string: ''
231
+ headers:
232
+ Connection:
233
+ - close
234
+ Host:
235
+ - doi.org
236
+ User-Agent:
237
+ - http.rb/5.1.1
238
+ response:
239
+ status:
240
+ code: 200
241
+ message: OK
242
+ headers:
243
+ Date:
244
+ - Sun, 12 Mar 2023 22:21:45 GMT
245
+ Content-Type:
246
+ - application/json;charset=UTF-8
247
+ Transfer-Encoding:
248
+ - chunked
249
+ Connection:
250
+ - close
251
+ Permissions-Policy:
252
+ - interest-cohort=(),browsing-topics=()
253
+ Cf-Cache-Status:
254
+ - DYNAMIC
255
+ Report-To:
256
+ - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=3SjAzRaW2PpRgm6d6BhirtdWAOBOa1STK%2F9cFroHnrPyM4%2Fv%2F2f9AXHlCLrZQoLtgBmmOHUGA8ulp0Bbmv%2FLGOa64n2eG%2FnnnDuVyu4q%2BVngj7%2FW1HboIJJvAJp4TCX6mBl0f9I%3D"}],"group":"cf-nel","max_age":604800}'
257
+ Nel:
258
+ - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}'
259
+ Strict-Transport-Security:
260
+ - max-age=31536000; includeSubDomains; preload
261
+ Server:
262
+ - cloudflare
263
+ Cf-Ray:
264
+ - 7a6f6e993e86b897-AMS
265
+ Alt-Svc:
266
+ - h3=":443"; ma=86400, h3-29=":443"; ma=86400
267
+ body:
268
+ encoding: UTF-8
269
+ string: |-
270
+ [
271
+ {
272
+ "DOI": "10.1186",
273
+ "RA": "Crossref"
274
+ }
275
+ ]
276
+ recorded_at: Sun, 12 Mar 2023 22:21:45 GMT
277
+ - request:
278
+ method: get
279
+ uri: https://api.crossref.org/works/10.1186/1471-2164-7-187/transform/application/vnd.crossref.unixsd+xml
280
+ body:
281
+ encoding: UTF-8
282
+ string: ''
283
+ headers:
284
+ Connection:
285
+ - close
286
+ Host:
287
+ - api.crossref.org
288
+ User-Agent:
289
+ - http.rb/5.1.1
290
+ response:
291
+ status:
292
+ code: 200
293
+ message: OK
294
+ headers:
295
+ Date:
296
+ - Sun, 12 Mar 2023 22:26:55 GMT
297
+ Transfer-Encoding:
298
+ - chunked
299
+ Link:
300
+ - <http://dx.doi.org/10.1186/1471-2164-7-187>; rel="canonical", <http://link.springer.com/content/pdf/10.1186/1471-2164-7-187.pdf>;
301
+ version="vor"; type="application/pdf"; rel="item", <http://link.springer.com/article/10.1186/1471-2164-7-187/fulltext.html>;
302
+ version="vor"; type="text/html"; rel="item", <https://link.springer.com/content/pdf/10.1186/1471-2164-7-187.pdf>;
303
+ version="vor"; type="application/pdf"; rel="item", <http://creativecommons.org/licenses/by/2.0>;
304
+ version="tdm"; rel="license"
305
+ Access-Control-Expose-Headers:
306
+ - Link
307
+ Access-Control-Allow-Headers:
308
+ - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language,
309
+ Accept-Ranges, Cache-Control
310
+ Access-Control-Allow-Origin:
311
+ - "*"
312
+ Server:
313
+ - Jetty(9.4.40.v20210413)
314
+ X-Ratelimit-Limit:
315
+ - '50'
316
+ X-Ratelimit-Interval:
317
+ - 1s
318
+ X-Api-Pool:
319
+ - public
320
+ X-Rate-Limit-Limit:
321
+ - '50'
322
+ X-Rate-Limit-Interval:
323
+ - 1s
324
+ Permissions-Policy:
325
+ - interest-cohort=()
326
+ Connection:
327
+ - close
328
+ body:
329
+ encoding: ASCII-8BIT
330
+ string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<crossref_result xmlns=\"http://www.crossref.org/qrschema/3.0\"
331
+ version=\"3.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.crossref.org/qrschema/3.0
332
+ http://www.crossref.org/schemas/crossref_query_output3.0.xsd\">\r\n <query_result>\r\n
333
+ \ <head>\r\n <doi_batch_id>none</doi_batch_id>\r\n </head>\r\n <body>\r\n
334
+ \ <query status=\"resolved\">\r\n <doi type=\"journal_article\">10.1186/1471-2164-7-187</doi>\r\n
335
+ \ <crm-item name=\"publisher-name\" type=\"string\">Springer Science
336
+ and Business Media LLC</crm-item>\r\n <crm-item name=\"prefix-name\"
337
+ type=\"string\">Springer (Biomed Central Ltd.)</crm-item>\r\n <crm-item
338
+ name=\"member-id\" type=\"number\">297</crm-item>\r\n <crm-item name=\"citation-id\"
339
+ type=\"number\">22586616</crm-item>\r\n <crm-item name=\"journal-id\"
340
+ type=\"number\">5911</crm-item>\r\n <crm-item name=\"deposit-timestamp\"
341
+ type=\"number\">20210831173149578</crm-item>\r\n <crm-item name=\"owner-prefix\"
342
+ type=\"string\">10.1186</crm-item>\r\n <crm-item name=\"last-update\"
343
+ type=\"date\">2021-09-01T01:37:43Z</crm-item>\r\n <crm-item name=\"created\"
344
+ type=\"date\">2006-07-25T18:14:51Z</crm-item>\r\n <crm-item name=\"citedby-count\"
345
+ type=\"number\">171</crm-item>\r\n <crm-item name=\"relation\" type=\"doi\"
346
+ claim=\"isReviewOf\">10.3410/f.1044091.494000</crm-item>\r\n <crm-item
347
+ name=\"relation\" type=\"doi\" claim=\"isReviewOf\">10.3410/f.1044091.496329</crm-item>\r\n
348
+ \ <doi_record>\r\n <crossref xmlns=\"http://www.crossref.org/xschema/1.1\"
349
+ xsi:schemaLocation=\"http://www.crossref.org/xschema/1.1 http://doi.crossref.org/schemas/unixref1.1.xsd\">\r\n
350
+ \ <journal>\r\n <journal_metadata language=\"en\">\r\n
351
+ \ <full_title>BMC Genomics</full_title>\r\n <abbrev_title>BMC
352
+ Genomics</abbrev_title>\r\n <issn media_type=\"electronic\">1471-2164</issn>\r\n
353
+ \ </journal_metadata>\r\n <journal_issue>\r\n <publication_date
354
+ media_type=\"print\">\r\n <month>12</month>\r\n <year>2006</year>\r\n
355
+ \ </publication_date>\r\n <journal_volume>\r\n
356
+ \ <volume>7</volume>\r\n </journal_volume>\r\n
357
+ \ <issue>1</issue>\r\n </journal_issue>\r\n <journal_article
358
+ publication_type=\"full_text\">\r\n <titles>\r\n <title>Finding
359
+ function: evaluation methods for functional genomic data</title>\r\n </titles>\r\n
360
+ \ <contributors>\r\n <person_name sequence=\"first\"
361
+ contributor_role=\"author\">\r\n <given_name>Chad L</given_name>\r\n
362
+ \ <surname>Myers</surname>\r\n </person_name>\r\n
363
+ \ <person_name sequence=\"additional\" contributor_role=\"author\">\r\n
364
+ \ <given_name>Daniel R</given_name>\r\n <surname>Barrett</surname>\r\n
365
+ \ </person_name>\r\n <person_name sequence=\"additional\"
366
+ contributor_role=\"author\">\r\n <given_name>Matthew A</given_name>\r\n
367
+ \ <surname>Hibbs</surname>\r\n </person_name>\r\n
368
+ \ <person_name sequence=\"additional\" contributor_role=\"author\">\r\n
369
+ \ <given_name>Curtis</given_name>\r\n <surname>Huttenhower</surname>\r\n
370
+ \ </person_name>\r\n <person_name sequence=\"additional\"
371
+ contributor_role=\"author\">\r\n <given_name>Olga G</given_name>\r\n
372
+ \ <surname>Troyanskaya</surname>\r\n </person_name>\r\n
373
+ \ </contributors>\r\n <jats:abstract xmlns:jats=\"http://www.ncbi.nlm.nih.gov/JATS1\"
374
+ xml:lang=\"en\">\r\n <jats:title>Abstract</jats:title>\r\n
375
+ \ <jats:sec>\r\n <jats:title>Background</jats:title>\r\n
376
+ \ <jats:p>Accurate evaluation of the quality of genomic
377
+ or proteomic data and computational methods is vital to our ability to use
378
+ them for formulating novel biological hypotheses and directing further experiments.
379
+ There is currently no standard approach to evaluation in functional genomics.
380
+ Our analysis of existing approaches shows that they are inconsistent and contain
381
+ substantial functional biases that render the resulting evaluations misleading
382
+ both quantitatively and qualitatively. These problems make it essentially
383
+ impossible to compare computational methods or large-scale experimental datasets
384
+ and also result in conclusions that generalize poorly in most biological applications.</jats:p>\r\n
385
+ \ </jats:sec>\r\n <jats:sec>\r\n <jats:title>Results</jats:title>\r\n
386
+ \ <jats:p>We reveal issues with current evaluation methods
387
+ here and suggest new approaches to evaluation that facilitate accurate and
388
+ representative characterization of genomic methods and data. Specifically,
389
+ we describe a functional genomics gold standard based on curation by expert
390
+ biologists and demonstrate its use as an effective means of evaluation of
391
+ genomic approaches. Our evaluation framework and gold standard are freely
392
+ available to the community through our website.</jats:p>\r\n </jats:sec>\r\n
393
+ \ <jats:sec>\r\n <jats:title>Conclusion</jats:title>\r\n
394
+ \ <jats:p>Proper methods for evaluating genomic data and
395
+ computational approaches will determine how much we, as a community, are able
396
+ to learn from the wealth of available data. We propose one possible solution
397
+ to this problem here but emphasize that this topic warrants broader community
398
+ discussion.</jats:p>\r\n </jats:sec>\r\n </jats:abstract>\r\n
399
+ \ <publication_date media_type=\"online\">\r\n <month>07</month>\r\n
400
+ \ <day>25</day>\r\n <year>2006</year>\r\n
401
+ \ </publication_date>\r\n <publication_date media_type=\"print\">\r\n
402
+ \ <month>12</month>\r\n <year>2006</year>\r\n
403
+ \ </publication_date>\r\n <publisher_item>\r\n
404
+ \ <item_number item_number_type=\"article-number\">187</item_number>\r\n
405
+ \ <identifier id_type=\"pii\">570</identifier>\r\n </publisher_item>\r\n
406
+ \ <crossmark>\r\n <crossmark_version>1</crossmark_version>\r\n
407
+ \ <crossmark_policy>10.1007/springer_crossmark_policy</crossmark_policy>\r\n
408
+ \ <crossmark_domains>\r\n <crossmark_domain>\r\n
409
+ \ <domain>link.springer.com</domain>\r\n </crossmark_domain>\r\n
410
+ \ </crossmark_domains>\r\n <crossmark_domain_exclusive>false</crossmark_domain_exclusive>\r\n
411
+ \ <custom_metadata>\r\n <assertion group_label=\"Article
412
+ History\" group_name=\"ArticleHistory\" order=\"1\" label=\"Received\" name=\"received\">10
413
+ May 2006</assertion>\r\n <assertion group_label=\"Article
414
+ History\" group_name=\"ArticleHistory\" order=\"2\" label=\"Accepted\" name=\"accepted\">25
415
+ July 2006</assertion>\r\n <assertion group_label=\"Article
416
+ History\" group_name=\"ArticleHistory\" order=\"3\" label=\"First Online\"
417
+ name=\"first_online\">25 July 2006</assertion>\r\n <ai:program
418
+ xmlns:ai=\"http://www.crossref.org/AccessIndicators.xsd\" name=\"AccessIndicators\">\r\n
419
+ \ <ai:license_ref applies_to=\"tdm\">http://creativecommons.org/licenses/by/2.0</ai:license_ref>\r\n
420
+ \ </ai:program>\r\n </custom_metadata>\r\n
421
+ \ </crossmark>\r\n <doi_data>\r\n <doi>10.1186/1471-2164-7-187</doi>\r\n
422
+ \ <timestamp>20210831173149578</timestamp>\r\n <resource
423
+ content_version=\"vor\">https://bmcgenomics.biomedcentral.com/articles/10.1186/1471-2164-7-187</resource>\r\n
424
+ \ <collection property=\"crawler-based\">\r\n <item
425
+ crawler=\"iParadigms\">\r\n <resource mime_type=\"application/pdf\">https://link.springer.com/content/pdf/10.1186/1471-2164-7-187.pdf</resource>\r\n
426
+ \ </item>\r\n </collection>\r\n <collection
427
+ property=\"text-mining\">\r\n <item>\r\n <resource
428
+ mime_type=\"application/pdf\">http://link.springer.com/content/pdf/10.1186/1471-2164-7-187.pdf</resource>\r\n
429
+ \ </item>\r\n <item>\r\n <resource
430
+ mime_type=\"text/html\">http://link.springer.com/article/10.1186/1471-2164-7-187/fulltext.html</resource>\r\n
431
+ \ </item>\r\n </collection>\r\n </doi_data>\r\n
432
+ \ <citation_list>\r\n <citation key=\"570_CR1\">\r\n
433
+ \ <author>Z Barutcuoglu</author>\r\n <cYear>2006</cYear>\r\n
434
+ \ <volume_title>Bioinformatics</volume_title>\r\n <unstructured_citation>Barutcuoglu
435
+ Z, Schapire RE, Troyanskaya OG: Hierarchical multi-label prediction of gene
436
+ function. Bioinformatics. 2006</unstructured_citation>\r\n </citation>\r\n
437
+ \ <citation key=\"570_CR2\">\r\n <journal_title>Bioinformatics</journal_title>\r\n
438
+ \ <author>A Clare</author>\r\n <volume>19</volume>\r\n
439
+ \ <issue>Suppl 2</issue>\r\n <first_page>II42</first_page>\r\n
440
+ \ <cYear>2003</cYear>\r\n <doi>10.1093/bioinformatics/btg1058</doi>\r\n
441
+ \ <unstructured_citation>Clare A, King RD: Predicting gene
442
+ function in Saccharomyces cerevisiae. Bioinformatics. 2003, 19 (Suppl 2):
443
+ II42-II49.</unstructured_citation>\r\n </citation>\r\n <citation
444
+ key=\"570_CR3\">\r\n <author>GR Lanckriet</author>\r\n
445
+ \ <first_page>300</first_page>\r\n <cYear>2004</cYear>\r\n
446
+ \ <volume_title>Pac Symp Biocomput</volume_title>\r\n <unstructured_citation>Lanckriet
447
+ GR, Deng M, Cristianini N, Jordan MI, Noble WS: Kernel-based data fusion and
448
+ its application to protein function prediction in yeast. Pac Symp Biocomput.
449
+ 2004, 300-311.</unstructured_citation>\r\n </citation>\r\n
450
+ \ <citation key=\"570_CR4\">\r\n <journal_title>J
451
+ Comput Biol</journal_title>\r\n <author>P Pavlidis</author>\r\n
452
+ \ <volume>9</volume>\r\n <issue>2</issue>\r\n
453
+ \ <first_page>401</first_page>\r\n <cYear>2002</cYear>\r\n
454
+ \ <doi>10.1089/10665270252935539</doi>\r\n <unstructured_citation>Pavlidis
455
+ P, Weston J, Cai J, Noble WS: Learning gene functional classifications from
456
+ multiple data types. J Comput Biol. 2002, 9 (2): 401-411. 10.1089/10665270252935539.</unstructured_citation>\r\n
457
+ \ </citation>\r\n <citation key=\"570_CR5\">\r\n
458
+ \ <journal_title>Bioinformatics</journal_title>\r\n <author>A
459
+ Ben-Hur</author>\r\n <volume>21</volume>\r\n <issue>Suppl
460
+ 1</issue>\r\n <first_page>i38</first_page>\r\n <cYear>2005</cYear>\r\n
461
+ \ <doi>10.1093/bioinformatics/bti1016</doi>\r\n <unstructured_citation>Ben-Hur
462
+ A, Noble WS: Kernel methods for predicting protein-protein interactions. Bioinformatics.
463
+ 2005, 21 (Suppl 1): i38-i46. 10.1093/bioinformatics/bti1016.</unstructured_citation>\r\n
464
+ \ </citation>\r\n <citation key=\"570_CR6\">\r\n
465
+ \ <journal_title>Science</journal_title>\r\n <author>R
466
+ Jansen</author>\r\n <volume>302</volume>\r\n <issue>5644</issue>\r\n
467
+ \ <first_page>449</first_page>\r\n <cYear>2003</cYear>\r\n
468
+ \ <doi>10.1126/science.1087361</doi>\r\n <unstructured_citation>Jansen
469
+ R, Yu H, Greenbaum D, Kluger Y, Krogan NJ, Chung S, Emili A, Snyder M, Greenblatt
470
+ JF, Gerstein M: A Bayesian networks approach for predicting protein-protein
471
+ interactions from genomic data. Science. 2003, 302 (5644): 449-453. 10.1126/science.1087361.</unstructured_citation>\r\n
472
+ \ </citation>\r\n <citation key=\"570_CR7\">\r\n
473
+ \ <journal_title>Science</journal_title>\r\n <author>I
474
+ Lee</author>\r\n <volume>306</volume>\r\n <issue>5701</issue>\r\n
475
+ \ <first_page>1555</first_page>\r\n <cYear>2004</cYear>\r\n
476
+ \ <doi>10.1126/science.1099511</doi>\r\n <unstructured_citation>Lee
477
+ I, Date SV, Adai AT, Marcotte EM: A probabilistic functional network of yeast
478
+ genes. Science. 2004, 306 (5701): 1555-1558. 10.1126/science.1099511.</unstructured_citation>\r\n
479
+ \ </citation>\r\n <citation key=\"570_CR8\">\r\n
480
+ \ <journal_title>BMC Bioinformatics</journal_title>\r\n
481
+ \ <author>N Lin</author>\r\n <volume>5</volume>\r\n
482
+ \ <issue>1</issue>\r\n <first_page>154</first_page>\r\n
483
+ \ <cYear>2004</cYear>\r\n <doi>10.1186/1471-2105-5-154</doi>\r\n
484
+ \ <unstructured_citation>Lin N, Wu B, Jansen R, Gerstein
485
+ M, Zhao H: Information assessment on predicting protein-protein interactions.
486
+ BMC Bioinformatics. 2004, 5 (1): 154-10.1186/1471-2105-5-154.</unstructured_citation>\r\n
487
+ \ </citation>\r\n <citation key=\"570_CR9\">\r\n
488
+ \ <journal_title>Proc Natl Acad Sci USA</journal_title>\r\n
489
+ \ <author>OG Troyanskaya</author>\r\n <volume>100</volume>\r\n
490
+ \ <issue>14</issue>\r\n <first_page>8348</first_page>\r\n
491
+ \ <cYear>2003</cYear>\r\n <doi>10.1073/pnas.0832373100</doi>\r\n
492
+ \ <unstructured_citation>Troyanskaya OG, Dolinski K, Owen
493
+ AB, Altman RB, Botstein D: A Bayesian framework for combining heterogeneous
494
+ data sources for gene function prediction (in Saccharomyces cerevisiae). Proc
495
+ Natl Acad Sci USA. 2003, 100 (14): 8348-8353. 10.1073/pnas.0832373100.</unstructured_citation>\r\n
496
+ \ </citation>\r\n <citation key=\"570_CR10\">\r\n
497
+ \ <journal_title>Trends Genet</journal_title>\r\n <author>SL
498
+ Wong</author>\r\n <volume>21</volume>\r\n <issue>8</issue>\r\n
499
+ \ <first_page>424</first_page>\r\n <cYear>2005</cYear>\r\n
500
+ \ <doi>10.1016/j.tig.2005.06.006</doi>\r\n <unstructured_citation>Wong
501
+ SL, Zhang LV, Roth FP: Discovering functional relationships: biochemistry
502
+ versus genetics. Trends Genet. 2005, 21 (8): 424-427. 10.1016/j.tig.2005.06.006.</unstructured_citation>\r\n
503
+ \ </citation>\r\n <citation key=\"570_CR11\">\r\n
504
+ \ <journal_title>Nucleic Acids Res</journal_title>\r\n <author>M
505
+ Kanehisa</author>\r\n <volume>28</volume>\r\n <issue>1</issue>\r\n
506
+ \ <first_page>27</first_page>\r\n <cYear>2000</cYear>\r\n
507
+ \ <doi>10.1093/nar/28.1.27</doi>\r\n <unstructured_citation>Kanehisa
508
+ M, Goto S: KEGG: kyoto encyclopedia of genes and genomes. Nucleic Acids Res.
509
+ 2000, 28 (1): 27-30. 10.1093/nar/28.1.27.</unstructured_citation>\r\n </citation>\r\n
510
+ \ <citation key=\"570_CR12\">\r\n <journal_title>Bioinformatics</journal_title>\r\n
511
+ \ <author>Y Yamanishi</author>\r\n <volume>20</volume>\r\n
512
+ \ <issue>Suppl 1</issue>\r\n <first_page>I363</first_page>\r\n
513
+ \ <cYear>2004</cYear>\r\n <doi>10.1093/bioinformatics/bth910</doi>\r\n
514
+ \ <unstructured_citation>Yamanishi Y, Vert JP, Kanehisa
515
+ M: Protein network inference from multiple genomic data: a supervised approach.
516
+ Bioinformatics. 2004, 20 (Suppl 1): I363-I370. 10.1093/bioinformatics/bth910.</unstructured_citation>\r\n
517
+ \ </citation>\r\n <citation key=\"570_CR13\">\r\n
518
+ \ <unstructured_citation>GRIFn Home Page. [http://function.princeton.edu/GRIFn]</unstructured_citation>\r\n
519
+ \ </citation>\r\n <citation key=\"570_CR14\">\r\n
520
+ \ <journal_title>Nature</journal_title>\r\n <author>AC
521
+ Gavin</author>\r\n <volume>415</volume>\r\n <issue>6868</issue>\r\n
522
+ \ <first_page>141</first_page>\r\n <cYear>2002</cYear>\r\n
523
+ \ <doi>10.1038/415141a</doi>\r\n <unstructured_citation>Gavin
524
+ AC, Bosche M, Krause R, Grandi P, Marzioch M, Bauer A, Schultz J, Rick JM,
525
+ Michon AM, Cruciat CM: Functional organization of the yeast proteome by systematic
526
+ analysis of protein complexes. Nature. 2002, 415 (6868): 141-147. 10.1038/415141a.</unstructured_citation>\r\n
527
+ \ </citation>\r\n <citation key=\"570_CR15\">\r\n
528
+ \ <journal_title>J Mol Biol</journal_title>\r\n <author>E
529
+ Sprinzak</author>\r\n <volume>327</volume>\r\n <issue>5</issue>\r\n
530
+ \ <first_page>919</first_page>\r\n <cYear>2003</cYear>\r\n
531
+ \ <doi>10.1016/S0022-2836(03)00239-0</doi>\r\n <unstructured_citation>Sprinzak
532
+ E, Sattath S, Margalit H: How reliable are experimental protein-protein interaction
533
+ data?. J Mol Biol. 2003, 327 (5): 919-923. 10.1016/S0022-2836(03)00239-0.</unstructured_citation>\r\n
534
+ \ </citation>\r\n <citation key=\"570_CR16\">\r\n
535
+ \ <journal_title>Nature</journal_title>\r\n <author>P
536
+ Uetz</author>\r\n <volume>403</volume>\r\n <issue>6770</issue>\r\n
537
+ \ <first_page>623</first_page>\r\n <cYear>2000</cYear>\r\n
538
+ \ <doi>10.1038/35001009</doi>\r\n <unstructured_citation>Uetz
539
+ P, Giot L, Cagney G, Mansfield TA, Judson RS, Knight JR, Lockshon D, Narayan
540
+ V, Srinivasan M, Pochart P: A comprehensive analysis of protein-protein interactions
541
+ in Saccharomyces cerevisiae. Nature. 2000, 403 (6770): 623-627. 10.1038/35001009.</unstructured_citation>\r\n
542
+ \ </citation>\r\n <citation key=\"570_CR17\">\r\n
543
+ \ <journal_title>Nature</journal_title>\r\n <author>C
544
+ von Mering</author>\r\n <volume>417</volume>\r\n <issue>6887</issue>\r\n
545
+ \ <first_page>399</first_page>\r\n <cYear>2002</cYear>\r\n
546
+ \ <doi>10.1038/nature750</doi>\r\n <unstructured_citation>von
547
+ Mering C, Krause R, Snel B, Cornell M, Oliver SG, Fields S, Bork P: Comparative
548
+ assessment of large-scale data sets of protein-protein interactions. Nature.
549
+ 2002, 417 (6887): 399-403. 10.1038/nature750.</unstructured_citation>\r\n
550
+ \ </citation>\r\n <citation key=\"570_CR18\">\r\n
551
+ \ <journal_title>Bioinformatics</journal_title>\r\n <author>SG
552
+ Lee</author>\r\n <volume>20</volume>\r\n <issue>3</issue>\r\n
553
+ \ <first_page>381</first_page>\r\n <cYear>2004</cYear>\r\n
554
+ \ <doi>10.1093/bioinformatics/btg420</doi>\r\n <unstructured_citation>Lee
555
+ SG, Hur JU, Kim YS: A graph-theoretic modeling on GO space for biological
556
+ interpretation of gene clusters. Bioinformatics. 2004, 20 (3): 381-388. 10.1093/bioinformatics/btg420.</unstructured_citation>\r\n
557
+ \ </citation>\r\n <citation key=\"570_CR19\">\r\n
558
+ \ <journal_title>Nat Genet</journal_title>\r\n <author>M
559
+ Ashburner</author>\r\n <volume>25</volume>\r\n <issue>1</issue>\r\n
560
+ \ <first_page>25</first_page>\r\n <cYear>2000</cYear>\r\n
561
+ \ <doi>10.1038/75556</doi>\r\n <unstructured_citation>Ashburner
562
+ M, Ball CA, Blake JA, Botstein D, Butler H, Cherry JM, Davis AP, Dolinski
563
+ K, Dwight SS, Eppig JT: Gene ontology: tool for the unification of biology.
564
+ The Gene Ontology Consortium. Nat Genet. 2000, 25 (1): 25-29. 10.1038/75556.</unstructured_citation>\r\n
565
+ \ </citation>\r\n <citation key=\"570_CR20\">\r\n
566
+ \ <journal_title>Nucleic Acids Res</journal_title>\r\n <author>CA
567
+ Ball</author>\r\n <volume>28</volume>\r\n <issue>1</issue>\r\n
568
+ \ <first_page>77</first_page>\r\n <cYear>2000</cYear>\r\n
569
+ \ <doi>10.1093/nar/28.1.77</doi>\r\n <unstructured_citation>Ball
570
+ CA, Dolinski K, Dwight SS, Harris MA, Issel-Tarver L, Kasarskis A, Scafe CR,
571
+ Sherlock G, Binkley G, Jin H: Integrating functional genomic information into
572
+ the Saccharomyces genome database. Nucleic Acids Res. 2000, 28 (1): 77-80.
573
+ 10.1093/nar/28.1.77.</unstructured_citation>\r\n </citation>\r\n
574
+ \ <citation key=\"570_CR21\">\r\n <journal_title>Nucleic
575
+ Acids Res</journal_title>\r\n <author>HW Mewes</author>\r\n
576
+ \ <volume>30</volume>\r\n <issue>1</issue>\r\n
577
+ \ <first_page>31</first_page>\r\n <cYear>2002</cYear>\r\n
578
+ \ <doi>10.1093/nar/30.1.31</doi>\r\n <unstructured_citation>Mewes
579
+ HW, Frishman D, Guldener U, Mannhaupt G, Mayer K, Mokrejs M, Morgenstern B,
580
+ Munsterkotter M, Rudd S, Weil B: MIPS: a database for genomes and protein
581
+ sequences. Nucleic Acids Res. 2002, 30 (1): 31-34. 10.1093/nar/30.1.31.</unstructured_citation>\r\n
582
+ \ </citation>\r\n <citation key=\"570_CR22\">\r\n
583
+ \ <journal_title>Nucleic Acids Res</journal_title>\r\n <author>MC
584
+ Costanzo</author>\r\n <volume>29</volume>\r\n <issue>1</issue>\r\n
585
+ \ <first_page>75</first_page>\r\n <cYear>2001</cYear>\r\n
586
+ \ <doi>10.1093/nar/29.1.75</doi>\r\n <unstructured_citation>Costanzo
587
+ MC, Crawford ME, Hirschman JE, Kranz JE, Olsen P, Robertson LS, Skrzypek MS,
588
+ Braun BR, Hopkins KL, Kondu P: YPD, PombePD and WormPD: model organism volumes
589
+ of the BioKnowledge library, an integrated resource for protein information.
590
+ Nucleic Acids Res. 2001, 29 (1): 75-79. 10.1093/nar/29.1.75.</unstructured_citation>\r\n
591
+ \ </citation>\r\n <citation key=\"570_CR23\">\r\n
592
+ \ <journal_title>Curr Opin Microbiol</journal_title>\r\n
593
+ \ <author>R Jansen</author>\r\n <volume>7</volume>\r\n
594
+ \ <issue>5</issue>\r\n <first_page>535</first_page>\r\n
595
+ \ <cYear>2004</cYear>\r\n <doi>10.1016/j.mib.2004.08.012</doi>\r\n
596
+ \ <unstructured_citation>Jansen R, Gerstein M: Analyzing
597
+ protein function on a genomic scale: the importance of gold-standard positives
598
+ and negatives for network prediction. Curr Opin Microbiol. 2004, 7 (5): 535-545.
599
+ 10.1016/j.mib.2004.08.012.</unstructured_citation>\r\n </citation>\r\n
600
+ \ <citation key=\"570_CR24\">\r\n <journal_title>BMC
601
+ Bioinformatics</journal_title>\r\n <author>A Patil</author>\r\n
602
+ \ <volume>6</volume>\r\n <issue>1</issue>\r\n
603
+ \ <first_page>100</first_page>\r\n <cYear>2005</cYear>\r\n
604
+ \ <doi>10.1186/1471-2105-6-100</doi>\r\n <unstructured_citation>Patil
605
+ A, Nakamura H: Filtering high-throughput protein-protein interaction data
606
+ using a combination of genomic features. BMC Bioinformatics. 2005, 6 (1):
607
+ 100-10.1186/1471-2105-6-100.</unstructured_citation>\r\n </citation>\r\n
608
+ \ <citation key=\"570_CR25\">\r\n <journal_title>Nature</journal_title>\r\n
609
+ \ <author>WK Huh</author>\r\n <volume>425</volume>\r\n
610
+ \ <issue>6959</issue>\r\n <first_page>686</first_page>\r\n
611
+ \ <cYear>2003</cYear>\r\n <doi>10.1038/nature02026</doi>\r\n
612
+ \ <unstructured_citation>Huh WK, Falvo JV, Gerke LC, Carroll
613
+ AS, Howson RW, Weissman JS, O'Shea EK: Global analysis of protein localization
614
+ in budding yeast. Nature. 2003, 425 (6959): 686-691. 10.1038/nature02026.</unstructured_citation>\r\n
615
+ \ </citation>\r\n <citation key=\"570_CR26\">\r\n
616
+ \ <journal_title>Mol Cell Proteomics</journal_title>\r\n
617
+ \ <author>CM Deane</author>\r\n <volume>1</volume>\r\n
618
+ \ <issue>5</issue>\r\n <first_page>349</first_page>\r\n
619
+ \ <cYear>2002</cYear>\r\n <doi>10.1074/mcp.M100037-MCP200</doi>\r\n
620
+ \ <unstructured_citation>Deane CM, Salwinski L, Xenarios
621
+ I, Eisenberg D: Protein interactions: two methods for assessment of the reliability
622
+ of high throughput observations. Mol Cell Proteomics. 2002, 1 (5): 349-356.
623
+ 10.1074/mcp.M100037-MCP200.</unstructured_citation>\r\n </citation>\r\n
624
+ \ <citation key=\"570_CR27\">\r\n <author>Y
625
+ Qi</author>\r\n <first_page>531</first_page>\r\n <cYear>2005</cYear>\r\n
626
+ \ <volume_title>Pac Symp Biocomput</volume_title>\r\n <unstructured_citation>Qi
627
+ Y, Klein-Seetharaman J, Bar-Joseph Z: Random forest similarity for protein-protein
628
+ interaction prediction from multiple sources. Pac Symp Biocomput. 2005, 531-542.</unstructured_citation>\r\n
629
+ \ </citation>\r\n <citation key=\"570_CR28\">\r\n
630
+ \ <journal_title>Curr Opin Struct Biol</journal_title>\r\n
631
+ \ <author>P Bork</author>\r\n <volume>14</volume>\r\n
632
+ \ <issue>3</issue>\r\n <first_page>292</first_page>\r\n
633
+ \ <cYear>2004</cYear>\r\n <doi>10.1016/j.sbi.2004.05.003</doi>\r\n
634
+ \ <unstructured_citation>Bork P, Jensen LJ, von Mering C,
635
+ Ramani AK, Lee I, Marcotte EM: Protein interaction networks from yeast to
636
+ human. Curr Opin Struct Biol. 2004, 14 (3): 292-299. 10.1016/j.sbi.2004.05.003.</unstructured_citation>\r\n
637
+ \ </citation>\r\n <citation key=\"570_CR29\">\r\n
638
+ \ <journal_title>Nucleic Acids Res</journal_title>\r\n <author>I
639
+ Xenarios</author>\r\n <volume>28</volume>\r\n <issue>1</issue>\r\n
640
+ \ <first_page>289</first_page>\r\n <cYear>2000</cYear>\r\n
641
+ \ <doi>10.1093/nar/28.1.289</doi>\r\n <unstructured_citation>Xenarios
642
+ I, Rice DW, Salwinski L, Baron MK, Marcotte EM, Eisenberg D: DIP: the database
643
+ of interacting proteins. Nucleic Acids Res. 2000, 28 (1): 289-291. 10.1093/nar/28.1.289.</unstructured_citation>\r\n
644
+ \ </citation>\r\n <citation key=\"570_CR30\">\r\n
645
+ \ <journal_title>Genome Biol</journal_title>\r\n <author>BJ
646
+ Breitkreutz</author>\r\n <volume>4</volume>\r\n <issue>3</issue>\r\n
647
+ \ <first_page>R23</first_page>\r\n <cYear>2003</cYear>\r\n
648
+ \ <doi>10.1186/gb-2003-4-3-r23</doi>\r\n <unstructured_citation>Breitkreutz
649
+ BJ, Stark C, Tyers M: The GRID: the General Repository for Interaction Datasets.
650
+ Genome Biol. 2003, 4 (3): R23-10.1186/gb-2003-4-3-r23.</unstructured_citation>\r\n
651
+ \ </citation>\r\n <citation key=\"570_CR31\">\r\n
652
+ \ <doi provider=\"crossref\">10.1093/nar/gki051</doi>\r\n
653
+ \ <unstructured_citation>Alfarano C, Andrade CE, Anthony
654
+ K, Bahroos N, Bajec M, Bantoft K, Betel D, Bobechko B, Boutilier K, Burgess
655
+ E: The Biomolecular Interaction Network Database and related tools 2005 update.
656
+ Nucleic Acids Res. 2005, D418-424. 33 Database</unstructured_citation>\r\n
657
+ \ </citation>\r\n <citation key=\"570_CR32\">\r\n
658
+ \ <journal_title>Bioinformatics</journal_title>\r\n <author>PW
659
+ Lord</author>\r\n <volume>19</volume>\r\n <issue>10</issue>\r\n
660
+ \ <first_page>1275</first_page>\r\n <cYear>2003</cYear>\r\n
661
+ \ <doi>10.1093/bioinformatics/btg153</doi>\r\n <unstructured_citation>Lord
662
+ PW, Stevens RD, Brass A, Goble CA: Investigating semantic similarity measures
663
+ across the Gene Ontology: the relationship between sequence and annotation.
664
+ Bioinformatics. 2003, 19 (10): 1275-1283. 10.1093/bioinformatics/btg153.</unstructured_citation>\r\n
665
+ \ </citation>\r\n <citation key=\"570_CR33\">\r\n
666
+ \ <journal_title>BMC Bioinformatics</journal_title>\r\n
667
+ \ <author>A Ben-Hur</author>\r\n <volume>7</volume>\r\n
668
+ \ <issue>Suppl61</issue>\r\n <first_page>S2</first_page>\r\n
669
+ \ <cYear>2005</cYear>\r\n <unstructured_citation>Ben-Hur
670
+ A, Noble WS: Choosing negative examples for the prediction of protein-protein
671
+ interactions. BMC Bioinformatics. 2005, 7 (Suppl61): S2-</unstructured_citation>\r\n
672
+ \ </citation>\r\n <citation key=\"570_CR34\">\r\n
673
+ \ <journal_title>Proc Natl Acad Sci U S A</journal_title>\r\n
674
+ \ <author>T Ito</author>\r\n <volume>98</volume>\r\n
675
+ \ <issue>8</issue>\r\n <first_page>4569</first_page>\r\n
676
+ \ <cYear>2001</cYear>\r\n <doi>10.1073/pnas.061034498</doi>\r\n
677
+ \ <unstructured_citation>Ito T, Chiba T, Ozawa R, Yoshida
678
+ M, Hattori M, Sakaki Y: A comprehensive two-hybrid analysis to explore the
679
+ yeast protein interactome. Proc Natl Acad Sci U S A. 2001, 98 (8): 4569-4574.
680
+ 10.1073/pnas.061034498.</unstructured_citation>\r\n </citation>\r\n
681
+ \ <citation key=\"570_CR35\">\r\n <journal_title>Science</journal_title>\r\n
682
+ \ <author>AH Tong</author>\r\n <volume>295</volume>\r\n
683
+ \ <issue>5553</issue>\r\n <first_page>321</first_page>\r\n
684
+ \ <cYear>2002</cYear>\r\n <doi>10.1126/science.1064987</doi>\r\n
685
+ \ <unstructured_citation>Tong AH, Drees B, Nardelli G, Bader
686
+ GD, Brannetti B, Castagnoli L, Evangelista M, Ferracuti S, Nelson B, Paoluzi
687
+ S: A combined experimental and computational strategy to define protein interaction
688
+ networks for peptide recognition modules. Science. 2002, 295 (5553): 321-324.
689
+ 10.1126/science.1064987.</unstructured_citation>\r\n </citation>\r\n
690
+ \ <citation key=\"570_CR36\">\r\n <journal_title>Nature</journal_title>\r\n
691
+ \ <author>Y Ho</author>\r\n <volume>415</volume>\r\n
692
+ \ <issue>6868</issue>\r\n <first_page>180</first_page>\r\n
693
+ \ <cYear>2002</cYear>\r\n <doi>10.1038/415180a</doi>\r\n
694
+ \ <unstructured_citation>Ho Y, Gruhler A, Heilbut A, Bader
695
+ GD, Moore L, Adams SL, Millar A, Taylor P, Bennett K, Boutilier K: Systematic
696
+ identification of protein complexes in Saccharomyces cerevisiae by mass spectrometry.
697
+ Nature. 2002, 415 (6868): 180-183. 10.1038/415180a.</unstructured_citation>\r\n
698
+ \ </citation>\r\n <citation key=\"570_CR37\">\r\n
699
+ \ <journal_title>Mol Biol Cell</journal_title>\r\n <author>AP
700
+ Gasch</author>\r\n <volume>12</volume>\r\n <issue>10</issue>\r\n
701
+ \ <first_page>2987</first_page>\r\n <cYear>2001</cYear>\r\n
702
+ \ <doi>10.1091/mbc.12.10.2987</doi>\r\n <unstructured_citation>Gasch
703
+ AP, Huang M, Metzner S, Botstein D, Elledge SJ, Brown PO: Genomic expression
704
+ responses to DNA-damaging agents and the regulatory role of the yeast ATR
705
+ homolog Mec1p. Mol Biol Cell. 2001, 12 (10): 2987-3003.</unstructured_citation>\r\n
706
+ \ </citation>\r\n <citation key=\"570_CR38\">\r\n
707
+ \ <journal_title>Mol Biol Cell</journal_title>\r\n <author>PT
708
+ Spellman</author>\r\n <volume>9</volume>\r\n <issue>12</issue>\r\n
709
+ \ <first_page>3273</first_page>\r\n <cYear>1998</cYear>\r\n
710
+ \ <doi>10.1091/mbc.9.12.3273</doi>\r\n <unstructured_citation>Spellman
711
+ PT, Sherlock G, Zhang MQ, Iyer VR, Anders K, Eisen MB, Brown PO, Botstein
712
+ D, Futcher B: Comprehensive identification of cell cycle-regulated genes of
713
+ the yeast Saccharomyces cerevisiae by microarray hybridization. Mol Biol Cell.
714
+ 1998, 9 (12): 3273-3297.</unstructured_citation>\r\n </citation>\r\n
715
+ \ </citation_list>\r\n </journal_article>\r\n </journal>\r\n
716
+ \ </crossref>\r\n </doi_record>\r\n </query>\r\n </body>\r\n
717
+ \ </query_result>\r\n</crossref_result>"
718
+ recorded_at: Sun, 12 Mar 2023 22:26:55 GMT
719
+ - request:
720
+ method: get
721
+ uri: https://api.crossref.org/members/297
722
+ body:
723
+ encoding: UTF-8
724
+ string: ''
725
+ headers:
726
+ Connection:
727
+ - close
728
+ Host:
729
+ - api.crossref.org
730
+ User-Agent:
731
+ - http.rb/5.1.1
732
+ response:
733
+ status:
734
+ code: 200
735
+ message: OK
736
+ headers:
737
+ Date:
738
+ - Wed, 15 Mar 2023 08:40:03 GMT
739
+ Content-Type:
740
+ - application/json
741
+ Transfer-Encoding:
742
+ - chunked
743
+ Access-Control-Expose-Headers:
744
+ - Link
745
+ Access-Control-Allow-Headers:
746
+ - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language,
747
+ Accept-Ranges, Cache-Control
748
+ Access-Control-Allow-Origin:
749
+ - "*"
750
+ Server:
751
+ - Jetty(9.4.40.v20210413)
752
+ X-Ratelimit-Limit:
753
+ - '50'
754
+ X-Ratelimit-Interval:
755
+ - 1s
756
+ X-Api-Pool:
757
+ - public
758
+ X-Rate-Limit-Limit:
759
+ - '50'
760
+ X-Rate-Limit-Interval:
761
+ - 1s
762
+ Permissions-Policy:
763
+ - interest-cohort=()
764
+ Connection:
765
+ - close
766
+ body:
767
+ encoding: UTF-8
768
+ string: '{"status":"ok","message-type":"member","message-version":"1.0.0","message":{"last-status-check-time":1678836391304,"primary-name":"Springer
769
+ Science and Business Media LLC","counts":{"current-dois":1598368,"backfile-dois":13838962,"total-dois":15437330},"breakdowns":{"dois-by-issued-year":[[2021,736358],[2022,733875],[2020,697212],[2019,637665],[2018,626548],[2017,607486],[2014,594641],[2016,587068],[2013,576881],[2015,524098],[2012,469435],[2011,453281],[2010,415699],[2009,396635],[2008,321987],[2007,283343],[2006,254428],[2004,251695],[2005,239229],[2003,235973],[2000,234800],[2002,224804],[2001,222693],[1999,205405],[1998,204586],[1997,198590],[1996,184966],[1995,174669],[1994,168573],[1993,166874],[1991,162690],[1992,161610],[1990,157196],[1989,152542],[1988,142665],[1987,136009],[2023,128119],[1986,125401],[1985,117346],[1984,114737],[1983,101538],[1982,99089],[1981,96286],[1980,91140],[1979,84510],[1978,83800],[1977,79820],[1976,73540],[1975,69728],[1974,67709],[1973,63097],[1972,60088],[1971,55889],[1970,53212],[1969,49982],[1968,49136],[1967,47329],[1966,42428],[1965,37392],[1964,33109],[1963,30507],[1962,30011],[1961,29323],[1960,28731],[1959,25568],[1958,24382],[1956,21824],[1957,21738],[1955,19848],[1954,16626],[1953,16613],[1932,16464],[1928,16360],[1930,16166],[1927,15856],[1926,15568],[1929,15312],[1931,15266],[1933,15121],[1952,14911],[1936,14695],[1938,14647],[1950,14397],[1935,14386],[1937,14277],[1939,14038],[1951,13848],[1934,13687],[1925,13399],[1924,13123],[1923,12807],[1922,12348],[1949,11829],[1913,11540],[1921,11423],[1940,11263],[1914,10095],[1941,9997],[1920,9920],[1942,9650],[1948,9414],[1912,9289],[1910,9125],[1911,9062],[1943,8570],[1904,8228],[1903,8049],[1909,7960],[1919,7948],[1908,7909],[1905,7551],[1907,7548],[1902,7371],[1906,7296],[1918,7183],[1901,7167],[1915,7030],[1900,7023],[1916,6836],[1897,6813],[1917,6752],[1899,6699],[1887,6682],[1886,6646],[1888,6500],[1947,6407],[1893,6403],[1898,6389],[1889,6349],[1895,6147],[1891,6106],[1880,6105],[1894,6100],[1944,6070],[1892,6066],[1885,6008],[1896,5963],[1890,5959],[1877,5912],[1884,5694],[1883,5675],[1878,5633],[1882,5623],[1881,5603],[1946,5556],[1876,5486],[1879,5427],[1847,5058],[1945,3954],[1848,3882],[1872,3827],[1875,3819],[1873,3761],[1870,3725],[1874,3641],[1871,3604],[1852,3064],[1849,3025],[1869,3021],[1856,2943],[1855,2836],[1857,2795],[1854,2772],[1851,2733],[1850,2690],[1860,2628],[1867,2586],[1859,2530],[1853,2512],[1868,2447],[1858,2430],[1865,2238],[1863,2148],[1864,2145],[1866,2110],[1862,2043],[1846,1919],[1861,1703],[1845,265],[1844,176],[1843,99],[1837,66],[1840,64],[1835,62],[1833,62],[1400,57],[1834,56],[1838,55],[1841,50],[1832,50],[1839,49],[1842,42],[1836,38],[2024,16],[1827,2],[1815,2]]},"prefixes":["10.1208","10.19150","10.1245","10.7603","10.1007","10.17269","10.4076","10.7123","10.1140","10.1381","10.33283","10.4333","10.1186","10.1065","10.1361","10.4056","10.1023","10.1385","10.26778","10.26777","10.5819","10.1617","10.1013","10.1057","10.1379","10.1038","10.1114","10.3758","10.1557","10.3858","10.7759","10.2165","10.1251","10.5052"],"coverage":{"affiliations-current":1.426454984083765E-4,"similarity-checking-current":0.9963788063825102,"descriptions-current":0.0,"ror-ids-current":0.0,"funders-backfile":0.04590250338139522,"licenses-backfile":0.7181505375908974,"funders-current":0.2503622444893792,"affiliations-backfile":4.790821739376118E-4,"resource-links-backfile":0.532235871447584,"orcids-backfile":0.05140327721110875,"update-policies-current":0.9308407075216721,"ror-ids-backfile":0.0,"orcids-current":0.3930465324631124,"similarity-checking-backfile":0.934759991392418,"references-backfile":0.6702399356252297,"descriptions-backfile":0.0,"award-numbers-backfile":0.03723256122821928,"update-policies-backfile":0.2792704395026159,"licenses-current":0.9950393151014034,"award-numbers-current":0.1939484524214699,"abstracts-backfile":0.03295283273413136,"resource-links-current":0.627209753949028,"abstracts-current":0.2149354841938778,"references-current":0.8618203067128472},"prefix":[{"name":"American
770
+ Association of Pharmaceutical Scientists","value":"10.1208"},{"name":"Society
771
+ for Mining, Metallurgy & Exploration Inc.","value":"10.19150"},{"name":"Springer
772
+ - Society of Surgical Oncology","value":"10.1245"},{"name":"Springer - Global
773
+ Science Journals","value":"10.7603"},{"name":"Springer-Verlag","value":"10.1007"},{"name":"Canadian
774
+ Public Health Association","value":"10.17269"},{"name":"Springer (Cases Network,
775
+ Ltd.)","value":"10.4076"},{"name":"Springer Science and Business Media LLC","value":"10.7123"},{"name":"Springer-Verlag","value":"10.1140"},{"name":"Springer
776
+ - FD Communications","value":"10.1381"},{"name":"Springer Science and Business
777
+ Media LLC","value":"10.33283"},{"name":"Springer - The Korean Society of Pharmaceutical
778
+ Sciences and Technology","value":"10.4333"},{"name":"Springer (Biomed Central
779
+ Ltd.)","value":"10.1186"},{"name":"Springer - Ecomed Publishers","value":"10.1065"},{"name":"Springer
780
+ - ASM International","value":"10.1361"},{"name":"Genomic Standards Consortium","value":"10.4056"},{"name":"Springer
781
+ (Kluwer Academic Publishers)","value":"10.1023"},{"name":"Springer - Humana
782
+ Press","value":"10.1385"},{"name":"SpringerNature","value":"10.26778"},{"name":"SpringerNature","value":"10.26777"},{"name":"Springer
783
+ - (backfiles)","value":"10.5819"},{"name":"Springer - RILEM Publishing","value":"10.1617"},{"name":"Springer
784
+ Science and Business Media LLC","value":"10.1013"},{"name":"Springer Science
785
+ and Business Media LLC","value":"10.1057"},{"name":"Springer - Cell Stress
786
+ Society International","value":"10.1379"},{"name":"Springer Science and Business
787
+ Media LLC","value":"10.1038"},{"name":"Springer (Kluwer Academic Publishers
788
+ - Biomedical Engineering Society (BMES))","value":"10.1114"},{"name":"Springer
789
+ - Psychonomic Society","value":"10.3758"},{"name":"Materials Research Society","value":"10.1557"},{"name":"Springer
790
+ Science and Business Media LLC","value":"10.3858"},{"name":"Cureus, Inc.","value":"10.7759"},{"name":"Springer
791
+ - Adis","value":"10.2165"},{"name":"Springer (Biological Procedures Online)","value":"10.1251"},{"name":"Springer
792
+ - Real Academia de Ciencias Exactas, Fisicas y Naturales","value":"10.5052"}],"id":297,"tokens":["springer","science","and","business","media","llc"],"counts-type":{"all":{"monograph":359,"journal-article":9268581,"book":325977,"reference-entry":85798,"proceedings-article":1149,"journal":2149,"component":3720,"book-chapter":6354804,"reference-book":980,"journal-issue":1311,"dataset":23081},"backfile":{"monograph":359,"journal-article":8293758,"book":295579,"proceedings-article":1149,"book-chapter":5225953,"reference-book":744,"journal-issue":1311,"dataset":20109},"current":{"journal-article":974822,"book":30398,"book-chapter":589942,"reference-book":236,"dataset":2970}},"coverage-type":{"all":{"monograph":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.6295264623955432,"references":0.0,"funders":0.0,"similarity-checking":0.6295264623955432,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.6295264623955432,"descriptions":0.0},"journal-article":{"last-status-check-time":1678836391304,"affiliations":7.399190879380565E-4,"abstracts":0.08426823911880361,"orcids":0.1314145067082005,"licenses":0.8781779001553744,"references":0.7277159254474876,"funders":0.1098825159967853,"similarity-checking":0.9056900943089347,"award-numbers":0.08888048774672196,"ror-ids":0.0,"update-policies":0.3633847511285708,"resource-links":0.8677349855387788,"descriptions":0.0},"book":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.02428698957288398,"licenses":0.9948738714694595,"references":3.067701095476061E-6,"funders":0.004165938087656491,"similarity-checking":0.996597919485117,"award-numbers":5.982017136178318E-4,"ror-ids":0.0,"update-policies":3.067701095476061E-6,"resource-links":0.9945149504412888,"descriptions":0.0},"reference-entry":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.0,"funders":0.0,"similarity-checking":0.005396396186391291,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":0.0},"proceedings-article":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.0,"funders":0.0,"similarity-checking":0.006092254134029591,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":0.0},"journal":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":4.653327128897161E-4,"references":0.0,"funders":0.0,"similarity-checking":0.001861330851558865,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":4.653327128897161E-4,"descriptions":0.0},"component":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.0,"funders":0.0,"similarity-checking":0.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":8.064516129032258E-4},"book-chapter":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.00291621897386607,"orcids":0.01697943791814822,"licenses":0.4821391816332966,"references":0.6538064745978003,"funders":0.001342606317991869,"similarity-checking":0.9694931582468947,"award-numbers":1.995340847648488E-4,"ror-ids":0.0,"update-policies":0.3091165360882885,"resource-links":1.573612655874202E-7,"descriptions":0.0},"reference-book":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.02040816326530612,"licenses":0.9908163265306122,"references":0.0,"funders":0.002040816326530612,"similarity-checking":0.9938775510204082,"award-numbers":0.002040816326530612,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.9908163265306122,"descriptions":0.0},"journal-issue":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.03508771929824561,"references":0.0,"funders":0.0,"similarity-checking":0.07704042715484363,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.03508771929824561,"descriptions":0.0},"dataset":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.2485594211689268,"licenses":0.0,"references":0.0,"funders":0.3061825744118539,"similarity-checking":0.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.8752653697846714,"resource-links":0.0,"descriptions":0.0}},"backfile":{"monograph":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.6295264623955432,"references":0.0,"funders":0.0,"similarity-checking":0.6295264623955432,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.6295264623955432,"descriptions":0.0},"journal-article":{"last-status-check-time":1678836391304,"affiliations":7.993963653147343E-4,"abstracts":0.05450038450603454,"orcids":0.08020332881668359,"licenses":0.8641989554071869,"references":0.7046928545539911,"funders":0.07525394399016706,"similarity-checking":0.8947485566856423,"award-numbers":0.0620168806468672,"ror-ids":0.0,"update-policies":0.2972635565204579,"resource-links":0.8525353645476514,"descriptions":0.0},"book":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.01161449223388671,"licenses":0.9943500722311125,"references":3.383190280770961E-6,"funders":0.001918268889197135,"similarity-checking":0.9964882484885597,"award-numbers":3.586181697617219E-4,"ror-ids":0.0,"update-policies":3.383190280770961E-6,"resource-links":0.9941910622879163,"descriptions":0.0},"proceedings-article":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.0,"funders":0.0,"similarity-checking":0.006092254134029591,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":0.0},"book-chapter":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":7.692376873653475E-4,"orcids":0.007471555905688398,"licenses":0.4738054475422952,"references":0.6565064783399315,"funders":9.860402495009044E-4,"similarity-checking":0.9987971571883635,"award-numbers":1.532734794974237E-4,"ror-ids":0.0,"update-policies":0.2639350181679782,"resource-links":1.913526585485939E-7,"descriptions":0.0},"reference-book":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.01612903225806452,"licenses":0.9879032258064516,"references":0.0,"funders":0.0,"similarity-checking":0.9919354838709677,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.9879032258064516,"descriptions":0.0},"journal-issue":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.03508771929824561,"references":0.0,"funders":0.0,"similarity-checking":0.07704042715484363,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.03508771929824561,"descriptions":0.0},"dataset":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.1834999254065344,"licenses":0.0,"references":0.0,"funders":0.2677905415485603,"similarity-checking":0.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.9979611119399274,"resource-links":0.0,"descriptions":0.0}},"current":{"journal-article":{"last-status-check-time":1678836391304,"affiliations":2.338888535548028E-4,"abstracts":0.3375323905287324,"orcids":0.5671178943437879,"licenses":0.9971102416646321,"references":0.9235963078387645,"funders":0.4045015397682859,"similarity-checking":0.9987802901452778,"award-numbers":0.3174353882042055,"ror-ids":0.0,"update-policies":0.9259423771724479,"resource-links":0.9970527952795485,"descriptions":0.0},"book":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.147509704585828,"licenses":0.9999671030988881,"references":0.0,"funders":0.02602144877952497,"similarity-checking":0.997664320021054,"award-numbers":0.002927824198960458,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.997664320021054,"descriptions":0.0},"book-chapter":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.02459902837906099,"orcids":0.1167148634950554,"licenses":0.9963708296747816,"references":0.8088320546765614,"funders":0.005727681704303135,"similarity-checking":0.9973590624163053,"award-numbers":7.916032423526381E-4,"ror-ids":0.0,"update-policies":0.9917296954615877,"resource-links":0.0,"descriptions":0.0},"reference-book":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.03389830508474576,"licenses":1.0,"references":0.0,"funders":0.00847457627118644,"similarity-checking":1.0,"award-numbers":0.00847457627118644,"ror-ids":0.0,"update-policies":0.0,"resource-links":1.0,"descriptions":0.0},"dataset":{"last-status-check-time":1678836391304,"affiliations":0.0,"abstracts":0.0,"orcids":0.6892255892255892,"licenses":0.0,"references":0.0,"funders":0.5663299663299664,"similarity-checking":0.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.04511784511784512,"resource-links":0.0,"descriptions":0.0}}},"flags":{"deposits-abstracts-current":true,"deposits-orcids-current":true,"deposits":true,"deposits-affiliations-backfile":true,"deposits-update-policies-backfile":true,"deposits-similarity-checking-backfile":true,"deposits-award-numbers-current":true,"deposits-resource-links-current":true,"deposits-ror-ids-current":false,"deposits-articles":true,"deposits-affiliations-current":true,"deposits-funders-current":true,"deposits-references-backfile":true,"deposits-ror-ids-backfile":false,"deposits-abstracts-backfile":true,"deposits-licenses-backfile":true,"deposits-award-numbers-backfile":true,"deposits-descriptions-current":false,"deposits-references-current":true,"deposits-resource-links-backfile":true,"deposits-descriptions-backfile":false,"deposits-orcids-backfile":true,"deposits-funders-backfile":true,"deposits-update-policies-current":true,"deposits-similarity-checking-current":true,"deposits-licenses-current":true},"location":"Dordrecht,
793
+ GX, Netherlands","names":["Springer Science and Business Media LLC","American
794
+ Association of Pharmaceutical Scientists","Society for Mining, Metallurgy
795
+ & Exploration Inc.","Springer - Society of Surgical Oncology","Springer -
796
+ Global Science Journals","Springer-Verlag","Canadian Public Health Association","Springer
797
+ (Cases Network, Ltd.)","Springer - FD Communications","Springer - The Korean
798
+ Society of Pharmaceutical Sciences and Technology","Springer (Biomed Central
799
+ Ltd.)","Springer - Ecomed Publishers","Springer - ASM International","Genomic
800
+ Standards Consortium","Springer (Kluwer Academic Publishers)","Springer -
801
+ Humana Press","SpringerNature","Springer - (backfiles)","Springer - RILEM
802
+ Publishing","Springer - Cell Stress Society International","Springer (Kluwer
803
+ Academic Publishers - Biomedical Engineering Society (BMES))","Springer -
804
+ Psychonomic Society","Materials Research Society","Cureus, Inc.","Springer
805
+ - Adis","Springer (Biological Procedures Online)","Springer - Real Academia
806
+ de Ciencias Exactas, Fisicas y Naturales"]}}'
807
+ recorded_at: Wed, 15 Mar 2023 08:40:03 GMT
808
+ - request:
809
+ method: get
810
+ uri: https://doi.org/ra/10.1186
811
+ body:
812
+ encoding: UTF-8
813
+ string: ''
814
+ headers:
815
+ Connection:
816
+ - close
817
+ Host:
818
+ - doi.org
819
+ User-Agent:
820
+ - http.rb/5.1.1
821
+ response:
822
+ status:
823
+ code: 200
824
+ message: OK
825
+ headers:
826
+ Date:
827
+ - Wed, 15 Mar 2023 09:09:32 GMT
828
+ Content-Type:
829
+ - application/json;charset=UTF-8
830
+ Transfer-Encoding:
831
+ - chunked
832
+ Connection:
833
+ - close
834
+ Permissions-Policy:
835
+ - interest-cohort=(),browsing-topics=()
836
+ Cf-Cache-Status:
837
+ - DYNAMIC
838
+ Report-To:
839
+ - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=MjQF6PykhhL0LjUbhrDjtkX5439T%2FjvdX9uEFMVAdsyDXizlbWhUrxVbb1MOP%2BWm1H57P0cx1lY23AViekDVUoOh182O%2BexcTgxomj8F%2BZUQM%2FRbeRxKSH%2Fmoz1GK4bsf%2Fy96IM%3D"}],"group":"cf-nel","max_age":604800}'
840
+ Nel:
841
+ - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}'
842
+ Strict-Transport-Security:
843
+ - max-age=31536000; includeSubDomains; preload
844
+ Server:
845
+ - cloudflare
846
+ Cf-Ray:
847
+ - 7a839e3dbd031c7a-AMS
848
+ Alt-Svc:
849
+ - h3=":443"; ma=86400, h3-29=":443"; ma=86400
850
+ body:
851
+ encoding: UTF-8
852
+ string: |-
853
+ [
854
+ {
855
+ "DOI": "10.1186",
856
+ "RA": "Crossref"
857
+ }
858
+ ]
859
+ recorded_at: Wed, 15 Mar 2023 09:09:32 GMT
860
+ recorded_with: VCR 6.1.0