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/transform/application/vnd.crossref.unixsd+xml
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, 19 Mar 2023 17:37:11 GMT
23
+ Transfer-Encoding:
24
+ - chunked
25
+ Link:
26
+ - <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>;
27
+ version="vor"; type="application/pdf"; rel="item", <http://link.springer.com/article/10.1186/1471-2164-7-187/fulltext.html>;
28
+ version="vor"; type="text/html"; rel="item", <https://link.springer.com/content/pdf/10.1186/1471-2164-7-187.pdf>;
29
+ version="vor"; type="application/pdf"; rel="item", <http://creativecommons.org/licenses/by/2.0>;
30
+ version="tdm"; rel="license"
31
+ Access-Control-Expose-Headers:
32
+ - Link
33
+ Access-Control-Allow-Headers:
34
+ - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language,
35
+ Accept-Ranges, Cache-Control
36
+ Access-Control-Allow-Origin:
37
+ - "*"
38
+ Server:
39
+ - Jetty(9.4.40.v20210413)
40
+ X-Ratelimit-Limit:
41
+ - '50'
42
+ X-Ratelimit-Interval:
43
+ - 1s
44
+ X-Api-Pool:
45
+ - public
46
+ X-Rate-Limit-Limit:
47
+ - '50'
48
+ X-Rate-Limit-Interval:
49
+ - 1s
50
+ Permissions-Policy:
51
+ - interest-cohort=()
52
+ Connection:
53
+ - close
54
+ body:
55
+ encoding: ASCII-8BIT
56
+ string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<crossref_result xmlns=\"http://www.crossref.org/qrschema/3.0\"
57
+ version=\"3.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.crossref.org/qrschema/3.0
58
+ http://www.crossref.org/schemas/crossref_query_output3.0.xsd\">\r\n <query_result>\r\n
59
+ \ <head>\r\n <doi_batch_id>none</doi_batch_id>\r\n </head>\r\n <body>\r\n
60
+ \ <query status=\"resolved\">\r\n <doi type=\"journal_article\">10.1186/1471-2164-7-187</doi>\r\n
61
+ \ <crm-item name=\"publisher-name\" type=\"string\">Springer Science
62
+ and Business Media LLC</crm-item>\r\n <crm-item name=\"prefix-name\"
63
+ type=\"string\">Springer (Biomed Central Ltd.)</crm-item>\r\n <crm-item
64
+ name=\"member-id\" type=\"number\">297</crm-item>\r\n <crm-item name=\"citation-id\"
65
+ type=\"number\">22586616</crm-item>\r\n <crm-item name=\"journal-id\"
66
+ type=\"number\">5911</crm-item>\r\n <crm-item name=\"deposit-timestamp\"
67
+ type=\"number\">20210831173149578</crm-item>\r\n <crm-item name=\"owner-prefix\"
68
+ type=\"string\">10.1186</crm-item>\r\n <crm-item name=\"last-update\"
69
+ type=\"date\">2021-09-01T01:37:43Z</crm-item>\r\n <crm-item name=\"created\"
70
+ type=\"date\">2006-07-25T18:14:51Z</crm-item>\r\n <crm-item name=\"citedby-count\"
71
+ type=\"number\">171</crm-item>\r\n <crm-item name=\"relation\" type=\"doi\"
72
+ claim=\"isReviewOf\">10.3410/f.1044091.494000</crm-item>\r\n <crm-item
73
+ name=\"relation\" type=\"doi\" claim=\"isReviewOf\">10.3410/f.1044091.496329</crm-item>\r\n
74
+ \ <doi_record>\r\n <crossref xmlns=\"http://www.crossref.org/xschema/1.1\"
75
+ xsi:schemaLocation=\"http://www.crossref.org/xschema/1.1 http://doi.crossref.org/schemas/unixref1.1.xsd\">\r\n
76
+ \ <journal>\r\n <journal_metadata language=\"en\">\r\n
77
+ \ <full_title>BMC Genomics</full_title>\r\n <abbrev_title>BMC
78
+ Genomics</abbrev_title>\r\n <issn media_type=\"electronic\">1471-2164</issn>\r\n
79
+ \ </journal_metadata>\r\n <journal_issue>\r\n <publication_date
80
+ media_type=\"print\">\r\n <month>12</month>\r\n <year>2006</year>\r\n
81
+ \ </publication_date>\r\n <journal_volume>\r\n
82
+ \ <volume>7</volume>\r\n </journal_volume>\r\n
83
+ \ <issue>1</issue>\r\n </journal_issue>\r\n <journal_article
84
+ publication_type=\"full_text\">\r\n <titles>\r\n <title>Finding
85
+ function: evaluation methods for functional genomic data</title>\r\n </titles>\r\n
86
+ \ <contributors>\r\n <person_name sequence=\"first\"
87
+ contributor_role=\"author\">\r\n <given_name>Chad L</given_name>\r\n
88
+ \ <surname>Myers</surname>\r\n </person_name>\r\n
89
+ \ <person_name sequence=\"additional\" contributor_role=\"author\">\r\n
90
+ \ <given_name>Daniel R</given_name>\r\n <surname>Barrett</surname>\r\n
91
+ \ </person_name>\r\n <person_name sequence=\"additional\"
92
+ contributor_role=\"author\">\r\n <given_name>Matthew A</given_name>\r\n
93
+ \ <surname>Hibbs</surname>\r\n </person_name>\r\n
94
+ \ <person_name sequence=\"additional\" contributor_role=\"author\">\r\n
95
+ \ <given_name>Curtis</given_name>\r\n <surname>Huttenhower</surname>\r\n
96
+ \ </person_name>\r\n <person_name sequence=\"additional\"
97
+ contributor_role=\"author\">\r\n <given_name>Olga G</given_name>\r\n
98
+ \ <surname>Troyanskaya</surname>\r\n </person_name>\r\n
99
+ \ </contributors>\r\n <jats:abstract xmlns:jats=\"http://www.ncbi.nlm.nih.gov/JATS1\"
100
+ xml:lang=\"en\">\r\n <jats:title>Abstract</jats:title>\r\n
101
+ \ <jats:sec>\r\n <jats:title>Background</jats:title>\r\n
102
+ \ <jats:p>Accurate evaluation of the quality of genomic
103
+ or proteomic data and computational methods is vital to our ability to use
104
+ them for formulating novel biological hypotheses and directing further experiments.
105
+ There is currently no standard approach to evaluation in functional genomics.
106
+ Our analysis of existing approaches shows that they are inconsistent and contain
107
+ substantial functional biases that render the resulting evaluations misleading
108
+ both quantitatively and qualitatively. These problems make it essentially
109
+ impossible to compare computational methods or large-scale experimental datasets
110
+ and also result in conclusions that generalize poorly in most biological applications.</jats:p>\r\n
111
+ \ </jats:sec>\r\n <jats:sec>\r\n <jats:title>Results</jats:title>\r\n
112
+ \ <jats:p>We reveal issues with current evaluation methods
113
+ here and suggest new approaches to evaluation that facilitate accurate and
114
+ representative characterization of genomic methods and data. Specifically,
115
+ we describe a functional genomics gold standard based on curation by expert
116
+ biologists and demonstrate its use as an effective means of evaluation of
117
+ genomic approaches. Our evaluation framework and gold standard are freely
118
+ available to the community through our website.</jats:p>\r\n </jats:sec>\r\n
119
+ \ <jats:sec>\r\n <jats:title>Conclusion</jats:title>\r\n
120
+ \ <jats:p>Proper methods for evaluating genomic data and
121
+ computational approaches will determine how much we, as a community, are able
122
+ to learn from the wealth of available data. We propose one possible solution
123
+ to this problem here but emphasize that this topic warrants broader community
124
+ discussion.</jats:p>\r\n </jats:sec>\r\n </jats:abstract>\r\n
125
+ \ <publication_date media_type=\"online\">\r\n <month>07</month>\r\n
126
+ \ <day>25</day>\r\n <year>2006</year>\r\n
127
+ \ </publication_date>\r\n <publication_date media_type=\"print\">\r\n
128
+ \ <month>12</month>\r\n <year>2006</year>\r\n
129
+ \ </publication_date>\r\n <publisher_item>\r\n
130
+ \ <item_number item_number_type=\"article-number\">187</item_number>\r\n
131
+ \ <identifier id_type=\"pii\">570</identifier>\r\n </publisher_item>\r\n
132
+ \ <crossmark>\r\n <crossmark_version>1</crossmark_version>\r\n
133
+ \ <crossmark_policy>10.1007/springer_crossmark_policy</crossmark_policy>\r\n
134
+ \ <crossmark_domains>\r\n <crossmark_domain>\r\n
135
+ \ <domain>link.springer.com</domain>\r\n </crossmark_domain>\r\n
136
+ \ </crossmark_domains>\r\n <crossmark_domain_exclusive>false</crossmark_domain_exclusive>\r\n
137
+ \ <custom_metadata>\r\n <assertion group_label=\"Article
138
+ History\" group_name=\"ArticleHistory\" order=\"1\" label=\"Received\" name=\"received\">10
139
+ May 2006</assertion>\r\n <assertion group_label=\"Article
140
+ History\" group_name=\"ArticleHistory\" order=\"2\" label=\"Accepted\" name=\"accepted\">25
141
+ July 2006</assertion>\r\n <assertion group_label=\"Article
142
+ History\" group_name=\"ArticleHistory\" order=\"3\" label=\"First Online\"
143
+ name=\"first_online\">25 July 2006</assertion>\r\n <ai:program
144
+ xmlns:ai=\"http://www.crossref.org/AccessIndicators.xsd\" name=\"AccessIndicators\">\r\n
145
+ \ <ai:license_ref applies_to=\"tdm\">http://creativecommons.org/licenses/by/2.0</ai:license_ref>\r\n
146
+ \ </ai:program>\r\n </custom_metadata>\r\n
147
+ \ </crossmark>\r\n <doi_data>\r\n <doi>10.1186/1471-2164-7-187</doi>\r\n
148
+ \ <timestamp>20210831173149578</timestamp>\r\n <resource
149
+ content_version=\"vor\">https://bmcgenomics.biomedcentral.com/articles/10.1186/1471-2164-7-187</resource>\r\n
150
+ \ <collection property=\"crawler-based\">\r\n <item
151
+ 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
152
+ \ </item>\r\n </collection>\r\n <collection
153
+ property=\"text-mining\">\r\n <item>\r\n <resource
154
+ mime_type=\"application/pdf\">http://link.springer.com/content/pdf/10.1186/1471-2164-7-187.pdf</resource>\r\n
155
+ \ </item>\r\n <item>\r\n <resource
156
+ mime_type=\"text/html\">http://link.springer.com/article/10.1186/1471-2164-7-187/fulltext.html</resource>\r\n
157
+ \ </item>\r\n </collection>\r\n </doi_data>\r\n
158
+ \ <citation_list>\r\n <citation key=\"570_CR1\">\r\n
159
+ \ <author>Z Barutcuoglu</author>\r\n <cYear>2006</cYear>\r\n
160
+ \ <volume_title>Bioinformatics</volume_title>\r\n <unstructured_citation>Barutcuoglu
161
+ Z, Schapire RE, Troyanskaya OG: Hierarchical multi-label prediction of gene
162
+ function. Bioinformatics. 2006</unstructured_citation>\r\n </citation>\r\n
163
+ \ <citation key=\"570_CR2\">\r\n <journal_title>Bioinformatics</journal_title>\r\n
164
+ \ <author>A Clare</author>\r\n <volume>19</volume>\r\n
165
+ \ <issue>Suppl 2</issue>\r\n <first_page>II42</first_page>\r\n
166
+ \ <cYear>2003</cYear>\r\n <doi>10.1093/bioinformatics/btg1058</doi>\r\n
167
+ \ <unstructured_citation>Clare A, King RD: Predicting gene
168
+ function in Saccharomyces cerevisiae. Bioinformatics. 2003, 19 (Suppl 2):
169
+ II42-II49.</unstructured_citation>\r\n </citation>\r\n <citation
170
+ key=\"570_CR3\">\r\n <author>GR Lanckriet</author>\r\n
171
+ \ <first_page>300</first_page>\r\n <cYear>2004</cYear>\r\n
172
+ \ <volume_title>Pac Symp Biocomput</volume_title>\r\n <unstructured_citation>Lanckriet
173
+ GR, Deng M, Cristianini N, Jordan MI, Noble WS: Kernel-based data fusion and
174
+ its application to protein function prediction in yeast. Pac Symp Biocomput.
175
+ 2004, 300-311.</unstructured_citation>\r\n </citation>\r\n
176
+ \ <citation key=\"570_CR4\">\r\n <journal_title>J
177
+ Comput Biol</journal_title>\r\n <author>P Pavlidis</author>\r\n
178
+ \ <volume>9</volume>\r\n <issue>2</issue>\r\n
179
+ \ <first_page>401</first_page>\r\n <cYear>2002</cYear>\r\n
180
+ \ <doi>10.1089/10665270252935539</doi>\r\n <unstructured_citation>Pavlidis
181
+ P, Weston J, Cai J, Noble WS: Learning gene functional classifications from
182
+ multiple data types. J Comput Biol. 2002, 9 (2): 401-411. 10.1089/10665270252935539.</unstructured_citation>\r\n
183
+ \ </citation>\r\n <citation key=\"570_CR5\">\r\n
184
+ \ <journal_title>Bioinformatics</journal_title>\r\n <author>A
185
+ Ben-Hur</author>\r\n <volume>21</volume>\r\n <issue>Suppl
186
+ 1</issue>\r\n <first_page>i38</first_page>\r\n <cYear>2005</cYear>\r\n
187
+ \ <doi>10.1093/bioinformatics/bti1016</doi>\r\n <unstructured_citation>Ben-Hur
188
+ A, Noble WS: Kernel methods for predicting protein-protein interactions. Bioinformatics.
189
+ 2005, 21 (Suppl 1): i38-i46. 10.1093/bioinformatics/bti1016.</unstructured_citation>\r\n
190
+ \ </citation>\r\n <citation key=\"570_CR6\">\r\n
191
+ \ <journal_title>Science</journal_title>\r\n <author>R
192
+ Jansen</author>\r\n <volume>302</volume>\r\n <issue>5644</issue>\r\n
193
+ \ <first_page>449</first_page>\r\n <cYear>2003</cYear>\r\n
194
+ \ <doi>10.1126/science.1087361</doi>\r\n <unstructured_citation>Jansen
195
+ R, Yu H, Greenbaum D, Kluger Y, Krogan NJ, Chung S, Emili A, Snyder M, Greenblatt
196
+ JF, Gerstein M: A Bayesian networks approach for predicting protein-protein
197
+ interactions from genomic data. Science. 2003, 302 (5644): 449-453. 10.1126/science.1087361.</unstructured_citation>\r\n
198
+ \ </citation>\r\n <citation key=\"570_CR7\">\r\n
199
+ \ <journal_title>Science</journal_title>\r\n <author>I
200
+ Lee</author>\r\n <volume>306</volume>\r\n <issue>5701</issue>\r\n
201
+ \ <first_page>1555</first_page>\r\n <cYear>2004</cYear>\r\n
202
+ \ <doi>10.1126/science.1099511</doi>\r\n <unstructured_citation>Lee
203
+ I, Date SV, Adai AT, Marcotte EM: A probabilistic functional network of yeast
204
+ genes. Science. 2004, 306 (5701): 1555-1558. 10.1126/science.1099511.</unstructured_citation>\r\n
205
+ \ </citation>\r\n <citation key=\"570_CR8\">\r\n
206
+ \ <journal_title>BMC Bioinformatics</journal_title>\r\n
207
+ \ <author>N Lin</author>\r\n <volume>5</volume>\r\n
208
+ \ <issue>1</issue>\r\n <first_page>154</first_page>\r\n
209
+ \ <cYear>2004</cYear>\r\n <doi>10.1186/1471-2105-5-154</doi>\r\n
210
+ \ <unstructured_citation>Lin N, Wu B, Jansen R, Gerstein
211
+ M, Zhao H: Information assessment on predicting protein-protein interactions.
212
+ BMC Bioinformatics. 2004, 5 (1): 154-10.1186/1471-2105-5-154.</unstructured_citation>\r\n
213
+ \ </citation>\r\n <citation key=\"570_CR9\">\r\n
214
+ \ <journal_title>Proc Natl Acad Sci USA</journal_title>\r\n
215
+ \ <author>OG Troyanskaya</author>\r\n <volume>100</volume>\r\n
216
+ \ <issue>14</issue>\r\n <first_page>8348</first_page>\r\n
217
+ \ <cYear>2003</cYear>\r\n <doi>10.1073/pnas.0832373100</doi>\r\n
218
+ \ <unstructured_citation>Troyanskaya OG, Dolinski K, Owen
219
+ AB, Altman RB, Botstein D: A Bayesian framework for combining heterogeneous
220
+ data sources for gene function prediction (in Saccharomyces cerevisiae). Proc
221
+ Natl Acad Sci USA. 2003, 100 (14): 8348-8353. 10.1073/pnas.0832373100.</unstructured_citation>\r\n
222
+ \ </citation>\r\n <citation key=\"570_CR10\">\r\n
223
+ \ <journal_title>Trends Genet</journal_title>\r\n <author>SL
224
+ Wong</author>\r\n <volume>21</volume>\r\n <issue>8</issue>\r\n
225
+ \ <first_page>424</first_page>\r\n <cYear>2005</cYear>\r\n
226
+ \ <doi>10.1016/j.tig.2005.06.006</doi>\r\n <unstructured_citation>Wong
227
+ SL, Zhang LV, Roth FP: Discovering functional relationships: biochemistry
228
+ versus genetics. Trends Genet. 2005, 21 (8): 424-427. 10.1016/j.tig.2005.06.006.</unstructured_citation>\r\n
229
+ \ </citation>\r\n <citation key=\"570_CR11\">\r\n
230
+ \ <journal_title>Nucleic Acids Res</journal_title>\r\n <author>M
231
+ Kanehisa</author>\r\n <volume>28</volume>\r\n <issue>1</issue>\r\n
232
+ \ <first_page>27</first_page>\r\n <cYear>2000</cYear>\r\n
233
+ \ <doi>10.1093/nar/28.1.27</doi>\r\n <unstructured_citation>Kanehisa
234
+ M, Goto S: KEGG: kyoto encyclopedia of genes and genomes. Nucleic Acids Res.
235
+ 2000, 28 (1): 27-30. 10.1093/nar/28.1.27.</unstructured_citation>\r\n </citation>\r\n
236
+ \ <citation key=\"570_CR12\">\r\n <journal_title>Bioinformatics</journal_title>\r\n
237
+ \ <author>Y Yamanishi</author>\r\n <volume>20</volume>\r\n
238
+ \ <issue>Suppl 1</issue>\r\n <first_page>I363</first_page>\r\n
239
+ \ <cYear>2004</cYear>\r\n <doi>10.1093/bioinformatics/bth910</doi>\r\n
240
+ \ <unstructured_citation>Yamanishi Y, Vert JP, Kanehisa
241
+ M: Protein network inference from multiple genomic data: a supervised approach.
242
+ Bioinformatics. 2004, 20 (Suppl 1): I363-I370. 10.1093/bioinformatics/bth910.</unstructured_citation>\r\n
243
+ \ </citation>\r\n <citation key=\"570_CR13\">\r\n
244
+ \ <unstructured_citation>GRIFn Home Page. [http://function.princeton.edu/GRIFn]</unstructured_citation>\r\n
245
+ \ </citation>\r\n <citation key=\"570_CR14\">\r\n
246
+ \ <journal_title>Nature</journal_title>\r\n <author>AC
247
+ Gavin</author>\r\n <volume>415</volume>\r\n <issue>6868</issue>\r\n
248
+ \ <first_page>141</first_page>\r\n <cYear>2002</cYear>\r\n
249
+ \ <doi>10.1038/415141a</doi>\r\n <unstructured_citation>Gavin
250
+ AC, Bosche M, Krause R, Grandi P, Marzioch M, Bauer A, Schultz J, Rick JM,
251
+ Michon AM, Cruciat CM: Functional organization of the yeast proteome by systematic
252
+ analysis of protein complexes. Nature. 2002, 415 (6868): 141-147. 10.1038/415141a.</unstructured_citation>\r\n
253
+ \ </citation>\r\n <citation key=\"570_CR15\">\r\n
254
+ \ <journal_title>J Mol Biol</journal_title>\r\n <author>E
255
+ Sprinzak</author>\r\n <volume>327</volume>\r\n <issue>5</issue>\r\n
256
+ \ <first_page>919</first_page>\r\n <cYear>2003</cYear>\r\n
257
+ \ <doi>10.1016/S0022-2836(03)00239-0</doi>\r\n <unstructured_citation>Sprinzak
258
+ E, Sattath S, Margalit H: How reliable are experimental protein-protein interaction
259
+ data?. J Mol Biol. 2003, 327 (5): 919-923. 10.1016/S0022-2836(03)00239-0.</unstructured_citation>\r\n
260
+ \ </citation>\r\n <citation key=\"570_CR16\">\r\n
261
+ \ <journal_title>Nature</journal_title>\r\n <author>P
262
+ Uetz</author>\r\n <volume>403</volume>\r\n <issue>6770</issue>\r\n
263
+ \ <first_page>623</first_page>\r\n <cYear>2000</cYear>\r\n
264
+ \ <doi>10.1038/35001009</doi>\r\n <unstructured_citation>Uetz
265
+ P, Giot L, Cagney G, Mansfield TA, Judson RS, Knight JR, Lockshon D, Narayan
266
+ V, Srinivasan M, Pochart P: A comprehensive analysis of protein-protein interactions
267
+ in Saccharomyces cerevisiae. Nature. 2000, 403 (6770): 623-627. 10.1038/35001009.</unstructured_citation>\r\n
268
+ \ </citation>\r\n <citation key=\"570_CR17\">\r\n
269
+ \ <journal_title>Nature</journal_title>\r\n <author>C
270
+ von Mering</author>\r\n <volume>417</volume>\r\n <issue>6887</issue>\r\n
271
+ \ <first_page>399</first_page>\r\n <cYear>2002</cYear>\r\n
272
+ \ <doi>10.1038/nature750</doi>\r\n <unstructured_citation>von
273
+ Mering C, Krause R, Snel B, Cornell M, Oliver SG, Fields S, Bork P: Comparative
274
+ assessment of large-scale data sets of protein-protein interactions. Nature.
275
+ 2002, 417 (6887): 399-403. 10.1038/nature750.</unstructured_citation>\r\n
276
+ \ </citation>\r\n <citation key=\"570_CR18\">\r\n
277
+ \ <journal_title>Bioinformatics</journal_title>\r\n <author>SG
278
+ Lee</author>\r\n <volume>20</volume>\r\n <issue>3</issue>\r\n
279
+ \ <first_page>381</first_page>\r\n <cYear>2004</cYear>\r\n
280
+ \ <doi>10.1093/bioinformatics/btg420</doi>\r\n <unstructured_citation>Lee
281
+ SG, Hur JU, Kim YS: A graph-theoretic modeling on GO space for biological
282
+ interpretation of gene clusters. Bioinformatics. 2004, 20 (3): 381-388. 10.1093/bioinformatics/btg420.</unstructured_citation>\r\n
283
+ \ </citation>\r\n <citation key=\"570_CR19\">\r\n
284
+ \ <journal_title>Nat Genet</journal_title>\r\n <author>M
285
+ Ashburner</author>\r\n <volume>25</volume>\r\n <issue>1</issue>\r\n
286
+ \ <first_page>25</first_page>\r\n <cYear>2000</cYear>\r\n
287
+ \ <doi>10.1038/75556</doi>\r\n <unstructured_citation>Ashburner
288
+ M, Ball CA, Blake JA, Botstein D, Butler H, Cherry JM, Davis AP, Dolinski
289
+ K, Dwight SS, Eppig JT: Gene ontology: tool for the unification of biology.
290
+ The Gene Ontology Consortium. Nat Genet. 2000, 25 (1): 25-29. 10.1038/75556.</unstructured_citation>\r\n
291
+ \ </citation>\r\n <citation key=\"570_CR20\">\r\n
292
+ \ <journal_title>Nucleic Acids Res</journal_title>\r\n <author>CA
293
+ Ball</author>\r\n <volume>28</volume>\r\n <issue>1</issue>\r\n
294
+ \ <first_page>77</first_page>\r\n <cYear>2000</cYear>\r\n
295
+ \ <doi>10.1093/nar/28.1.77</doi>\r\n <unstructured_citation>Ball
296
+ CA, Dolinski K, Dwight SS, Harris MA, Issel-Tarver L, Kasarskis A, Scafe CR,
297
+ Sherlock G, Binkley G, Jin H: Integrating functional genomic information into
298
+ the Saccharomyces genome database. Nucleic Acids Res. 2000, 28 (1): 77-80.
299
+ 10.1093/nar/28.1.77.</unstructured_citation>\r\n </citation>\r\n
300
+ \ <citation key=\"570_CR21\">\r\n <journal_title>Nucleic
301
+ Acids Res</journal_title>\r\n <author>HW Mewes</author>\r\n
302
+ \ <volume>30</volume>\r\n <issue>1</issue>\r\n
303
+ \ <first_page>31</first_page>\r\n <cYear>2002</cYear>\r\n
304
+ \ <doi>10.1093/nar/30.1.31</doi>\r\n <unstructured_citation>Mewes
305
+ HW, Frishman D, Guldener U, Mannhaupt G, Mayer K, Mokrejs M, Morgenstern B,
306
+ Munsterkotter M, Rudd S, Weil B: MIPS: a database for genomes and protein
307
+ sequences. Nucleic Acids Res. 2002, 30 (1): 31-34. 10.1093/nar/30.1.31.</unstructured_citation>\r\n
308
+ \ </citation>\r\n <citation key=\"570_CR22\">\r\n
309
+ \ <journal_title>Nucleic Acids Res</journal_title>\r\n <author>MC
310
+ Costanzo</author>\r\n <volume>29</volume>\r\n <issue>1</issue>\r\n
311
+ \ <first_page>75</first_page>\r\n <cYear>2001</cYear>\r\n
312
+ \ <doi>10.1093/nar/29.1.75</doi>\r\n <unstructured_citation>Costanzo
313
+ MC, Crawford ME, Hirschman JE, Kranz JE, Olsen P, Robertson LS, Skrzypek MS,
314
+ Braun BR, Hopkins KL, Kondu P: YPD, PombePD and WormPD: model organism volumes
315
+ of the BioKnowledge library, an integrated resource for protein information.
316
+ Nucleic Acids Res. 2001, 29 (1): 75-79. 10.1093/nar/29.1.75.</unstructured_citation>\r\n
317
+ \ </citation>\r\n <citation key=\"570_CR23\">\r\n
318
+ \ <journal_title>Curr Opin Microbiol</journal_title>\r\n
319
+ \ <author>R Jansen</author>\r\n <volume>7</volume>\r\n
320
+ \ <issue>5</issue>\r\n <first_page>535</first_page>\r\n
321
+ \ <cYear>2004</cYear>\r\n <doi>10.1016/j.mib.2004.08.012</doi>\r\n
322
+ \ <unstructured_citation>Jansen R, Gerstein M: Analyzing
323
+ protein function on a genomic scale: the importance of gold-standard positives
324
+ and negatives for network prediction. Curr Opin Microbiol. 2004, 7 (5): 535-545.
325
+ 10.1016/j.mib.2004.08.012.</unstructured_citation>\r\n </citation>\r\n
326
+ \ <citation key=\"570_CR24\">\r\n <journal_title>BMC
327
+ Bioinformatics</journal_title>\r\n <author>A Patil</author>\r\n
328
+ \ <volume>6</volume>\r\n <issue>1</issue>\r\n
329
+ \ <first_page>100</first_page>\r\n <cYear>2005</cYear>\r\n
330
+ \ <doi>10.1186/1471-2105-6-100</doi>\r\n <unstructured_citation>Patil
331
+ A, Nakamura H: Filtering high-throughput protein-protein interaction data
332
+ using a combination of genomic features. BMC Bioinformatics. 2005, 6 (1):
333
+ 100-10.1186/1471-2105-6-100.</unstructured_citation>\r\n </citation>\r\n
334
+ \ <citation key=\"570_CR25\">\r\n <journal_title>Nature</journal_title>\r\n
335
+ \ <author>WK Huh</author>\r\n <volume>425</volume>\r\n
336
+ \ <issue>6959</issue>\r\n <first_page>686</first_page>\r\n
337
+ \ <cYear>2003</cYear>\r\n <doi>10.1038/nature02026</doi>\r\n
338
+ \ <unstructured_citation>Huh WK, Falvo JV, Gerke LC, Carroll
339
+ AS, Howson RW, Weissman JS, O'Shea EK: Global analysis of protein localization
340
+ in budding yeast. Nature. 2003, 425 (6959): 686-691. 10.1038/nature02026.</unstructured_citation>\r\n
341
+ \ </citation>\r\n <citation key=\"570_CR26\">\r\n
342
+ \ <journal_title>Mol Cell Proteomics</journal_title>\r\n
343
+ \ <author>CM Deane</author>\r\n <volume>1</volume>\r\n
344
+ \ <issue>5</issue>\r\n <first_page>349</first_page>\r\n
345
+ \ <cYear>2002</cYear>\r\n <doi>10.1074/mcp.M100037-MCP200</doi>\r\n
346
+ \ <unstructured_citation>Deane CM, Salwinski L, Xenarios
347
+ I, Eisenberg D: Protein interactions: two methods for assessment of the reliability
348
+ of high throughput observations. Mol Cell Proteomics. 2002, 1 (5): 349-356.
349
+ 10.1074/mcp.M100037-MCP200.</unstructured_citation>\r\n </citation>\r\n
350
+ \ <citation key=\"570_CR27\">\r\n <author>Y
351
+ Qi</author>\r\n <first_page>531</first_page>\r\n <cYear>2005</cYear>\r\n
352
+ \ <volume_title>Pac Symp Biocomput</volume_title>\r\n <unstructured_citation>Qi
353
+ Y, Klein-Seetharaman J, Bar-Joseph Z: Random forest similarity for protein-protein
354
+ interaction prediction from multiple sources. Pac Symp Biocomput. 2005, 531-542.</unstructured_citation>\r\n
355
+ \ </citation>\r\n <citation key=\"570_CR28\">\r\n
356
+ \ <journal_title>Curr Opin Struct Biol</journal_title>\r\n
357
+ \ <author>P Bork</author>\r\n <volume>14</volume>\r\n
358
+ \ <issue>3</issue>\r\n <first_page>292</first_page>\r\n
359
+ \ <cYear>2004</cYear>\r\n <doi>10.1016/j.sbi.2004.05.003</doi>\r\n
360
+ \ <unstructured_citation>Bork P, Jensen LJ, von Mering C,
361
+ Ramani AK, Lee I, Marcotte EM: Protein interaction networks from yeast to
362
+ human. Curr Opin Struct Biol. 2004, 14 (3): 292-299. 10.1016/j.sbi.2004.05.003.</unstructured_citation>\r\n
363
+ \ </citation>\r\n <citation key=\"570_CR29\">\r\n
364
+ \ <journal_title>Nucleic Acids Res</journal_title>\r\n <author>I
365
+ Xenarios</author>\r\n <volume>28</volume>\r\n <issue>1</issue>\r\n
366
+ \ <first_page>289</first_page>\r\n <cYear>2000</cYear>\r\n
367
+ \ <doi>10.1093/nar/28.1.289</doi>\r\n <unstructured_citation>Xenarios
368
+ I, Rice DW, Salwinski L, Baron MK, Marcotte EM, Eisenberg D: DIP: the database
369
+ of interacting proteins. Nucleic Acids Res. 2000, 28 (1): 289-291. 10.1093/nar/28.1.289.</unstructured_citation>\r\n
370
+ \ </citation>\r\n <citation key=\"570_CR30\">\r\n
371
+ \ <journal_title>Genome Biol</journal_title>\r\n <author>BJ
372
+ Breitkreutz</author>\r\n <volume>4</volume>\r\n <issue>3</issue>\r\n
373
+ \ <first_page>R23</first_page>\r\n <cYear>2003</cYear>\r\n
374
+ \ <doi>10.1186/gb-2003-4-3-r23</doi>\r\n <unstructured_citation>Breitkreutz
375
+ BJ, Stark C, Tyers M: The GRID: the General Repository for Interaction Datasets.
376
+ Genome Biol. 2003, 4 (3): R23-10.1186/gb-2003-4-3-r23.</unstructured_citation>\r\n
377
+ \ </citation>\r\n <citation key=\"570_CR31\">\r\n
378
+ \ <doi provider=\"crossref\">10.1093/nar/gki051</doi>\r\n
379
+ \ <unstructured_citation>Alfarano C, Andrade CE, Anthony
380
+ K, Bahroos N, Bajec M, Bantoft K, Betel D, Bobechko B, Boutilier K, Burgess
381
+ E: The Biomolecular Interaction Network Database and related tools 2005 update.
382
+ Nucleic Acids Res. 2005, D418-424. 33 Database</unstructured_citation>\r\n
383
+ \ </citation>\r\n <citation key=\"570_CR32\">\r\n
384
+ \ <journal_title>Bioinformatics</journal_title>\r\n <author>PW
385
+ Lord</author>\r\n <volume>19</volume>\r\n <issue>10</issue>\r\n
386
+ \ <first_page>1275</first_page>\r\n <cYear>2003</cYear>\r\n
387
+ \ <doi>10.1093/bioinformatics/btg153</doi>\r\n <unstructured_citation>Lord
388
+ PW, Stevens RD, Brass A, Goble CA: Investigating semantic similarity measures
389
+ across the Gene Ontology: the relationship between sequence and annotation.
390
+ Bioinformatics. 2003, 19 (10): 1275-1283. 10.1093/bioinformatics/btg153.</unstructured_citation>\r\n
391
+ \ </citation>\r\n <citation key=\"570_CR33\">\r\n
392
+ \ <journal_title>BMC Bioinformatics</journal_title>\r\n
393
+ \ <author>A Ben-Hur</author>\r\n <volume>7</volume>\r\n
394
+ \ <issue>Suppl61</issue>\r\n <first_page>S2</first_page>\r\n
395
+ \ <cYear>2005</cYear>\r\n <unstructured_citation>Ben-Hur
396
+ A, Noble WS: Choosing negative examples for the prediction of protein-protein
397
+ interactions. BMC Bioinformatics. 2005, 7 (Suppl61): S2-</unstructured_citation>\r\n
398
+ \ </citation>\r\n <citation key=\"570_CR34\">\r\n
399
+ \ <journal_title>Proc Natl Acad Sci U S A</journal_title>\r\n
400
+ \ <author>T Ito</author>\r\n <volume>98</volume>\r\n
401
+ \ <issue>8</issue>\r\n <first_page>4569</first_page>\r\n
402
+ \ <cYear>2001</cYear>\r\n <doi>10.1073/pnas.061034498</doi>\r\n
403
+ \ <unstructured_citation>Ito T, Chiba T, Ozawa R, Yoshida
404
+ M, Hattori M, Sakaki Y: A comprehensive two-hybrid analysis to explore the
405
+ yeast protein interactome. Proc Natl Acad Sci U S A. 2001, 98 (8): 4569-4574.
406
+ 10.1073/pnas.061034498.</unstructured_citation>\r\n </citation>\r\n
407
+ \ <citation key=\"570_CR35\">\r\n <journal_title>Science</journal_title>\r\n
408
+ \ <author>AH Tong</author>\r\n <volume>295</volume>\r\n
409
+ \ <issue>5553</issue>\r\n <first_page>321</first_page>\r\n
410
+ \ <cYear>2002</cYear>\r\n <doi>10.1126/science.1064987</doi>\r\n
411
+ \ <unstructured_citation>Tong AH, Drees B, Nardelli G, Bader
412
+ GD, Brannetti B, Castagnoli L, Evangelista M, Ferracuti S, Nelson B, Paoluzi
413
+ S: A combined experimental and computational strategy to define protein interaction
414
+ networks for peptide recognition modules. Science. 2002, 295 (5553): 321-324.
415
+ 10.1126/science.1064987.</unstructured_citation>\r\n </citation>\r\n
416
+ \ <citation key=\"570_CR36\">\r\n <journal_title>Nature</journal_title>\r\n
417
+ \ <author>Y Ho</author>\r\n <volume>415</volume>\r\n
418
+ \ <issue>6868</issue>\r\n <first_page>180</first_page>\r\n
419
+ \ <cYear>2002</cYear>\r\n <doi>10.1038/415180a</doi>\r\n
420
+ \ <unstructured_citation>Ho Y, Gruhler A, Heilbut A, Bader
421
+ GD, Moore L, Adams SL, Millar A, Taylor P, Bennett K, Boutilier K: Systematic
422
+ identification of protein complexes in Saccharomyces cerevisiae by mass spectrometry.
423
+ Nature. 2002, 415 (6868): 180-183. 10.1038/415180a.</unstructured_citation>\r\n
424
+ \ </citation>\r\n <citation key=\"570_CR37\">\r\n
425
+ \ <journal_title>Mol Biol Cell</journal_title>\r\n <author>AP
426
+ Gasch</author>\r\n <volume>12</volume>\r\n <issue>10</issue>\r\n
427
+ \ <first_page>2987</first_page>\r\n <cYear>2001</cYear>\r\n
428
+ \ <doi>10.1091/mbc.12.10.2987</doi>\r\n <unstructured_citation>Gasch
429
+ AP, Huang M, Metzner S, Botstein D, Elledge SJ, Brown PO: Genomic expression
430
+ responses to DNA-damaging agents and the regulatory role of the yeast ATR
431
+ homolog Mec1p. Mol Biol Cell. 2001, 12 (10): 2987-3003.</unstructured_citation>\r\n
432
+ \ </citation>\r\n <citation key=\"570_CR38\">\r\n
433
+ \ <journal_title>Mol Biol Cell</journal_title>\r\n <author>PT
434
+ Spellman</author>\r\n <volume>9</volume>\r\n <issue>12</issue>\r\n
435
+ \ <first_page>3273</first_page>\r\n <cYear>1998</cYear>\r\n
436
+ \ <doi>10.1091/mbc.9.12.3273</doi>\r\n <unstructured_citation>Spellman
437
+ PT, Sherlock G, Zhang MQ, Iyer VR, Anders K, Eisen MB, Brown PO, Botstein
438
+ D, Futcher B: Comprehensive identification of cell cycle-regulated genes of
439
+ the yeast Saccharomyces cerevisiae by microarray hybridization. Mol Biol Cell.
440
+ 1998, 9 (12): 3273-3297.</unstructured_citation>\r\n </citation>\r\n
441
+ \ </citation_list>\r\n </journal_article>\r\n </journal>\r\n
442
+ \ </crossref>\r\n </doi_record>\r\n </query>\r\n </body>\r\n
443
+ \ </query_result>\r\n</crossref_result>"
444
+ recorded_at: Sun, 19 Mar 2023 17:37:11 GMT
445
+ - request:
446
+ method: get
447
+ uri: https://doi.org/ra/10.1186
448
+ body:
449
+ encoding: UTF-8
450
+ string: ''
451
+ headers:
452
+ Connection:
453
+ - close
454
+ Host:
455
+ - doi.org
456
+ User-Agent:
457
+ - http.rb/5.1.1
458
+ response:
459
+ status:
460
+ code: 200
461
+ message: OK
462
+ headers:
463
+ Date:
464
+ - Sun, 19 Mar 2023 17:40:25 GMT
465
+ Content-Type:
466
+ - application/json;charset=UTF-8
467
+ Transfer-Encoding:
468
+ - chunked
469
+ Connection:
470
+ - close
471
+ Permissions-Policy:
472
+ - interest-cohort=(),browsing-topics=()
473
+ Cf-Cache-Status:
474
+ - DYNAMIC
475
+ Report-To:
476
+ - '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=kHR%2B0y3oYO2mBah8jFywWquEs69Wk6T%2Bl1Jsexfh3KIbWImm9RDvHtMmhf4%2FbitmkB9oSmySs7yYKR0hke%2FOoRqIAtbHx5C0BXDUN%2FTme%2F9krltROaPv41iOk4DvZOkGKfMcrfQ%3D"}],"group":"cf-nel","max_age":604800}'
477
+ Nel:
478
+ - '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}'
479
+ Strict-Transport-Security:
480
+ - max-age=31536000; includeSubDomains; preload
481
+ Server:
482
+ - cloudflare
483
+ Cf-Ray:
484
+ - 7aa78019aefeb778-AMS
485
+ Alt-Svc:
486
+ - h3=":443"; ma=86400, h3-29=":443"; ma=86400
487
+ body:
488
+ encoding: UTF-8
489
+ string: |-
490
+ [
491
+ {
492
+ "DOI": "10.1186",
493
+ "RA": "Crossref"
494
+ }
495
+ ]
496
+ recorded_at: Sun, 19 Mar 2023 17:40:25 GMT
497
+ - request:
498
+ method: get
499
+ uri: https://api.crossref.org/works/10.1186/1471-2164-7-187
500
+ body:
501
+ encoding: UTF-8
502
+ string: ''
503
+ headers:
504
+ Connection:
505
+ - close
506
+ Host:
507
+ - api.crossref.org
508
+ User-Agent:
509
+ - http.rb/5.1.1
510
+ response:
511
+ status:
512
+ code: 200
513
+ message: OK
514
+ headers:
515
+ Date:
516
+ - Sun, 19 Mar 2023 17:40:25 GMT
517
+ Content-Type:
518
+ - application/json
519
+ Transfer-Encoding:
520
+ - chunked
521
+ Access-Control-Expose-Headers:
522
+ - Link
523
+ Access-Control-Allow-Headers:
524
+ - X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language,
525
+ Accept-Ranges, Cache-Control
526
+ Access-Control-Allow-Origin:
527
+ - "*"
528
+ Server:
529
+ - Jetty(9.4.40.v20210413)
530
+ X-Ratelimit-Limit:
531
+ - '50'
532
+ X-Ratelimit-Interval:
533
+ - 1s
534
+ X-Api-Pool:
535
+ - public
536
+ X-Rate-Limit-Limit:
537
+ - '50'
538
+ X-Rate-Limit-Interval:
539
+ - 1s
540
+ Permissions-Policy:
541
+ - interest-cohort=()
542
+ Connection:
543
+ - close
544
+ body:
545
+ encoding: UTF-8
546
+ 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
547
+ 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
548
+ 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
549
+ evaluation of the quality of genomic or proteomic data and computational methods
550
+ is vital to our ability to use them for formulating novel biological hypotheses
551
+ and directing further experiments. There is currently no standard approach
552
+ to evaluation in functional genomics. Our analysis of existing approaches
553
+ shows that they are inconsistent and contain substantial functional biases
554
+ that render the resulting evaluations misleading both quantitatively and qualitatively.
555
+ These problems make it essentially impossible to compare computational methods
556
+ or large-scale experimental datasets and also result in conclusions that generalize
557
+ poorly in most biological applications.<\/jats:p>\n <\/jats:sec>\n <jats:sec>\n <jats:title>Results<\/jats:title>\n <jats:p>We
558
+ reveal issues with current evaluation methods here and suggest new approaches
559
+ to evaluation that facilitate accurate and representative characterization
560
+ of genomic methods and data. Specifically, we describe a functional genomics
561
+ gold standard based on curation by expert biologists and demonstrate its use
562
+ as an effective means of evaluation of genomic approaches. Our evaluation
563
+ framework and gold standard are freely available to the community through
564
+ our website.<\/jats:p>\n <\/jats:sec>\n <jats:sec>\n <jats:title>Conclusion<\/jats:title>\n <jats:p>Proper
565
+ methods for evaluating genomic data and computational approaches will determine
566
+ how much we, as a community, are able to learn from the wealth of available
567
+ data. We propose one possible solution to this problem here but emphasize
568
+ 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
569
+ function: evaluation methods for functional genomic data"],"prefix":"10.1186","volume":"7","author":[{"given":"Chad
570
+ L","family":"Myers","sequence":"first","affiliation":[]},{"given":"Daniel
571
+ R","family":"Barrett","sequence":"additional","affiliation":[]},{"given":"Matthew
572
+ A","family":"Hibbs","sequence":"additional","affiliation":[]},{"given":"Curtis","family":"Huttenhower","sequence":"additional","affiliation":[]},{"given":"Olga
573
+ G","family":"Troyanskaya","sequence":"additional","affiliation":[]}],"member":"297","published-online":{"date-parts":[[2006,7,25]]},"reference":[{"key":"570_CR1","volume-title":"Bioinformatics","author":"Z
574
+ Barutcuoglu","year":"2006","unstructured":"Barutcuoglu Z, Schapire RE, Troyanskaya
575
+ OG: Hierarchical multi-label prediction of gene function. Bioinformatics.
576
+ 2006"},{"issue":"Suppl 2","key":"570_CR2","doi-asserted-by":"publisher","first-page":"II42","DOI":"10.1093\/bioinformatics\/btg1058","volume":"19","author":"A
577
+ Clare","year":"2003","unstructured":"Clare A, King RD: Predicting gene function
578
+ in Saccharomyces cerevisiae. Bioinformatics. 2003, 19 (Suppl 2): II42-II49.","journal-title":"Bioinformatics"},{"key":"570_CR3","first-page":"300","volume-title":"Pac
579
+ Symp Biocomput","author":"GR Lanckriet","year":"2004","unstructured":"Lanckriet
580
+ GR, Deng M, Cristianini N, Jordan MI, Noble WS: Kernel-based data fusion and
581
+ its application to protein function prediction in yeast. Pac Symp Biocomput.
582
+ 2004, 300-311."},{"issue":"2","key":"570_CR4","doi-asserted-by":"publisher","first-page":"401","DOI":"10.1089\/10665270252935539","volume":"9","author":"P
583
+ Pavlidis","year":"2002","unstructured":"Pavlidis P, Weston J, Cai J, Noble
584
+ WS: Learning gene functional classifications from multiple data types. J Comput
585
+ Biol. 2002, 9 (2): 401-411. 10.1089\/10665270252935539.","journal-title":"J
586
+ Comput Biol"},{"issue":"Suppl 1","key":"570_CR5","doi-asserted-by":"publisher","first-page":"i38","DOI":"10.1093\/bioinformatics\/bti1016","volume":"21","author":"A
587
+ Ben-Hur","year":"2005","unstructured":"Ben-Hur A, Noble WS: Kernel methods
588
+ for predicting protein-protein interactions. Bioinformatics. 2005, 21 (Suppl
589
+ 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
590
+ Jansen","year":"2003","unstructured":"Jansen R, Yu H, Greenbaum D, Kluger
591
+ Y, Krogan NJ, Chung S, Emili A, Snyder M, Greenblatt JF, Gerstein M: A Bayesian
592
+ networks approach for predicting protein-protein interactions from genomic
593
+ 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
594
+ Lee","year":"2004","unstructured":"Lee I, Date SV, Adai AT, Marcotte EM: A
595
+ probabilistic functional network of yeast genes. Science. 2004, 306 (5701):
596
+ 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
597
+ Lin","year":"2004","unstructured":"Lin N, Wu B, Jansen R, Gerstein M, Zhao
598
+ H: Information assessment on predicting protein-protein interactions. BMC
599
+ Bioinformatics. 2004, 5 (1): 154-10.1186\/1471-2105-5-154.","journal-title":"BMC
600
+ Bioinformatics"},{"issue":"14","key":"570_CR9","doi-asserted-by":"publisher","first-page":"8348","DOI":"10.1073\/pnas.0832373100","volume":"100","author":"OG
601
+ Troyanskaya","year":"2003","unstructured":"Troyanskaya OG, Dolinski K, Owen
602
+ AB, Altman RB, Botstein D: A Bayesian framework for combining heterogeneous
603
+ data sources for gene function prediction (in Saccharomyces cerevisiae). Proc
604
+ Natl Acad Sci USA. 2003, 100 (14): 8348-8353. 10.1073\/pnas.0832373100.","journal-title":"Proc
605
+ 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
606
+ Wong","year":"2005","unstructured":"Wong SL, Zhang LV, Roth FP: Discovering
607
+ functional relationships: biochemistry versus genetics. Trends Genet. 2005,
608
+ 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
609
+ Kanehisa","year":"2000","unstructured":"Kanehisa M, Goto S: KEGG: kyoto encyclopedia
610
+ of genes and genomes. Nucleic Acids Res. 2000, 28 (1): 27-30. 10.1093\/nar\/28.1.27.","journal-title":"Nucleic
611
+ Acids Res"},{"issue":"Suppl 1","key":"570_CR12","doi-asserted-by":"publisher","first-page":"I363","DOI":"10.1093\/bioinformatics\/bth910","volume":"20","author":"Y
612
+ Yamanishi","year":"2004","unstructured":"Yamanishi Y, Vert JP, Kanehisa M:
613
+ Protein network inference from multiple genomic data: a supervised approach.
614
+ Bioinformatics. 2004, 20 (Suppl 1): I363-I370. 10.1093\/bioinformatics\/bth910.","journal-title":"Bioinformatics"},{"key":"570_CR13","unstructured":"GRIFn
615
+ 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
616
+ Gavin","year":"2002","unstructured":"Gavin AC, Bosche M, Krause R, Grandi
617
+ P, Marzioch M, Bauer A, Schultz J, Rick JM, Michon AM, Cruciat CM: Functional
618
+ organization of the yeast proteome by systematic analysis of protein complexes.
619
+ 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
620
+ Sprinzak","year":"2003","unstructured":"Sprinzak E, Sattath S, Margalit H:
621
+ How reliable are experimental protein-protein interaction data?. J Mol Biol.
622
+ 2003, 327 (5): 919-923. 10.1016\/S0022-2836(03)00239-0.","journal-title":"J
623
+ Mol Biol"},{"issue":"6770","key":"570_CR16","doi-asserted-by":"publisher","first-page":"623","DOI":"10.1038\/35001009","volume":"403","author":"P
624
+ Uetz","year":"2000","unstructured":"Uetz P, Giot L, Cagney G, Mansfield TA,
625
+ Judson RS, Knight JR, Lockshon D, Narayan V, Srinivasan M, Pochart P: A comprehensive
626
+ analysis of protein-protein interactions in Saccharomyces cerevisiae. Nature.
627
+ 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
628
+ von Mering","year":"2002","unstructured":"von Mering C, Krause R, Snel B,
629
+ Cornell M, Oliver SG, Fields S, Bork P: Comparative assessment of large-scale
630
+ data sets of protein-protein interactions. Nature. 2002, 417 (6887): 399-403.
631
+ 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
632
+ Lee","year":"2004","unstructured":"Lee SG, Hur JU, Kim YS: A graph-theoretic
633
+ modeling on GO space for biological interpretation of gene clusters. Bioinformatics.
634
+ 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
635
+ Ashburner","year":"2000","unstructured":"Ashburner M, Ball CA, Blake JA, Botstein
636
+ D, Butler H, Cherry JM, Davis AP, Dolinski K, Dwight SS, Eppig JT: Gene ontology:
637
+ tool for the unification of biology. The Gene Ontology Consortium. Nat Genet.
638
+ 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
639
+ Ball","year":"2000","unstructured":"Ball CA, Dolinski K, Dwight SS, Harris
640
+ MA, Issel-Tarver L, Kasarskis A, Scafe CR, Sherlock G, Binkley G, Jin H: Integrating
641
+ functional genomic information into the Saccharomyces genome database. Nucleic
642
+ Acids Res. 2000, 28 (1): 77-80. 10.1093\/nar\/28.1.77.","journal-title":"Nucleic
643
+ 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
644
+ Mewes","year":"2002","unstructured":"Mewes HW, Frishman D, Guldener U, Mannhaupt
645
+ G, Mayer K, Mokrejs M, Morgenstern B, Munsterkotter M, Rudd S, Weil B: MIPS:
646
+ a database for genomes and protein sequences. Nucleic Acids Res. 2002, 30
647
+ (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
648
+ Costanzo","year":"2001","unstructured":"Costanzo MC, Crawford ME, Hirschman
649
+ JE, Kranz JE, Olsen P, Robertson LS, Skrzypek MS, Braun BR, Hopkins KL, Kondu
650
+ P: YPD, PombePD and WormPD: model organism volumes of the BioKnowledge library,
651
+ an integrated resource for protein information. Nucleic Acids Res. 2001, 29
652
+ (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
653
+ Jansen","year":"2004","unstructured":"Jansen R, Gerstein M: Analyzing protein
654
+ function on a genomic scale: the importance of gold-standard positives and
655
+ negatives for network prediction. Curr Opin Microbiol. 2004, 7 (5): 535-545.
656
+ 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
657
+ Patil","year":"2005","unstructured":"Patil A, Nakamura H: Filtering high-throughput
658
+ protein-protein interaction data using a combination of genomic features.
659
+ BMC Bioinformatics. 2005, 6 (1): 100-10.1186\/1471-2105-6-100.","journal-title":"BMC
660
+ Bioinformatics"},{"issue":"6959","key":"570_CR25","doi-asserted-by":"publisher","first-page":"686","DOI":"10.1038\/nature02026","volume":"425","author":"WK
661
+ Huh","year":"2003","unstructured":"Huh WK, Falvo JV, Gerke LC, Carroll AS,
662
+ Howson RW, Weissman JS, O''Shea EK: Global analysis of protein localization
663
+ 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
664
+ Deane","year":"2002","unstructured":"Deane CM, Salwinski L, Xenarios I, Eisenberg
665
+ D: Protein interactions: two methods for assessment of the reliability of
666
+ high throughput observations. Mol Cell Proteomics. 2002, 1 (5): 349-356. 10.1074\/mcp.M100037-MCP200.","journal-title":"Mol
667
+ Cell Proteomics"},{"key":"570_CR27","first-page":"531","volume-title":"Pac
668
+ Symp Biocomput","author":"Y Qi","year":"2005","unstructured":"Qi Y, Klein-Seetharaman
669
+ J, Bar-Joseph Z: Random forest similarity for protein-protein interaction
670
+ 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
671
+ Bork","year":"2004","unstructured":"Bork P, Jensen LJ, von Mering C, Ramani
672
+ AK, Lee I, Marcotte EM: Protein interaction networks from yeast to human.
673
+ Curr Opin Struct Biol. 2004, 14 (3): 292-299. 10.1016\/j.sbi.2004.05.003.","journal-title":"Curr
674
+ 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
675
+ Xenarios","year":"2000","unstructured":"Xenarios I, Rice DW, Salwinski L,
676
+ Baron MK, Marcotte EM, Eisenberg D: DIP: the database of interacting proteins.
677
+ Nucleic Acids Res. 2000, 28 (1): 289-291. 10.1093\/nar\/28.1.289.","journal-title":"Nucleic
678
+ 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
679
+ Breitkreutz","year":"2003","unstructured":"Breitkreutz BJ, Stark C, Tyers
680
+ M: The GRID: the General Repository for Interaction Datasets. Genome Biol.
681
+ 2003, 4 (3): R23-10.1186\/gb-2003-4-3-r23.","journal-title":"Genome Biol"},{"key":"570_CR31","doi-asserted-by":"crossref","unstructured":"Alfarano
682
+ C, Andrade CE, Anthony K, Bahroos N, Bajec M, Bantoft K, Betel D, Bobechko
683
+ B, Boutilier K, Burgess E: The Biomolecular Interaction Network Database and
684
+ 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
685
+ Lord","year":"2003","unstructured":"Lord PW, Stevens RD, Brass A, Goble CA:
686
+ Investigating semantic similarity measures across the Gene Ontology: the relationship
687
+ between sequence and annotation. Bioinformatics. 2003, 19 (10): 1275-1283.
688
+ 10.1093\/bioinformatics\/btg153.","journal-title":"Bioinformatics"},{"issue":"Suppl61","key":"570_CR33","first-page":"S2","volume":"7","author":"A
689
+ Ben-Hur","year":"2005","unstructured":"Ben-Hur A, Noble WS: Choosing negative
690
+ examples for the prediction of protein-protein interactions. BMC Bioinformatics.
691
+ 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
692
+ Ito","year":"2001","unstructured":"Ito T, Chiba T, Ozawa R, Yoshida M, Hattori
693
+ M, Sakaki Y: A comprehensive two-hybrid analysis to explore the yeast protein
694
+ interactome. Proc Natl Acad Sci U S A. 2001, 98 (8): 4569-4574. 10.1073\/pnas.061034498.","journal-title":"Proc
695
+ 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
696
+ Tong","year":"2002","unstructured":"Tong AH, Drees B, Nardelli G, Bader GD,
697
+ Brannetti B, Castagnoli L, Evangelista M, Ferracuti S, Nelson B, Paoluzi S:
698
+ A combined experimental and computational strategy to define protein interaction
699
+ networks for peptide recognition modules. Science. 2002, 295 (5553): 321-324.
700
+ 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
701
+ Ho","year":"2002","unstructured":"Ho Y, Gruhler A, Heilbut A, Bader GD, Moore
702
+ L, Adams SL, Millar A, Taylor P, Bennett K, Boutilier K: Systematic identification
703
+ of protein complexes in Saccharomyces cerevisiae by mass spectrometry. Nature.
704
+ 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
705
+ Gasch","year":"2001","unstructured":"Gasch AP, Huang M, Metzner S, Botstein
706
+ D, Elledge SJ, Brown PO: Genomic expression responses to DNA-damaging agents
707
+ and the regulatory role of the yeast ATR homolog Mec1p. Mol Biol Cell. 2001,
708
+ 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
709
+ Spellman","year":"1998","unstructured":"Spellman PT, Sherlock G, Zhang MQ,
710
+ Iyer VR, Anders K, Eisen MB, Brown PO, Botstein D, Futcher B: Comprehensive
711
+ identification of cell cycle-regulated genes of the yeast Saccharomyces cerevisiae
712
+ by microarray hybridization. Mol Biol Cell. 1998, 9 (12): 3273-3297.","journal-title":"Mol
713
+ 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
714
+ May 2006","order":1,"name":"received","label":"Received","group":{"name":"ArticleHistory","label":"Article
715
+ History"}},{"value":"25 July 2006","order":2,"name":"accepted","label":"Accepted","group":{"name":"ArticleHistory","label":"Article
716
+ History"}},{"value":"25 July 2006","order":3,"name":"first_online","label":"First
717
+ Online","group":{"name":"ArticleHistory","label":"Article History"}}],"article-number":"187"}}'
718
+ recorded_at: Sun, 19 Mar 2023 17:40:25 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
+ - Sun, 19 Mar 2023 17:40:27 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":1679182207757,"primary-name":"Springer
769
+ Science and Business Media LLC","counts":{"current-dois":1606225,"backfile-dois":13838967,"total-dois":15445192},"breakdowns":{"dois-by-issued-year":[[2021,736365],[2022,734422],[2020,697215],[2019,637665],[2018,626548],[2017,607486],[2014,594641],[2016,587066],[2013,576909],[2015,524098],[2012,469411],[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,135422],[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.41947734595091E-4,"similarity-checking-current":0.9963797101900419,"descriptions-current":0.0,"ror-ids-current":0.0,"funders-backfile":0.04590248679688303,"licenses-backfile":0.7181543246688861,"funders-current":0.2502519883577955,"affiliations-backfile":4.790820008458724E-4,"resource-links-backfile":0.5322356791514858,"orcids-backfile":0.05140333089890308,"update-policies-current":0.930842192096375,"ror-ids-backfile":0.0,"orcids-current":0.3929244034926614,"similarity-checking-backfile":0.9347590755870724,"references-backfile":0.6702391153906213,"descriptions-backfile":0.0,"award-numbers-backfile":0.03723254777614543,"update-policies-backfile":0.2792747464460317,"licenses-current":0.9949017105324596,"award-numbers-current":0.1938308767451633,"abstracts-backfile":0.03296402108625593,"resource-links-current":0.6267521673489082,"abstracts-current":0.2148901928434684,"references-current":0.8617877321047798},"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":9272820,"book":326154,"reference-entry":85798,"proceedings-article":1149,"journal":2149,"component":3733,"book-chapter":6358222,"reference-book":981,"journal-issue":1311,"dataset":23108},"backfile":{"monograph":359,"journal-article":8293758,"book":295581,"proceedings-article":1149,"book-chapter":5225957,"reference-book":743,"journal-issue":1311,"dataset":20109},"current":{"journal-article":979061,"book":30573,"book-chapter":593356,"reference-book":238,"dataset":2997}},"coverage-type":{"all":{"monograph":{"last-status-check-time":1679182207757,"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":1679182207757,"affiliations":7.395808394857228E-4,"abstracts":0.08440927355432327,"orcids":0.1315967526599244,"licenses":0.8782095414339974,"references":0.7278049180292511,"funders":0.1100220860536493,"similarity-checking":0.9057332073738086,"award-numbers":0.0889837180059572,"ror-ids":0.0,"update-policies":0.3636407263378347,"resource-links":0.8677714007173654,"descriptions":0.0},"book":{"last-status-check-time":1679182207757,"affiliations":0.0,"abstracts":0.0,"orcids":0.02437192246607431,"licenses":0.9948735873237796,"references":3.066036289605524E-6,"funders":0.004182073499021934,"similarity-checking":0.9965966997185379,"award-numbers":6.009431127626827E-4,"ror-ids":0.0,"update-policies":3.066036289605524E-6,"resource-links":0.9945148610778957,"descriptions":0.0},"reference-entry":{"last-status-check-time":1679182207757,"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":1679182207757,"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":1679182207757,"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":1679182207757,"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.036431824270024E-4},"book-chapter":{"last-status-check-time":1679182207757,"affiliations":0.0,"abstracts":0.002931322624469545,"orcids":0.01706388987361561,"licenses":0.4824241745569752,"references":0.6538955387213595,"funders":0.001342985507583724,"similarity-checking":0.9695076705406008,"award-numbers":1.994268208942689E-4,"ror-ids":0.0,"update-policies":0.3094950129139876,"resource-links":1.572766726295496E-7,"descriptions":0.0},"reference-book":{"last-status-check-time":1679182207757,"affiliations":0.0,"abstracts":0.0,"orcids":0.02038735983690112,"licenses":0.9908256880733946,"references":0.0,"funders":0.002038735983690112,"similarity-checking":0.9938837920489297,"award-numbers":0.002038735983690112,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.9908256880733946,"descriptions":0.0},"journal-issue":{"last-status-check-time":1679182207757,"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":1679182207757,"affiliations":0.0,"abstracts":0.0,"orcids":0.249091223818591,"licenses":0.0,"references":0.0,"funders":0.3065604985286481,"similarity-checking":0.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.8742426865154925,"resource-links":0.0,"descriptions":0.0}},"backfile":{"monograph":{"last-status-check-time":1679182207757,"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":1679182207757,"affiliations":7.993963653147343E-4,"abstracts":0.05451907325967312,"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.2972639182382703,"resource-links":0.8525353645476514,"descriptions":0.0},"book":{"last-status-check-time":1679182207757,"affiliations":0.0,"abstracts":0.0,"orcids":0.01161779681373295,"licenses":0.9943467272930263,"references":3.383167388972904E-6,"funders":0.001918255909547637,"similarity-checking":0.9964848890828572,"award-numbers":3.586157432311278E-4,"ror-ids":0.0,"update-policies":3.383167388972904E-6,"resource-links":0.9941877184257446,"descriptions":0.0},"proceedings-article":{"last-status-check-time":1679182207757,"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":1679182207757,"affiliations":0.0,"abstracts":7.692370985830921E-4,"orcids":0.007471550186884431,"licenses":0.4738158006275214,"references":0.6565044450231795,"funders":9.860394947757893E-4,"similarity-checking":0.9987948618788866,"award-numbers":1.532733621803624E-4,"ror-ids":0.0,"update-policies":0.2639459145951641,"resource-links":1.913525120853463E-7,"descriptions":0.0},"reference-book":{"last-status-check-time":1679182207757,"affiliations":0.0,"abstracts":0.0,"orcids":0.0161507402422611,"licenses":0.9878869448183042,"references":0.0,"funders":0.0,"similarity-checking":0.9919246298788694,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.9878869448183042,"descriptions":0.0},"journal-issue":{"last-status-check-time":1679182207757,"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":1679182207757,"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":1679182207757,"affiliations":2.328761946395577E-4,"abstracts":0.3376132845655174,"orcids":0.5669575235863751,"licenses":0.9968949840714726,"references":0.9235910734877602,"funders":0.4045478269484741,"similarity-checking":0.9987855710726911,"award-numbers":0.3174235313223589,"ror-ids":0.0,"update-policies":0.9259280065287046,"resource-links":0.9968377864096313,"descriptions":0.0},"book":{"last-status-check-time":1679182207757,"affiliations":0.0,"abstracts":0.0,"orcids":0.1476793248945148,"licenses":0.9999672914009093,"references":0.0,"funders":0.02606875347528865,"similarity-checking":0.9976776894645601,"award-numbers":0.002943773918163085,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.9976776894645601,"descriptions":0.0},"book-chapter":{"last-status-check-time":1679182207757,"affiliations":0.0,"abstracts":0.02463613749587094,"orcids":0.1170460903740756,"licenses":0.9963748575897101,"references":0.8089123561571805,"funders":0.005706523571009647,"similarity-checking":0.9973742576126305,"award-numbers":7.870485846608107E-4,"ror-ids":0.0,"update-policies":0.9917621124586252,"resource-links":0.0,"descriptions":0.0},"reference-book":{"last-status-check-time":1679182207757,"affiliations":0.0,"abstracts":0.0,"orcids":0.03361344537815126,"licenses":1.0,"references":0.0,"funders":0.008403361344537815,"similarity-checking":1.0,"award-numbers":0.008403361344537815,"ror-ids":0.0,"update-policies":0.0,"resource-links":1.0,"descriptions":0.0},"dataset":{"last-status-check-time":1679182207757,"affiliations":0.0,"abstracts":0.0,"orcids":0.689356022689356,"licenses":0.0,"references":0.0,"funders":0.5669002335669002,"similarity-checking":0.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.04471137804471138,"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: Sun, 19 Mar 2023 17:40:27 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
+ - Sun, 19 Mar 2023 17:40:28 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=frG56yi63aD8AmXVJk2Vfw10ZuLjjhLCQus2eda9Cnum8aElIF9AX5AWJ%2BvHqwrcb%2BhMUpBEBhDPSNbd7VZdqXSeLWXkdIkKJ7YZ9FkuyWmZ8bm1i5XTJGzAgQv7wkNJdVHl6RQ%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
+ - 7aa7802baf820ae1-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: Sun, 19 Mar 2023 17:40:28 GMT
860
+ recorded_with: VCR 6.1.0