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.
- checksums.yaml +7 -0
- data/.github/workflows/build.yml +38 -0
- data/.github/workflows/changelog.yml +36 -0
- data/.github/workflows/codeql-analysis.yml +72 -0
- data/.github/workflows/rubocop.yml +50 -0
- data/.gitignore +59 -0
- data/.rubocop.yml +182 -0
- data/.rubocop_todo.yml +76 -0
- data/.tool-versions +1 -0
- data/CHANGELOG.md +124 -0
- data/CITATION +16 -0
- data/CITATION.cff +20 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +270 -0
- data/LICENSE.md +21 -0
- data/README.md +733 -0
- data/Rakefile +13 -0
- data/bin/commonmeta +9 -0
- data/commonmeta.gemspec +68 -0
- data/lib/commonmeta/array.rb +13 -0
- data/lib/commonmeta/author_utils.rb +172 -0
- data/lib/commonmeta/cli.rb +70 -0
- data/lib/commonmeta/crossref_utils.rb +343 -0
- data/lib/commonmeta/doi_utils.rb +81 -0
- data/lib/commonmeta/metadata.rb +269 -0
- data/lib/commonmeta/metadata_utils.rb +184 -0
- data/lib/commonmeta/pubmed.rb +36 -0
- data/lib/commonmeta/readers/bibtex_reader.rb +62 -0
- data/lib/commonmeta/readers/cff_reader.rb +146 -0
- data/lib/commonmeta/readers/codemeta_reader.rb +90 -0
- data/lib/commonmeta/readers/crossref_reader.rb +186 -0
- data/lib/commonmeta/readers/crossref_xml_reader.rb +379 -0
- data/lib/commonmeta/readers/csl_reader.rb +85 -0
- data/lib/commonmeta/readers/datacite_reader.rb +169 -0
- data/lib/commonmeta/readers/npm_reader.rb +94 -0
- data/lib/commonmeta/readers/ris_reader.rb +66 -0
- data/lib/commonmeta/readers/schema_org_reader.rb +300 -0
- data/lib/commonmeta/schema_utils.rb +19 -0
- data/lib/commonmeta/string.rb +7 -0
- data/lib/commonmeta/utils.rb +1351 -0
- data/lib/commonmeta/version.rb +5 -0
- data/lib/commonmeta/whitelist_scrubber.rb +54 -0
- data/lib/commonmeta/writers/bibtex_writer.rb +36 -0
- data/lib/commonmeta/writers/cff_writer.rb +63 -0
- data/lib/commonmeta/writers/citation_writer.rb +14 -0
- data/lib/commonmeta/writers/codemeta_writer.rb +33 -0
- data/lib/commonmeta/writers/crossref_xml_writer.rb +11 -0
- data/lib/commonmeta/writers/csl_writer.rb +11 -0
- data/lib/commonmeta/writers/csv_writer.rb +26 -0
- data/lib/commonmeta/writers/datacite_writer.rb +94 -0
- data/lib/commonmeta/writers/jats_writer.rb +138 -0
- data/lib/commonmeta/writers/rdf_xml_writer.rb +11 -0
- data/lib/commonmeta/writers/ris_writer.rb +41 -0
- data/lib/commonmeta/writers/schema_org_writer.rb +61 -0
- data/lib/commonmeta/writers/turtle_writer.rb +11 -0
- data/lib/commonmeta/xml_converter.rb +14 -0
- data/lib/commonmeta.rb +35 -0
- data/resources/2008/09/xsd.xsl +997 -0
- data/resources/cff.json +1827 -0
- data/resources/commonmeta_v0.9.json +393 -0
- data/resources/crossref/AccessIndicators.xsd +47 -0
- data/resources/crossref/JATS-journalpublishing1-3d2-mathml3-elements.xsd +10130 -0
- data/resources/crossref/JATS-journalpublishing1-3d2-mathml3.xsd +48 -0
- data/resources/crossref/JATS-journalpublishing1-elements.xsd +8705 -0
- data/resources/crossref/JATS-journalpublishing1-mathml3-elements.xsd +8608 -0
- data/resources/crossref/JATS-journalpublishing1-mathml3.xsd +49 -0
- data/resources/crossref/JATS-journalpublishing1.xsd +6176 -0
- data/resources/crossref/clinicaltrials.xsd +61 -0
- data/resources/crossref/common5.3.1.xsd +1530 -0
- data/resources/crossref/crossref5.3.1.xsd +1949 -0
- data/resources/crossref/crossref_query_output3.0.xsd +1097 -0
- data/resources/crossref/fundref.xsd +49 -0
- data/resources/crossref/module-ali.xsd +39 -0
- data/resources/crossref/relations.xsd +444 -0
- data/resources/datacite-contributorType-v4.xsd +35 -0
- data/resources/datacite-dateType-v4.xsd +25 -0
- data/resources/datacite-descriptionType-v4.xsd +19 -0
- data/resources/datacite-funderIdentifierType-v4.xsd +15 -0
- data/resources/datacite-nameType-v4.xsd +10 -0
- data/resources/datacite-relatedIdentifierType-v4.xsd +34 -0
- data/resources/datacite-relationType-v4.xsd +49 -0
- data/resources/datacite-resourceType-v4.xsd +28 -0
- data/resources/datacite-titleType-v4.xsd +14 -0
- data/resources/datacite-v3.json +508 -0
- data/resources/datacite-v4.json +512 -0
- data/resources/kernel-3.0/include/datacite-contributorType-v3.xsd +33 -0
- data/resources/kernel-3.0/include/datacite-dateType-v3.xsd +21 -0
- data/resources/kernel-3.0/include/datacite-descriptionType-v3.xsd +17 -0
- data/resources/kernel-3.0/include/datacite-relatedIdentifierType-v3.xsd +27 -0
- data/resources/kernel-3.0/include/datacite-relationType-v3.xsd +33 -0
- data/resources/kernel-3.0/include/datacite-resourceType-v3.xsd +26 -0
- data/resources/kernel-3.0/include/datacite-titleType-v3.xsd +12 -0
- data/resources/kernel-3.0/include/xml.xsd +286 -0
- data/resources/kernel-3.0/metadata.xsd +377 -0
- data/resources/kernel-4/include/datacite-contributorType-v4.xsd +35 -0
- data/resources/kernel-4/include/datacite-dateType-v4.xsd +25 -0
- data/resources/kernel-4/include/datacite-descriptionType-v4.xsd +19 -0
- data/resources/kernel-4/include/datacite-funderIdentifierType-v4.xsd +16 -0
- data/resources/kernel-4/include/datacite-nameType-v4.xsd +10 -0
- data/resources/kernel-4/include/datacite-numberType-v4.xsd +12 -0
- data/resources/kernel-4/include/datacite-relatedIdentifierType-v4.xsd +34 -0
- data/resources/kernel-4/include/datacite-relationType-v4.xsd +51 -0
- data/resources/kernel-4/include/datacite-resourceType-v4.xsd +43 -0
- data/resources/kernel-4/include/datacite-titleType-v4.xsd +14 -0
- data/resources/kernel-4/include/xml.xsd +286 -0
- data/resources/kernel-4/metadata.xsd +707 -0
- data/resources/oecd/dfg-mappings.json +1866 -0
- data/resources/oecd/for-mappings.json +1099 -0
- data/resources/oecd/fos-mappings.json +198 -0
- data/resources/schema_org/jsonldcontext.json +7477 -0
- data/resources/spdx/licenses.json +5297 -0
- data/resources/xml.xsd +286 -0
- data/rubocop.sarif +0 -0
- data/sonar-project.properties +11 -0
- data/spec/array_spec.rb +22 -0
- data/spec/author_utils_spec.rb +132 -0
- data/spec/cli_spec.rb +309 -0
- data/spec/doi_utils_spec.rb +318 -0
- data/spec/find_from_format_spec.rb +144 -0
- data/spec/fixtures/CITATION.cff +83 -0
- data/spec/fixtures/aida.json +82 -0
- data/spec/fixtures/cgimp_package.json +18 -0
- data/spec/fixtures/cit_package.json +19 -0
- data/spec/fixtures/citeproc-no-author.json +26 -0
- data/spec/fixtures/citeproc-no-categories.json +21 -0
- data/spec/fixtures/citeproc.json +30 -0
- data/spec/fixtures/codemeta.json +86 -0
- data/spec/fixtures/codemeta_v2.json +86 -0
- data/spec/fixtures/crosscite.json +63 -0
- data/spec/fixtures/crossref.bib +14 -0
- data/spec/fixtures/crossref.json +572 -0
- data/spec/fixtures/crossref.ris +15 -0
- data/spec/fixtures/crossref.xml +606 -0
- data/spec/fixtures/datacite.json +86 -0
- data/spec/fixtures/datacite_software.json +21 -0
- data/spec/fixtures/datacite_software_missing_comma.json +18 -0
- data/spec/fixtures/datacite_software_overlapping_keys.json +18 -0
- data/spec/fixtures/datacite_software_version.json +74 -0
- data/spec/fixtures/edam_package.json +12 -0
- data/spec/fixtures/maremma/codemeta.json +36 -0
- data/spec/fixtures/pure.bib +14 -0
- data/spec/fixtures/pure.ris +15 -0
- data/spec/fixtures/pure.xml +188 -0
- data/spec/fixtures/ris_bug.ris +9 -0
- data/spec/fixtures/schema_4.0.xml +140 -0
- data/spec/fixtures/schema_org.json +49 -0
- data/spec/fixtures/schema_org_front-matter.json +32 -0
- data/spec/fixtures/schema_org_geolocation.json +82 -0
- data/spec/fixtures/schema_org_geoshape.json +550 -0
- data/spec/fixtures/schema_org_gtex.json +75 -0
- data/spec/fixtures/schema_org_list.json +12623 -0
- data/spec/fixtures/schema_org_tdl_iodp_invalid_authors.json +25 -0
- data/spec/fixtures/schema_org_topmed.json +53 -0
- data/spec/fixtures/schema_org_type_as_array.json +41 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/default.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_bibtex.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_crossref_xml.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_datacite.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref/to_schema_org.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/default.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_bibtex.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_crossref_xml.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_file/crossref_xml/to_schema_org.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/default.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_bibtex.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_citation.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_crossref_xml.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_datacite.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_jats.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/crossref/to_schema_org.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/default.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_bibtex.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_citation.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_datacite.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_jats.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/datacite/to_schema_org.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/default.yml +1098 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_datacite.yml +1098 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/convert_from_id/schema_org/to_schema_org.yml +1100 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/jalc.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/kisti.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/medra.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_CLI/find_from_format_by_id/op.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/author.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/no_author.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/single_author.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/authors_as_string/with_organization.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/jalc.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/kisti.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/medra.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/not_found.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/doi_registration_agency/op.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/datacite_doi_http.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_for_with_schemeUri_in_hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/hsh_to_fos_no_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_for_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/fos/name_to_fos_no_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org/with_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/with_affiliation.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/from_schema_org_creators/without_affiliation.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/cff-converter-python.yml +200 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/ruby-cff.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_cff_metadata/ruby-cff_repository_url.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_codemeta_metadata/metadata_reports.yml +93 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +337 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +347 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +359 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/JaLC.yml +384 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/KISTI.yml +330 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/OP.yml +969 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/affiliation_is_space.yml +358 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book.yml +312 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/another_book_chapter.yml +465 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/article_id_as_page_number.yml +276 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/author_literal.yml +492 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book.yml +523 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter.yml +377 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_chapter_with_RDF_for_container.yml +336 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/book_oup.yml +289 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/component.yml +289 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dataset_usda.yml +341 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/date_in_future.yml +570 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/dissertation.yml +301 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/empty_given_name.yml +303 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/invalid_date.yml +307 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article.yml +461 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +276 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with.yml +470 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_RDF_for_container.yml +519 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_article_with_funding.yml +456 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/journal_issue.yml +270 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/mEDRA.yml +310 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/markup.yml +329 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/missing_creator.yml +307 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_issn.yml +393 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles.yml +265 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/multiple_titles_with_missing.yml +860 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/not_found_error.yml +209 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/peer_review.yml +287 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content.yml +326 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/posted_content_copernicus.yml +297 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/report_osti.yml +315 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/vor_with_url.yml +451 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book.yml +816 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +324 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_crossref_raw/journal_article.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/dissertation.yml +152 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/funding_references.yml +175 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datacite_metadata/subject_scheme.yml +328 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date/publication_date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_date_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_from_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_date_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/future.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/invalid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/nil.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/past.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_datetime_from_time/present.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_familyName.yml +133 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/is_organization.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/name_with_affiliation_crossref.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_one_author/only_familyName_and_givenName.yml +468 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/get_schema_org_metadata_front_matter/BlogPosting.yml +534 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/harvard_dataverse.yml +1838 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/pangaea.yml +468 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/upstream_blog.yml +885 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_schema_org_metadata/zenodo.yml +583 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/only_title.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/get_series_information/title_volume_issue_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_as_cff_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_as_codemeta_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url_cff_file.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/github/github_from_url_file.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/handle_input/unknown_DOI_prefix.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_comma.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_family_name.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_id.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_known_given_name.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_no_info.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_orcid_id.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/is_personal_name_/has_type_organization.yml +164 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/json_schema_errors/is_valid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/not_found.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/doi_as_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/filename.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/ftp.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/invalid_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_options.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/sandbox_via_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_id/url_with_utf-8.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_ids/url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_empty_array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_issn/from_string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/uri.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/array_of_strings.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/first.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/hash_with_array_value.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/nil.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/parse_attributes/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/decode_anothe_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/decode_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/random_doi/encode_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/onlies_keep_specific_tags.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/sanitize/removes_a_tags.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_not_found.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/hsh_to_spdx_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_exists.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/spdx/name_to_spdx_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org/with_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/to_schema_org_identifiers/with_identifiers.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_with_spaces.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_wrong_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid/validate_orcid_www.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/DOI.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/ISSN.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/URL.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/validate_url/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +186 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/climate_data.yml +74 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/text.yml +100 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_bibtex/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/Collection_of_Jupyter_notebooks.yml +143 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/SoftwareSourceCode_Zenodo.yml +150 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/SoftwareSourceCode_also_Zenodo.yml +93 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_cff/ruby-cff.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Journal_article_vancouver_style.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/Missing_author.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_citation/software_w/version.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +76 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +76 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/another_schema_org_from_front-matter.yml +541 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/journal_article.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/journal_article_from_datacite.yml +85 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/posted_content.yml +283 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_another_science_blog.yml +123 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +477 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_crossref/schema_org_from_upstream_blog.yml +1025 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/Another_dataset.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/container_title.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/keywords_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/missing_creator.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/multiple_abstracts.yml +101 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/organization_author.yml +314 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/software.yml +90 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/software_w/version.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/with_only_first_page.yml +333 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csl/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/climate_data.yml +74 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/text.yml +100 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_csv/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/with_ORCID_ID.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_ORCID_ID.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_datacite_json/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +106 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/book_chapter.yml +163 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_jats_xml/with_editor.yml +355 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_rdf_xml/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/alternate_name.yml +138 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/journal_article.yml +115 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_ris/with_pages.yml +112 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Another_Schema_org_JSON.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding.yml +192 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +150 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +98 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_Cyark.yml +160 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +131 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/data_catalog.yml +136 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/geo_location_box.yml +181 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/interactive_resource_without_dates.yml +127 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/series_information.yml +174 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +201 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Briard_Metadata/write_metadata_as_turtle/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/default.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_bibtex.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_crossref_xml.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_datacite.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref/to_schema_org.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/default.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_bibtex.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_crossref_xml.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_file/crossref_xml/to_schema_org.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/default.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_bibtex.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_citation.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_crossref_xml.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_datacite.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_jats.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/crossref/to_schema_org.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/default.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_bibtex.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_citation.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_datacite.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_jats.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/datacite/to_schema_org.yml +172 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/default.yml +1096 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/to_datacite.yml +1096 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/convert_from_id/schema_org/to_schema_org.yml +1098 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/jalc.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/kisti.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/medra.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_CLI/find_from_format_by_id/op.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/change_metadata_as_datacite_xml/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/jalc.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/kisti.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/medra.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/not_found.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/doi_registration_agency/op.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/crossref.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/crossref_doi_not_url.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/datacite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/datacite_doi_http.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/find_from_format_by_ID/unknown_DOI_registration_agency.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_for_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_for_with_schemeUri_in_hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/hsh_to_fos_no_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_for_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/fos/name_to_fos_no_match.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/from_schema_org/with_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/cff-converter-python.yml +200 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/ruby-cff.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_cff_metadata/ruby-cff_repository_url.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_codemeta_metadata/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_codemeta_metadata/metadata_reports.yml +93 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_ORCID_ID.yml +337 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_SICI_DOI.yml +347 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/DOI_with_data_citation.yml +170 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/JaLC.yml +384 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/KISTI.yml +330 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/OP.yml +969 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/affiliation_is_space.yml +358 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/another_book.yml +312 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/another_book_chapter.yml +465 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/article_id_as_page_number.yml +276 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/author_literal.yml +492 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book.yml +523 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_chapter.yml +377 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_chapter_with_RDF_for_container.yml +336 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/book_oup.yml +289 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/component.yml +289 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dataset.yml +300 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dataset_usda.yml +341 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/date_in_future.yml +570 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/dissertation.yml +301 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/empty_given_name.yml +303 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/invalid_date.yml +307 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article.yml +461 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_original_language_title.yml +276 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with.yml +908 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with_RDF_for_container.yml +519 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with_funding.yml +456 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_issue.yml +270 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/mEDRA.yml +310 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/markup.yml +329 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/missing_creator.yml +307 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_issn.yml +393 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_titles.yml +265 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/multiple_titles_with_missing.yml +860 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/not_found_error.yml +209 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/peer_review.yml +287 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/posted_content.yml +326 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/posted_content_copernicus.yml +297 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/report_osti.yml +315 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/vor_with_url.yml +451 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/yet_another_book.yml +816 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/yet_another_book_chapter.yml +324 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_raw/journal_article.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/dissertation.yml +152 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/funding_references.yml +175 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datacite_metadata/subject_scheme.yml +328 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date/publication_date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_date_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_from_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/date.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/year-month.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_date_parts/year.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/future.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/invalid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/nil.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/past.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_datetime_from_time/present.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/has_familyName.yml +133 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/has_name_in_display-order_with_ORCID.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/name_with_affiliation_crossref.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_one_author/only_familyName_and_givenName.yml +467 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/BlogPosting.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/BlogPosting_with_new_DOI.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/get_schema_org_metadata_front_matter/BlogPosting.yml +534 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/harvard_dataverse.yml +1838 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/pangaea.yml +467 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/upstream_blog.yml +885 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_schema_org_metadata/zenodo.yml +583 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/only_title.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_volume_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_series_information/title_volume_issue_and_pages.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_as_cff_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_as_codemeta_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url_cff_file.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/github/github_from_url_file.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/handle_input/DOI_RA_not_Crossref_or_DataCite.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/handle_input/unknown_DOI_prefix.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/json_schema_errors/is_valid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/not_found.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/with_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_cc_url/with_trailing_slash_and_to_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/doi_as_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/filename.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/ftp.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/invalid_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/sandbox_via_options.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/sandbox_via_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_id/url_with_utf-8.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_empty_array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_issn/from_string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/uri.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/with_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/normalize_url/with_trailing_slash_and_to_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/array.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/array_of_strings.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/first.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/hash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/hash_with_array_value.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/nil.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/parse_attributes/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/decode_anothe_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/decode_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/random_doi/encode_doi.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/sanitize/onlies_keep_specific_tags.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/sanitize/removes_a_tags.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_not_found.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/hsh_to_spdx_url.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/name_to_spdx_exists.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/spdx/name_to_spdx_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/to_schema_org/with_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/to_schema_org_identifiers/with_identifiers.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_sandbox.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_sandbox_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_with_spaces.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_wrong_id.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid/validate_orcid_www.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_https.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_trailing_slash.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_orcid_scheme/validate_orcid_scheme_www.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/DOI.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/ISSN.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/URL.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/validate_url/string.yml +221 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/authors_with_affiliations.yml +186 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/climate_data.yml +74 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/keywords_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/text.yml +100 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_bibtex/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/Collection_of_Jupyter_notebooks.yml +143 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/SoftwareSourceCode_Zenodo.yml +150 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/SoftwareSourceCode_also_Zenodo.yml +93 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_cff/ruby-cff.yml +154 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Journal_article_vancouver_style.yml +299 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/Missing_author.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_citation/software_w/version.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite.yml +76 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_codemeta/SoftwareSourceCode_DataCite_check_codemeta_v2.yml +76 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/another_schema_org_from_front-matter.yml +541 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article.yml +55 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/journal_article_from_datacite.yml +85 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/posted_content.yml +283 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_another_science_blog.yml +123 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_front_matter.yml +477 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_crossref/schema_org_from_upstream_blog.yml +1025 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/Another_dataset.yml +110 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/container_title.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/keywords_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/missing_creator.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/multiple_abstracts.yml +101 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/organization_author.yml +314 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/software.yml +90 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/software_w/version.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/with_only_first_page.yml +333 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csl/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/climate_data.yml +74 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/text.yml +100 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_csv/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/dissertation.yml +218 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/journal_article.yml +407 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/with_ORCID_ID.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_datacite/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/Dataset_in_schema_4_0.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/Text_pass-thru.yml +106 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/book_chapter.yml +163 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/from_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/interactive_resource_without_dates.yml +75 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_ORCID_ID.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_data_citation.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_jats_xml/with_editor.yml +355 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_rdf_xml/with_pages.yml +228 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/alternate_name.yml +138 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/journal_article.yml +115 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/keywords_with_subject_scheme.yml +149 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/maremma.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_ris/with_pages.yml +112 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Another_Schema_org_JSON.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Funding.yml +192 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Funding_OpenAIRE.yml +150 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON.yml +98 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON_Cyark.yml +160 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/Schema_org_JSON_IsSupplementTo.yml +153 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/alternate_identifiers.yml +131 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/data_catalog.yml +136 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/geo_location_box.yml +181 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/interactive_resource_without_dates.yml +127 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/maremma_schema_org_JSON.yml +86 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/series_information.yml +174 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/subject_scheme.yml +199 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_schema_org/subject_scheme_multiple_keywords.yml +201 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/BlogPosting.yml +81 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/BlogPosting_schema_org.yml +530 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/Dataset.yml +120 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/journal_article.yml +247 -0
- data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/write_metadata_as_turtle/with_pages.yml +228 -0
- data/spec/fixtures/vivli.xml +17 -0
- data/spec/metadata_spec.rb +147 -0
- data/spec/readers/bibtex_reader_spec.rb +58 -0
- data/spec/readers/cff_reader_spec.rb +148 -0
- data/spec/readers/codemeta_reader_spec.rb +116 -0
- data/spec/readers/crossref_reader_spec.rb +919 -0
- data/spec/readers/crossref_xml_reader_spec.rb +948 -0
- data/spec/readers/csl_reader_spec.rb +61 -0
- data/spec/readers/datacite_reader_spec.rb +156 -0
- data/spec/readers/npm_reader_spec.rb +69 -0
- data/spec/readers/ris_reader_spec.rb +70 -0
- data/spec/readers/schema_org_reader_spec.rb +416 -0
- data/spec/schema_utils_spec.rb +16 -0
- data/spec/spec_helper.rb +96 -0
- data/spec/utils_spec.rb +631 -0
- data/spec/writers/bibtex_writer_spec.rb +160 -0
- data/spec/writers/cff_writer_spec.rb +118 -0
- data/spec/writers/citation_writer_spec.rb +51 -0
- data/spec/writers/codemeta_writer_spec.rb +47 -0
- data/spec/writers/crossref_xml_writer_spec.rb +173 -0
- data/spec/writers/csl_writer_spec.rb +291 -0
- data/spec/writers/csv_writer_spec.rb +82 -0
- data/spec/writers/datacite_writer_spec.rb +150 -0
- data/spec/writers/jats_writer_spec.rb +210 -0
- data/spec/writers/rdf_xml_writer_spec.rb +91 -0
- data/spec/writers/ris_writer_spec.rb +206 -0
- data/spec/writers/schema_org_writer_spec.rb +301 -0
- data/spec/writers/turtle_writer_spec.rb +85 -0
- metadata +1514 -0
data/spec/fixtures/vcr_cassettes/Commonmeta_Metadata/get_crossref_metadata/journal_article_with.yml
ADDED
|
@@ -0,0 +1,908 @@
|
|
|
1
|
+
---
|
|
2
|
+
http_interactions:
|
|
3
|
+
- request:
|
|
4
|
+
method: get
|
|
5
|
+
uri: https://api.crossref.org/works/10.1111/nph.14619/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:35 GMT
|
|
23
|
+
Content-Type:
|
|
24
|
+
- application/json
|
|
25
|
+
Transfer-Encoding:
|
|
26
|
+
- chunked
|
|
27
|
+
Access-Control-Expose-Headers:
|
|
28
|
+
- Link
|
|
29
|
+
Access-Control-Allow-Headers:
|
|
30
|
+
- X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language,
|
|
31
|
+
Accept-Ranges, Cache-Control
|
|
32
|
+
Access-Control-Allow-Origin:
|
|
33
|
+
- "*"
|
|
34
|
+
Link:
|
|
35
|
+
- <http://dx.doi.org/10.1111/nph.14619>; rel="canonical", <https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1111%2Fnph.14619>;
|
|
36
|
+
version="vor"; type="application/pdf"; rel="item", <http://onlinelibrary.wiley.com/wol1/doi/10.1111/nph.14619/fullpdf>;
|
|
37
|
+
version="vor"; rel="item", <http://doi.wiley.com/10.1002/tdm_license_1.1>;
|
|
38
|
+
version="tdm"; rel="license", <http://onlinelibrary.wiley.com/termsAndConditions#vor>;
|
|
39
|
+
version="vor"; rel="license", <http://orcid.org/0000-0002-4156-3761>; title="Nico
|
|
40
|
+
Dissmeyer"; rel="author", <http://orcid.org/0000-0003-3548-8213>; title="Emmanuelle
|
|
41
|
+
Graciet"; rel="author"
|
|
42
|
+
Server:
|
|
43
|
+
- Jetty(9.4.40.v20210413)
|
|
44
|
+
X-Ratelimit-Limit:
|
|
45
|
+
- '50'
|
|
46
|
+
X-Ratelimit-Interval:
|
|
47
|
+
- 1s
|
|
48
|
+
X-Api-Pool:
|
|
49
|
+
- public
|
|
50
|
+
X-Rate-Limit-Limit:
|
|
51
|
+
- '50'
|
|
52
|
+
X-Rate-Limit-Interval:
|
|
53
|
+
- 1s
|
|
54
|
+
Permissions-Policy:
|
|
55
|
+
- interest-cohort=()
|
|
56
|
+
Connection:
|
|
57
|
+
- close
|
|
58
|
+
body:
|
|
59
|
+
encoding: UTF-8
|
|
60
|
+
string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<crossref_result xmlns=\"http://www.crossref.org/qrschema/3.0\"
|
|
61
|
+
version=\"3.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.crossref.org/qrschema/3.0
|
|
62
|
+
http://www.crossref.org/schemas/crossref_query_output3.0.xsd\">\r\n <query_result>\r\n
|
|
63
|
+
\ <head>\r\n <doi_batch_id>none</doi_batch_id>\r\n </head>\r\n <body>\r\n
|
|
64
|
+
\ <query status=\"resolved\">\r\n <doi type=\"journal_article\">10.1111/nph.14619</doi>\r\n
|
|
65
|
+
\ <crm-item name=\"publisher-name\" type=\"string\">Wiley</crm-item>\r\n
|
|
66
|
+
\ <crm-item name=\"prefix-name\" type=\"string\">Wiley (Blackwell Publishing)</crm-item>\r\n
|
|
67
|
+
\ <crm-item name=\"member-id\" type=\"number\">311</crm-item>\r\n <crm-item
|
|
68
|
+
name=\"citation-id\" type=\"number\">90629985</crm-item>\r\n <crm-item
|
|
69
|
+
name=\"journal-id\" type=\"number\">3549</crm-item>\r\n <crm-item name=\"deposit-timestamp\"
|
|
70
|
+
type=\"number\">20180803114549444</crm-item>\r\n <crm-item name=\"owner-prefix\"
|
|
71
|
+
type=\"string\">10.1111</crm-item>\r\n <crm-item name=\"last-update\"
|
|
72
|
+
type=\"date\">2021-07-07T04:40:38Z</crm-item>\r\n <crm-item name=\"created\"
|
|
73
|
+
type=\"date\">2017-06-05T10:56:44Z</crm-item>\r\n <crm-item name=\"citedby-count\"
|
|
74
|
+
type=\"number\">63</crm-item>\r\n <crm-item name=\"relation\" type=\"doi\"
|
|
75
|
+
claim=\"isPreprintOf\">10.1101/115246</crm-item>\r\n <doi_record>\r\n
|
|
76
|
+
\ <crossref xmlns=\"http://www.crossref.org/xschema/1.1\" xsi:schemaLocation=\"http://www.crossref.org/xschema/1.1
|
|
77
|
+
http://doi.crossref.org/schemas/unixref1.1.xsd\">\r\n <journal>\r\n
|
|
78
|
+
\ <journal_metadata language=\"en\">\r\n <full_title>New
|
|
79
|
+
Phytologist</full_title>\r\n <abbrev_title>New Phytol</abbrev_title>\r\n
|
|
80
|
+
\ <issn>0028646X</issn>\r\n </journal_metadata>\r\n
|
|
81
|
+
\ <journal_issue>\r\n <publication_date media_type=\"print\">\r\n
|
|
82
|
+
\ <month>05</month>\r\n <year>2018</year>\r\n
|
|
83
|
+
\ </publication_date>\r\n <journal_volume>\r\n
|
|
84
|
+
\ <volume>218</volume>\r\n </journal_volume>\r\n
|
|
85
|
+
\ <issue>3</issue>\r\n <doi_data>\r\n <doi>10.1111/nph.2018.218.issue-3</doi>\r\n
|
|
86
|
+
\ <resource>http://doi.wiley.com/10.1111/nph.2018.218.issue-3</resource>\r\n
|
|
87
|
+
\ </doi_data>\r\n </journal_issue>\r\n <journal_article
|
|
88
|
+
publication_type=\"full_text\">\r\n <titles>\r\n <title>Life
|
|
89
|
+
and death of proteins after protease cleavage: protein degradation by the
|
|
90
|
+
N-end rule pathway</title>\r\n </titles>\r\n <contributors>\r\n
|
|
91
|
+
\ <person_name contributor_role=\"author\" sequence=\"first\">\r\n
|
|
92
|
+
\ <given_name>Nico</given_name>\r\n <surname>Dissmeyer</surname>\r\n
|
|
93
|
+
\ <affiliation>Independent Junior Research Group on Protein
|
|
94
|
+
Recognition and Degradation; Leibniz Institute of Plant Biochemistry (IPB);
|
|
95
|
+
Weinberg 3 Halle (Saale) D-06120 Germany</affiliation>\r\n <affiliation>ScienceCampus
|
|
96
|
+
Halle - Plant-based Bioeconomy; Betty-Heimann-Strasse 3 Halle (Saale) D-06120
|
|
97
|
+
Germany</affiliation>\r\n <ORCID>http://orcid.org/0000-0002-4156-3761</ORCID>\r\n
|
|
98
|
+
\ </person_name>\r\n <person_name contributor_role=\"author\"
|
|
99
|
+
sequence=\"additional\">\r\n <given_name>Susana</given_name>\r\n
|
|
100
|
+
\ <surname>Rivas</surname>\r\n <affiliation>LIPM;
|
|
101
|
+
Université de Toulouse; INRA; CNRS; Castanet-Tolosan 31 326 France</affiliation>\r\n
|
|
102
|
+
\ </person_name>\r\n <person_name contributor_role=\"author\"
|
|
103
|
+
sequence=\"additional\">\r\n <given_name>Emmanuelle</given_name>\r\n
|
|
104
|
+
\ <surname>Graciet</surname>\r\n <affiliation>Department
|
|
105
|
+
of Biology; Maynooth University; Maynooth Co. Kildare Ireland</affiliation>\r\n
|
|
106
|
+
\ <ORCID>http://orcid.org/0000-0003-3548-8213</ORCID>\r\n
|
|
107
|
+
\ </person_name>\r\n </contributors>\r\n <publication_date
|
|
108
|
+
media_type=\"print\">\r\n <month>05</month>\r\n <year>2018</year>\r\n
|
|
109
|
+
\ </publication_date>\r\n <publication_date media_type=\"online\">\r\n
|
|
110
|
+
\ <month>06</month>\r\n <day>05</day>\r\n
|
|
111
|
+
\ <year>2017</year>\r\n </publication_date>\r\n
|
|
112
|
+
\ <pages>\r\n <first_page>929</first_page>\r\n
|
|
113
|
+
\ <last_page>935</last_page>\r\n </pages>\r\n
|
|
114
|
+
\ <crossmark>\r\n <crossmark_policy>10.1002/crossmark_policy</crossmark_policy>\r\n
|
|
115
|
+
\ <crossmark_domains>\r\n <crossmark_domain>\r\n
|
|
116
|
+
\ <domain>wiley.com</domain>\r\n </crossmark_domain>\r\n
|
|
117
|
+
\ </crossmark_domains>\r\n <crossmark_domain_exclusive>true</crossmark_domain_exclusive>\r\n
|
|
118
|
+
\ <custom_metadata>\r\n <fr:program xmlns:fr=\"http://www.crossref.org/fundref.xsd\"
|
|
119
|
+
name=\"fundref\">\r\n <fr:assertion name=\"fundgroup\">\r\n
|
|
120
|
+
\ <fr:assertion name=\"funder_name\">\r\n Agence
|
|
121
|
+
Nationale de la Recherche\r\n <fr:assertion name=\"funder_identifier\">http://dx.doi.org/10.13039/501100001665</fr:assertion>\r\n
|
|
122
|
+
\ </fr:assertion>\r\n <fr:assertion
|
|
123
|
+
name=\"award_number\">ANR-10-LABX-41</fr:assertion>\r\n <fr:assertion
|
|
124
|
+
name=\"award_number\">ANR-11-IDEX-0002-02</fr:assertion>\r\n </fr:assertion>\r\n
|
|
125
|
+
\ <fr:assertion name=\"fundgroup\">\r\n <fr:assertion
|
|
126
|
+
name=\"funder_name\">\r\n Department of Agriculture,
|
|
127
|
+
Food and the Marine\r\n <fr:assertion name=\"funder_identifier\">http://dx.doi.org/10.13039/501100001584</fr:assertion>\r\n
|
|
128
|
+
\ </fr:assertion>\r\n <fr:assertion
|
|
129
|
+
name=\"award_number\">14/S/819</fr:assertion>\r\n </fr:assertion>\r\n
|
|
130
|
+
\ <fr:assertion name=\"fundgroup\">\r\n <fr:assertion
|
|
131
|
+
name=\"funder_name\">\r\n Science Foundation Ireland\r\n
|
|
132
|
+
\ <fr:assertion name=\"funder_identifier\">http://dx.doi.org/10.13039/501100001602</fr:assertion>\r\n
|
|
133
|
+
\ </fr:assertion>\r\n <fr:assertion
|
|
134
|
+
name=\"award_number\">13/IA/1870</fr:assertion>\r\n </fr:assertion>\r\n
|
|
135
|
+
\ <fr:assertion name=\"fundgroup\">\r\n <fr:assertion
|
|
136
|
+
name=\"funder_name\">Virtual Irish Centre for Crop Improvement</fr:assertion>\r\n
|
|
137
|
+
\ <fr:assertion name=\"award_number\">14/S/819</fr:assertion>\r\n
|
|
138
|
+
\ </fr:assertion>\r\n <fr:assertion
|
|
139
|
+
name=\"fundgroup\">\r\n <fr:assertion name=\"funder_name\">\r\n
|
|
140
|
+
\ European Regional Development Fund\r\n <fr:assertion
|
|
141
|
+
name=\"funder_identifier\">http://dx.doi.org/10.13039/501100008530</fr:assertion>\r\n
|
|
142
|
+
\ </fr:assertion>\r\n <fr:assertion
|
|
143
|
+
name=\"award_number\">LSP-TP2-1</fr:assertion>\r\n </fr:assertion>\r\n
|
|
144
|
+
\ <fr:assertion name=\"fundgroup\">\r\n <fr:assertion
|
|
145
|
+
name=\"funder_name\">\r\n Deutsche Forschungsgemeinschaft\r\n
|
|
146
|
+
\ <fr:assertion name=\"funder_identifier\">http://dx.doi.org/10.13039/501100001659</fr:assertion>\r\n
|
|
147
|
+
\ </fr:assertion>\r\n <fr:assertion
|
|
148
|
+
name=\"award_number\">DI 1794/3-1</fr:assertion>\r\n </fr:assertion>\r\n
|
|
149
|
+
\ </fr:program>\r\n <ai:program xmlns:ai=\"http://www.crossref.org/AccessIndicators.xsd\"
|
|
150
|
+
name=\"AccessIndicators\">\r\n <ai:license_ref applies_to=\"tdm\">http://doi.wiley.com/10.1002/tdm_license_1.1</ai:license_ref>\r\n
|
|
151
|
+
\ <ai:license_ref applies_to=\"vor\" start_date=\"2017-06-05\">http://onlinelibrary.wiley.com/termsAndConditions#vor</ai:license_ref>\r\n
|
|
152
|
+
\ </ai:program>\r\n </custom_metadata>\r\n
|
|
153
|
+
\ </crossmark>\r\n <archive_locations>\r\n <archive
|
|
154
|
+
name=\"Portico\" />\r\n </archive_locations>\r\n <doi_data>\r\n
|
|
155
|
+
\ <doi>10.1111/nph.14619</doi>\r\n <resource>https://onlinelibrary.wiley.com/doi/10.1111/nph.14619</resource>\r\n
|
|
156
|
+
\ <collection property=\"crawler-based\">\r\n <item
|
|
157
|
+
crawler=\"iParadigms\">\r\n <resource>http://onlinelibrary.wiley.com/wol1/doi/10.1111/nph.14619/fullpdf</resource>\r\n
|
|
158
|
+
\ </item>\r\n </collection>\r\n <collection
|
|
159
|
+
property=\"text-mining\">\r\n <item>\r\n <resource
|
|
160
|
+
content_version=\"vor\" mime_type=\"application/pdf\">https://api.wiley.com/onlinelibrary/tdm/v1/articles/10.1111%2Fnph.14619</resource>\r\n
|
|
161
|
+
\ </item>\r\n </collection>\r\n </doi_data>\r\n
|
|
162
|
+
\ <citation_list>\r\n <citation key=\"10.1111/nph.14619-BIB0001|nph14619-cit-0001\">\r\n
|
|
163
|
+
\ <author>Bienvenut</author>\r\n <cYear>2015</cYear>\r\n
|
|
164
|
+
\ <doi provider=\"crossref\">10.1002/pmic.201500027</doi>\r\n
|
|
165
|
+
\ <article_title>Proteome-wide analysis of the amino terminal
|
|
166
|
+
status of Escherichia coli proteins at the steady-state and upon deformylation
|
|
167
|
+
inhibition</article_title>\r\n <journal_title>Proteomics</journal_title>\r\n
|
|
168
|
+
\ <volume>15</volume>\r\n <first_page>2503</first_page>\r\n
|
|
169
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0002|nph14619-cit-0002\">\r\n
|
|
170
|
+
\ <author>Brower</author>\r\n <cYear>2013</cYear>\r\n
|
|
171
|
+
\ <doi provider=\"crossref\">10.1016/j.molcel.2013.02.009</doi>\r\n
|
|
172
|
+
\ <article_title>Neurodegeneration-associated protein fragments
|
|
173
|
+
as short-lived substrates of the N-end rule pathway</article_title>\r\n <journal_title>Molecular
|
|
174
|
+
Cell</journal_title>\r\n <volume>50</volume>\r\n <first_page>161</first_page>\r\n
|
|
175
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0003|nph14619-cit-0003\">\r\n
|
|
176
|
+
\ <author>Calvo</author>\r\n <cYear>2017</cYear>\r\n
|
|
177
|
+
\ <doi provider=\"crossref\">10.1074/mcp.M116.063818</doi>\r\n
|
|
178
|
+
\ <article_title>Comparative analysis of mitochondrial N-termini
|
|
179
|
+
from mouse, human, and yeast</article_title>\r\n <journal_title>Molecular
|
|
180
|
+
& Cellular Proteomics</journal_title>\r\n <volume>16</volume>\r\n
|
|
181
|
+
\ <first_page>512</first_page>\r\n </citation>\r\n
|
|
182
|
+
\ <citation key=\"10.1111/nph.14619-BIB0004|nph14619-cit-0004\">\r\n
|
|
183
|
+
\ <author>Chen</author>\r\n <cYear>2017</cYear>\r\n
|
|
184
|
+
\ <doi provider=\"crossref\">10.1126/science.aal3655</doi>\r\n
|
|
185
|
+
\ <article_title>An N-end rule pathway that recognizes proline
|
|
186
|
+
and destroys gluconeogenic enzymes</article_title>\r\n <journal_title>Science</journal_title>\r\n
|
|
187
|
+
\ <volume>355</volume>\r\n <first_page>eaaI3655</first_page>\r\n
|
|
188
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0005|nph14619-cit-0005\">\r\n
|
|
189
|
+
\ <author>Chisholm</author>\r\n <cYear>2005</cYear>\r\n
|
|
190
|
+
\ <doi provider=\"crossref\">10.1073/pnas.0409468102</doi>\r\n
|
|
191
|
+
\ <article_title>Molecular characterization of proteolytic
|
|
192
|
+
cleavage sites of the Pseudomonas syringae effector AvrRpt2</article_title>\r\n
|
|
193
|
+
\ <journal_title>Proceedings of the National Academy of
|
|
194
|
+
Sciences, USA</journal_title>\r\n <volume>102</volume>\r\n
|
|
195
|
+
\ <first_page>2087</first_page>\r\n </citation>\r\n
|
|
196
|
+
\ <citation key=\"10.1111/nph.14619-BIB0006|nph14619-cit-0006\">\r\n
|
|
197
|
+
\ <author>Ditzel</author>\r\n <cYear>2003</cYear>\r\n
|
|
198
|
+
\ <doi provider=\"crossref\">10.1038/ncb984</doi>\r\n <article_title>Degradation
|
|
199
|
+
of DIAP1 by the N-end rule pathway is essential for regulating apoptosis</article_title>\r\n
|
|
200
|
+
\ <journal_title>Nature Cell Biology</journal_title>\r\n
|
|
201
|
+
\ <volume>5</volume>\r\n <first_page>467</first_page>\r\n
|
|
202
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0007|nph14619-cit-0007\">\r\n
|
|
203
|
+
\ <author>Dong</author>\r\n <cYear>2017</cYear>\r\n
|
|
204
|
+
\ <doi provider=\"crossref\">10.1101/gad.292235.116</doi>\r\n
|
|
205
|
+
\ <article_title>Ubiquitylation activates a peptidase that
|
|
206
|
+
promotes cleavage and destabilization of its activating E3 ligases and diverse
|
|
207
|
+
growth regulatory proteins to limit cell proliferation in Arabidopsis</article_title>\r\n
|
|
208
|
+
\ <journal_title>Genes & Development</journal_title>\r\n
|
|
209
|
+
\ <volume>31</volume>\r\n <first_page>197</first_page>\r\n
|
|
210
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0008|nph14619-cit-0008\">\r\n
|
|
211
|
+
\ <author>Eschen-Lippold</author>\r\n <cYear>2016</cYear>\r\n
|
|
212
|
+
\ <doi provider=\"crossref\">10.1104/pp.16.00336</doi>\r\n
|
|
213
|
+
\ <article_title>Bacterial AvrRpt2-like cysteine proteases
|
|
214
|
+
block activation of the Arabidopsis mitogen-activated protein kinases, MPK4
|
|
215
|
+
and MPK11</article_title>\r\n <journal_title>Plant Physiology</journal_title>\r\n
|
|
216
|
+
\ <volume>171</volume>\r\n <first_page>2223</first_page>\r\n
|
|
217
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0009|nph14619-cit-0009\">\r\n
|
|
218
|
+
\ <author>Faden</author>\r\n <cYear>2016</cYear>\r\n
|
|
219
|
+
\ <doi provider=\"crossref\">10.1038/ncomms12202</doi>\r\n
|
|
220
|
+
\ <article_title>Phenotypes on demand via switchable target
|
|
221
|
+
protein degradation in multicellular organisms</article_title>\r\n <journal_title>Nature
|
|
222
|
+
Communications</journal_title>\r\n <volume>7</volume>\r\n
|
|
223
|
+
\ <first_page>12202</first_page>\r\n </citation>\r\n
|
|
224
|
+
\ <citation key=\"10.1111/nph.14619-BIB0010|nph14619-cit-0010\">\r\n
|
|
225
|
+
\ <author>Garzon</author>\r\n <cYear>2007</cYear>\r\n
|
|
226
|
+
\ <doi provider=\"crossref\">10.1016/j.febslet.2007.06.005</doi>\r\n
|
|
227
|
+
\ <article_title>PRT6/At5g02310 encodes an Arabidopsis ubiquitin
|
|
228
|
+
ligase of the N-end rule pathway with arginine specificity and is not the
|
|
229
|
+
CER3 locus</article_title>\r\n <journal_title>FEBS Letters</journal_title>\r\n
|
|
230
|
+
\ <volume>581</volume>\r\n <first_page>3189</first_page>\r\n
|
|
231
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0011|nph14619-cit-0011\">\r\n
|
|
232
|
+
\ <author>Gevaert</author>\r\n <cYear>2003</cYear>\r\n
|
|
233
|
+
\ <doi provider=\"crossref\">10.1038/nbt810</doi>\r\n <article_title>Exploring
|
|
234
|
+
proteomes and analyzing protein processing by mass spectrometric identification
|
|
235
|
+
of sorted N-terminal peptides</article_title>\r\n <journal_title>Nature
|
|
236
|
+
Biotechnology</journal_title>\r\n <volume>21</volume>\r\n
|
|
237
|
+
\ <first_page>566</first_page>\r\n </citation>\r\n
|
|
238
|
+
\ <citation key=\"10.1111/nph.14619-BIB0012|nph14619-cit-0012\">\r\n
|
|
239
|
+
\ <author>Gibbs</author>\r\n <cYear>2014</cYear>\r\n
|
|
240
|
+
\ <doi provider=\"crossref\">10.1016/j.tcb.2014.05.001</doi>\r\n
|
|
241
|
+
\ <article_title>The eukaryotic N-end rule pathway: conserved
|
|
242
|
+
mechanisms and diverse functions</article_title>\r\n <journal_title>Trends
|
|
243
|
+
in Cell Biology</journal_title>\r\n <volume>24</volume>\r\n
|
|
244
|
+
\ <first_page>603</first_page>\r\n </citation>\r\n
|
|
245
|
+
\ <citation key=\"10.1111/nph.14619-BIB0013|nph14619-cit-0013\">\r\n
|
|
246
|
+
\ <author>Gibbs</author>\r\n <cYear>2016</cYear>\r\n
|
|
247
|
+
\ <doi provider=\"crossref\">10.1111/nph.14105</doi>\r\n
|
|
248
|
+
\ <article_title>From start to finish: amino-terminal protein
|
|
249
|
+
modifications as degradation signals in plants</article_title>\r\n <journal_title>New
|
|
250
|
+
Phytologist</journal_title>\r\n <volume>211</volume>\r\n
|
|
251
|
+
\ <first_page>1188</first_page>\r\n </citation>\r\n
|
|
252
|
+
\ <citation key=\"10.1111/nph.14619-BIB0014|nph14619-cit-0014\">\r\n
|
|
253
|
+
\ <author>Gibbs</author>\r\n <cYear>2011</cYear>\r\n
|
|
254
|
+
\ <doi provider=\"crossref\">10.1038/nature10534</doi>\r\n
|
|
255
|
+
\ <article_title>Homeostatic response to hypoxia is regulated
|
|
256
|
+
by the N-end rule pathway in plants</article_title>\r\n <journal_title>Nature</journal_title>\r\n
|
|
257
|
+
\ <volume>479</volume>\r\n <first_page>415</first_page>\r\n
|
|
258
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0015|nph14619-cit-0015\">\r\n
|
|
259
|
+
\ <author>Gravot</author>\r\n <cYear>2016</cYear>\r\n
|
|
260
|
+
\ <doi provider=\"crossref\">10.1186/s12870-016-0941-y</doi>\r\n
|
|
261
|
+
\ <article_title>Hypoxia response in Arabidopsis roots infected
|
|
262
|
+
by Plasmodiophora brassicae supports the development of clubroot</article_title>\r\n
|
|
263
|
+
\ <journal_title>BMC Plant Biology</journal_title>\r\n <volume>16</volume>\r\n
|
|
264
|
+
\ <first_page>251</first_page>\r\n </citation>\r\n
|
|
265
|
+
\ <citation key=\"10.1111/nph.14619-BIB0016|nph14619-cit-0016\">\r\n
|
|
266
|
+
\ <author>Hammerle</author>\r\n <cYear>1998</cYear>\r\n
|
|
267
|
+
\ <doi provider=\"crossref\">10.1074/jbc.273.39.25000</doi>\r\n
|
|
268
|
+
\ <article_title>Proteins of newly isolated mutants and
|
|
269
|
+
the amino-terminal proline are essential for ubiquitin-proteasome-catalyzed
|
|
270
|
+
catabolite degradation of fructose-1,6-bisphosphatase of Saccharomyces cerevisiae</article_title>\r\n
|
|
271
|
+
\ <journal_title>Journal of Biological Chemistry</journal_title>\r\n
|
|
272
|
+
\ <volume>273</volume>\r\n <first_page>25000</first_page>\r\n
|
|
273
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0017|nph14619-cit-0017\">\r\n
|
|
274
|
+
\ <author>Hoernstein</author>\r\n <cYear>2016</cYear>\r\n
|
|
275
|
+
\ <doi provider=\"crossref\">10.1074/mcp.M115.057190</doi>\r\n
|
|
276
|
+
\ <article_title>Identification of targets and interaction
|
|
277
|
+
partners of arginyl-tRNA protein transferase in the moss Physcomitrella patens</article_title>\r\n
|
|
278
|
+
\ <journal_title>Molecular & Cellular Proteomics</journal_title>\r\n
|
|
279
|
+
\ <volume>15</volume>\r\n <first_page>1808</first_page>\r\n
|
|
280
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0018|nph14619-cit-0018\">\r\n
|
|
281
|
+
\ <author>Huesgen</author>\r\n <cYear>2012</cYear>\r\n
|
|
282
|
+
\ <doi provider=\"crossref\">10.1111/j.1399-3054.2011.01536.x</doi>\r\n
|
|
283
|
+
\ <article_title>N- and C-terminal degradomics: new approaches
|
|
284
|
+
to reveal biological roles for plant proteases from substrate identification</article_title>\r\n
|
|
285
|
+
\ <journal_title>Physiologia Plantarum</journal_title>\r\n
|
|
286
|
+
\ <volume>145</volume>\r\n <first_page>5</first_page>\r\n
|
|
287
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0019|nph14619-cit-0019\">\r\n
|
|
288
|
+
\ <author>Hwang</author>\r\n <cYear>2010</cYear>\r\n
|
|
289
|
+
\ <doi provider=\"crossref\">10.1126/science.1183147</doi>\r\n
|
|
290
|
+
\ <article_title>N-terminal acetylation of cellular proteins
|
|
291
|
+
creates specific degradation signals</article_title>\r\n <journal_title>Science</journal_title>\r\n
|
|
292
|
+
\ <volume>327</volume>\r\n <first_page>973</first_page>\r\n
|
|
293
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0020|nph14619-cit-0020\">\r\n
|
|
294
|
+
\ <author>Kim</author>\r\n <cYear>2014</cYear>\r\n
|
|
295
|
+
\ <doi provider=\"crossref\">10.1016/j.cell.2013.11.031</doi>\r\n
|
|
296
|
+
\ <article_title>The N-terminal methionine of cellular proteins
|
|
297
|
+
as a degradation signal</article_title>\r\n <journal_title>Cell</journal_title>\r\n
|
|
298
|
+
\ <volume>156</volume>\r\n <first_page>158</first_page>\r\n
|
|
299
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0021|nph14619-cit-0021\">\r\n
|
|
300
|
+
\ <author>Kleifeld</author>\r\n <cYear>2010</cYear>\r\n
|
|
301
|
+
\ <doi provider=\"crossref\">10.1038/nbt.1611</doi>\r\n
|
|
302
|
+
\ <article_title>Isotopic labeling of terminal amines in
|
|
303
|
+
complex samples identifies protein N-termini and protease cleavage products</article_title>\r\n
|
|
304
|
+
\ <journal_title>Nature Biotechnology</journal_title>\r\n
|
|
305
|
+
\ <volume>28</volume>\r\n <first_page>281</first_page>\r\n
|
|
306
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0022|nph14619-cit-0022\">\r\n
|
|
307
|
+
\ <author>Lee</author>\r\n <cYear>2016</cYear>\r\n
|
|
308
|
+
\ <doi provider=\"crossref\">10.14348/molcells.2016.2329</doi>\r\n
|
|
309
|
+
\ <article_title>N-terminal acetylation-targeted N-end rule
|
|
310
|
+
proteolytic system: the Ac/N-end rule pathway</article_title>\r\n <journal_title>Molecules
|
|
311
|
+
and Cells</journal_title>\r\n <volume>39</volume>\r\n <first_page>169</first_page>\r\n
|
|
312
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0023|nph14619-cit-0023\">\r\n
|
|
313
|
+
\ <author>Li</author>\r\n <cYear>2017</cYear>\r\n
|
|
314
|
+
\ <doi provider=\"crossref\">10.1105/tpc.16.00768</doi>\r\n
|
|
315
|
+
\ <article_title>Protein degradation rate in Arabidopsis
|
|
316
|
+
thaliana leaf growth and development</article_title>\r\n <journal_title>Plant
|
|
317
|
+
Cell</journal_title>\r\n <volume>29</volume>\r\n <first_page>207</first_page>\r\n
|
|
318
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0024|nph14619-cit-0024\">\r\n
|
|
319
|
+
\ <author>Majovsky</author>\r\n <cYear>2014</cYear>\r\n
|
|
320
|
+
\ <doi provider=\"crossref\">10.1021/pr500164j</doi>\r\n
|
|
321
|
+
\ <article_title>Targeted proteomics analysis of protein
|
|
322
|
+
degradation in plant signaling on an LTQ-Orbitrap mass spectrometer</article_title>\r\n
|
|
323
|
+
\ <journal_title>Journal of Proteome Research</journal_title>\r\n
|
|
324
|
+
\ <volume>13</volume>\r\n <first_page>4246</first_page>\r\n
|
|
325
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0025|nph14619-cit-0025\">\r\n
|
|
326
|
+
\ <author>Marchi</author>\r\n <cYear>2016</cYear>\r\n
|
|
327
|
+
\ <doi provider=\"crossref\">10.1038/srep26020</doi>\r\n
|
|
328
|
+
\ <article_title>The N-end rule pathway regulates pathogen
|
|
329
|
+
responses in plants</article_title>\r\n <journal_title>Scientific
|
|
330
|
+
Reports</journal_title>\r\n <volume>6</volume>\r\n <first_page>26020</first_page>\r\n
|
|
331
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0026|nph14619-cit-0026\">\r\n
|
|
332
|
+
\ <author>Mendiondo</author>\r\n <cYear>2016</cYear>\r\n
|
|
333
|
+
\ <doi provider=\"crossref\">10.1111/pbi.12334</doi>\r\n
|
|
334
|
+
\ <article_title>Enhanced waterlogging tolerance in barley
|
|
335
|
+
by manipulation of expression of the N-end rule pathway E3 ligase PROTEOLYSIS6</article_title>\r\n
|
|
336
|
+
\ <journal_title>Plant Biotechnology Journal</journal_title>\r\n
|
|
337
|
+
\ <volume>14</volume>\r\n <first_page>40</first_page>\r\n
|
|
338
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0027|nph14619-cit-0027\">\r\n
|
|
339
|
+
\ <author>Mot</author>\r\n <cYear>2018</cYear>\r\n
|
|
340
|
+
\ <doi provider=\"crossref\">10.1111/nph.14497</doi>\r\n
|
|
341
|
+
\ <article_title>Real-time detection of N-end rule-mediated
|
|
342
|
+
ubiquitination via fluorescently labeled substrate probes</article_title>\r\n
|
|
343
|
+
\ <journal_title>New Phytologist</journal_title>\r\n <volume>217</volume>\r\n
|
|
344
|
+
\ <first_page>613</first_page>\r\n </citation>\r\n
|
|
345
|
+
\ <citation key=\"10.1111/nph.14619-BIB0028|nph14619-cit-0028\">\r\n
|
|
346
|
+
\ <author>Nishimura</author>\r\n <cYear>2013</cYear>\r\n
|
|
347
|
+
\ <doi provider=\"crossref\">10.1105/tpc.113.112557</doi>\r\n
|
|
348
|
+
\ <article_title>ClpS1 is a conserved substrate selector
|
|
349
|
+
for the chloroplast Clp protease system in Arabidopsis</article_title>\r\n
|
|
350
|
+
\ <journal_title>Plant Cell</journal_title>\r\n <volume>25</volume>\r\n
|
|
351
|
+
\ <first_page>2276</first_page>\r\n </citation>\r\n
|
|
352
|
+
\ <citation key=\"10.1111/nph.14619-BIB0029|nph14619-cit-0029\">\r\n
|
|
353
|
+
\ <author>Nishimura</author>\r\n <cYear>2015</cYear>\r\n
|
|
354
|
+
\ <doi provider=\"crossref\">10.1016/j.bbabio.2014.11.012</doi>\r\n
|
|
355
|
+
\ <article_title>Organization, function and substrates of
|
|
356
|
+
the essential Clp protease system in plastids</article_title>\r\n <journal_title>Biochimica
|
|
357
|
+
et Biophysica Acta</journal_title>\r\n <volume>1847</volume>\r\n
|
|
358
|
+
\ <first_page>915</first_page>\r\n </citation>\r\n
|
|
359
|
+
\ <citation key=\"10.1111/nph.14619-BIB0030|nph14619-cit-0030\">\r\n
|
|
360
|
+
\ <author>Piatkov</author>\r\n <cYear>2012a</cYear>\r\n
|
|
361
|
+
\ <doi provider=\"crossref\">10.1073/pnas.1207786109</doi>\r\n
|
|
362
|
+
\ <article_title>The N-end rule pathway counteracts cell
|
|
363
|
+
death by destroying proapoptotic protein fragments</article_title>\r\n <journal_title>Proceedings
|
|
364
|
+
of the National Academy of Sciences, USA</journal_title>\r\n <volume>109</volume>\r\n
|
|
365
|
+
\ <first_page>E1839</first_page>\r\n </citation>\r\n
|
|
366
|
+
\ <citation key=\"10.1111/nph.14619-BIB0031|nph14619-cit-0031\">\r\n
|
|
367
|
+
\ <author>Piatkov</author>\r\n <cYear>2012b</cYear>\r\n
|
|
368
|
+
\ <doi provider=\"crossref\">10.1016/j.molcel.2012.10.012</doi>\r\n
|
|
369
|
+
\ <article_title>The auto-generated fragment of the Usp1
|
|
370
|
+
deubiquitylase is a physiological substrate of the N-end rule pathway</article_title>\r\n
|
|
371
|
+
\ <journal_title>Molecular Cell</journal_title>\r\n <volume>48</volume>\r\n
|
|
372
|
+
\ <first_page>926</first_page>\r\n </citation>\r\n
|
|
373
|
+
\ <citation key=\"10.1111/nph.14619-BIB0032|nph14619-cit-0032\">\r\n
|
|
374
|
+
\ <author>Potuschak</author>\r\n <cYear>1998</cYear>\r\n
|
|
375
|
+
\ <doi provider=\"crossref\">10.1073/pnas.95.14.7904</doi>\r\n
|
|
376
|
+
\ <article_title>PRT1 of Arabidopsis thaliana encodes a
|
|
377
|
+
component of the plant N-end rule pathway</article_title>\r\n <journal_title>Proceedings
|
|
378
|
+
of the National Academy of Sciences, USA</journal_title>\r\n <volume>95</volume>\r\n
|
|
379
|
+
\ <first_page>7904</first_page>\r\n </citation>\r\n
|
|
380
|
+
\ <citation key=\"10.1111/nph.14619-BIB0033|nph14619-cit-0033\">\r\n
|
|
381
|
+
\ <author>Rao</author>\r\n <cYear>2001</cYear>\r\n
|
|
382
|
+
\ <doi provider=\"crossref\">10.1038/35073627</doi>\r\n
|
|
383
|
+
\ <article_title>Degradation of a cohesin subunit by the
|
|
384
|
+
N-end rule pathway is essential for chromosome stability</article_title>\r\n
|
|
385
|
+
\ <journal_title>Nature</journal_title>\r\n <volume>410</volume>\r\n
|
|
386
|
+
\ <first_page>955</first_page>\r\n </citation>\r\n
|
|
387
|
+
\ <citation key=\"10.1111/nph.14619-BIB0034|nph14619-cit-0034\">\r\n
|
|
388
|
+
\ <author>Riber</author>\r\n <cYear>2015</cYear>\r\n
|
|
389
|
+
\ <doi provider=\"crossref\">10.1104/pp.114.253088</doi>\r\n
|
|
390
|
+
\ <article_title>The greening after extended darkness1 is
|
|
391
|
+
an N-end rule pathway mutant with high tolerance to submergence and starvation</article_title>\r\n
|
|
392
|
+
\ <journal_title>Plant Physiology</journal_title>\r\n <volume>167</volume>\r\n
|
|
393
|
+
\ <first_page>1616</first_page>\r\n </citation>\r\n
|
|
394
|
+
\ <citation key=\"10.1111/nph.14619-BIB0035|nph14619-cit-0035\">\r\n
|
|
395
|
+
\ <author>Rowland</author>\r\n <cYear>2015</cYear>\r\n
|
|
396
|
+
\ <article_title>The Arabidopsis chloroplast stromal N-terminome:
|
|
397
|
+
complexities of amino-terminal protein maturation and stability</article_title>\r\n
|
|
398
|
+
\ <journal_title>Plant Physiology</journal_title>\r\n <volume>169</volume>\r\n
|
|
399
|
+
\ <first_page>1881</first_page>\r\n </citation>\r\n
|
|
400
|
+
\ <citation key=\"10.1111/nph.14619-BIB0036|nph14619-cit-0036\">\r\n
|
|
401
|
+
\ <author>Santt</author>\r\n <cYear>2008</cYear>\r\n
|
|
402
|
+
\ <doi provider=\"crossref\">10.1091/mbc.e08-03-0328</doi>\r\n
|
|
403
|
+
\ <article_title>The yeast GID complex, a novel ubiquitin
|
|
404
|
+
ligase (E3) involved in the regulation of carbohydrate metabolism</article_title>\r\n
|
|
405
|
+
\ <journal_title>Molecular Biology of the Cell</journal_title>\r\n
|
|
406
|
+
\ <volume>19</volume>\r\n <first_page>3323</first_page>\r\n
|
|
407
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0037|nph14619-cit-0037\">\r\n
|
|
408
|
+
\ <author>Schilling</author>\r\n <cYear>2011</cYear>\r\n
|
|
409
|
+
\ <doi provider=\"crossref\">10.1038/nprot.2010.178</doi>\r\n
|
|
410
|
+
\ <article_title>Characterization of the prime and non-prime
|
|
411
|
+
active site specificities of proteases by proteome-derived peptide libraries
|
|
412
|
+
and tandem mass spectrometry</article_title>\r\n <journal_title>Nature
|
|
413
|
+
Protocols</journal_title>\r\n <volume>6</volume>\r\n <first_page>111</first_page>\r\n
|
|
414
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0038|nph14619-cit-0038\">\r\n
|
|
415
|
+
\ <author>Takemoto</author>\r\n <cYear>2005</cYear>\r\n
|
|
416
|
+
\ <doi provider=\"crossref\">10.1094/MPMI-18-1258</doi>\r\n
|
|
417
|
+
\ <article_title>Membrane release and destabilization of
|
|
418
|
+
Arabidopsis RIN4 following cleavage by Pseudomonas syringae AvrRpt2</article_title>\r\n
|
|
419
|
+
\ <journal_title>Molecular Plant-Microbe Interactions</journal_title>\r\n
|
|
420
|
+
\ <volume>18</volume>\r\n <first_page>1258</first_page>\r\n
|
|
421
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0039|nph14619-cit-0039\">\r\n
|
|
422
|
+
\ <author>Tasaki</author>\r\n <cYear>2012</cYear>\r\n
|
|
423
|
+
\ <doi provider=\"crossref\">10.1146/annurev-biochem-051710-093308</doi>\r\n
|
|
424
|
+
\ <article_title>The N-end rule pathway</article_title>\r\n
|
|
425
|
+
\ <journal_title>Annual Review of Biochemistry</journal_title>\r\n
|
|
426
|
+
\ <volume>81</volume>\r\n <first_page>261</first_page>\r\n
|
|
427
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0040|nph14619-cit-0040\">\r\n
|
|
428
|
+
\ <author>Tsiatsiani</author>\r\n <cYear>2013</cYear>\r\n
|
|
429
|
+
\ <doi provider=\"crossref\">10.1105/tpc.113.115287</doi>\r\n
|
|
430
|
+
\ <article_title>The Arabidopsis METACASPASE9 degradome</article_title>\r\n
|
|
431
|
+
\ <journal_title>Plant Cell</journal_title>\r\n <volume>25</volume>\r\n
|
|
432
|
+
\ <first_page>2831</first_page>\r\n </citation>\r\n
|
|
433
|
+
\ <citation key=\"10.1111/nph.14619-BIB0041|nph14619-cit-0041\">\r\n
|
|
434
|
+
\ <author>Varshavsky</author>\r\n <cYear>2011</cYear>\r\n
|
|
435
|
+
\ <doi provider=\"crossref\">10.1002/pro.666</doi>\r\n <article_title>The
|
|
436
|
+
N-end rule pathway and regulation by proteolysis</article_title>\r\n <journal_title>Protein
|
|
437
|
+
Science</journal_title>\r\n <volume>20</volume>\r\n <first_page>1298</first_page>\r\n
|
|
438
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0042|nph14619-cit-0042\">\r\n
|
|
439
|
+
\ <author>Venne</author>\r\n <cYear>2015</cYear>\r\n
|
|
440
|
+
\ <doi provider=\"crossref\">10.1002/pmic.201500014</doi>\r\n
|
|
441
|
+
\ <article_title>An improved workflow for quantitative N-terminal
|
|
442
|
+
charge-based fractional diagonal chromatography (ChaFRADIC) to study proteolytic
|
|
443
|
+
events in Arabidopsis thaliana</article_title>\r\n <journal_title>Proteomics</journal_title>\r\n
|
|
444
|
+
\ <volume>15</volume>\r\n <first_page>2458</first_page>\r\n
|
|
445
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0043|nph14619-cit-0043\">\r\n
|
|
446
|
+
\ <author>Venne</author>\r\n <cYear>2013</cYear>\r\n
|
|
447
|
+
\ <doi provider=\"crossref\">10.1021/pr400435d</doi>\r\n
|
|
448
|
+
\ <article_title>Novel highly sensitive, specific, and straightforward
|
|
449
|
+
strategy for comprehensive N-terminal proteomics reveals unknown substrates
|
|
450
|
+
of the mitochondrial peptidase Icp55</article_title>\r\n <journal_title>Journal
|
|
451
|
+
of Proteome Research</journal_title>\r\n <volume>12</volume>\r\n
|
|
452
|
+
\ <first_page>3823</first_page>\r\n </citation>\r\n
|
|
453
|
+
\ <citation key=\"10.1111/nph.14619-BIB0044|nph14619-cit-0044\">\r\n
|
|
454
|
+
\ <author>Vogtle</author>\r\n <cYear>2009</cYear>\r\n
|
|
455
|
+
\ <doi provider=\"crossref\">10.1016/j.cell.2009.07.045</doi>\r\n
|
|
456
|
+
\ <article_title>Global analysis of the mitochondrial N-proteome
|
|
457
|
+
identifies a processing peptidase critical for protein stability</article_title>\r\n
|
|
458
|
+
\ <journal_title>Cell</journal_title>\r\n <volume>139</volume>\r\n
|
|
459
|
+
\ <first_page>428</first_page>\r\n </citation>\r\n
|
|
460
|
+
\ <citation key=\"10.1111/nph.14619-BIB0045|nph14619-cit-0045\">\r\n
|
|
461
|
+
\ <author>Wadas</author>\r\n <cYear>2016</cYear>\r\n
|
|
462
|
+
\ <doi provider=\"crossref\">10.1074/jbc.M116.747956</doi>\r\n
|
|
463
|
+
\ <article_title>Analyzing N-terminal arginylation through
|
|
464
|
+
the use of peptide arrays and degradation assays</article_title>\r\n <journal_title>Journal
|
|
465
|
+
of Biological Chemistry</journal_title>\r\n <volume>291</volume>\r\n
|
|
466
|
+
\ <first_page>20976</first_page>\r\n </citation>\r\n
|
|
467
|
+
\ <citation key=\"10.1111/nph.14619-BIB0046|nph14619-cit-0046\">\r\n
|
|
468
|
+
\ <author>Weits</author>\r\n <cYear>2014</cYear>\r\n
|
|
469
|
+
\ <doi provider=\"crossref\">10.1038/ncomms4425</doi>\r\n
|
|
470
|
+
\ <article_title>Plant cysteine oxidases control the oxygen-dependent
|
|
471
|
+
branch of the N-end-rule pathway</article_title>\r\n <journal_title>Nature
|
|
472
|
+
Communications</journal_title>\r\n <volume>5</volume>\r\n
|
|
473
|
+
\ <first_page>3425</first_page>\r\n </citation>\r\n
|
|
474
|
+
\ <citation key=\"10.1111/nph.14619-BIB0047|nph14619-cit-0047\">\r\n
|
|
475
|
+
\ <author>White</author>\r\n <cYear>2016</cYear>\r\n
|
|
476
|
+
\ <doi provider=\"crossref\">10.1038/ncomms14690</doi>\r\n
|
|
477
|
+
\ <article_title>Plant cysteine oxidases are dioxygenases
|
|
478
|
+
that directly enable arginyl transferase-catalyzed arginylation of N-end rule
|
|
479
|
+
targets</article_title>\r\n <journal_title>Nature Communications</journal_title>\r\n
|
|
480
|
+
\ <volume>8</volume>\r\n <first_page>14690</first_page>\r\n
|
|
481
|
+
\ </citation>\r\n <citation key=\"10.1111/nph.14619-BIB0048|nph14619-cit-0048\">\r\n
|
|
482
|
+
\ <author>Xu</author>\r\n <cYear>2015</cYear>\r\n
|
|
483
|
+
\ <doi provider=\"crossref\">10.1105/tpc.15.00173</doi>\r\n
|
|
484
|
+
\ <article_title>Two N-terminal acetyltransferases antagonistically
|
|
485
|
+
regulate the stability of a nod-like receptor in Arabidopsis</article_title>\r\n
|
|
486
|
+
\ <journal_title>Plant Cell</journal_title>\r\n <volume>27</volume>\r\n
|
|
487
|
+
\ <first_page>1547</first_page>\r\n </citation>\r\n
|
|
488
|
+
\ <citation key=\"10.1111/nph.14619-BIB0049|nph14619-cit-0049\">\r\n
|
|
489
|
+
\ <author>Zhang</author>\r\n <cYear>2015</cYear>\r\n
|
|
490
|
+
\ <doi provider=\"crossref\">10.1002/pmic.201400530</doi>\r\n
|
|
491
|
+
\ <article_title>Quantitative proteomics analysis of the
|
|
492
|
+
Arg/N-end rule pathway of targeted degradation in Arabidopsis roots</article_title>\r\n
|
|
493
|
+
\ <journal_title>Proteomics</journal_title>\r\n <volume>15</volume>\r\n
|
|
494
|
+
\ <first_page>2447</first_page>\r\n </citation>\r\n
|
|
495
|
+
\ </citation_list>\r\n </journal_article>\r\n </journal>\r\n
|
|
496
|
+
\ </crossref>\r\n </doi_record>\r\n </query>\r\n </body>\r\n
|
|
497
|
+
\ </query_result>\r\n</crossref_result>"
|
|
498
|
+
recorded_at: Sun, 19 Mar 2023 17:37:35 GMT
|
|
499
|
+
- request:
|
|
500
|
+
method: get
|
|
501
|
+
uri: https://doi.org/ra/10.1111
|
|
502
|
+
body:
|
|
503
|
+
encoding: UTF-8
|
|
504
|
+
string: ''
|
|
505
|
+
headers:
|
|
506
|
+
Connection:
|
|
507
|
+
- close
|
|
508
|
+
Host:
|
|
509
|
+
- doi.org
|
|
510
|
+
User-Agent:
|
|
511
|
+
- http.rb/5.1.1
|
|
512
|
+
response:
|
|
513
|
+
status:
|
|
514
|
+
code: 200
|
|
515
|
+
message: OK
|
|
516
|
+
headers:
|
|
517
|
+
Date:
|
|
518
|
+
- Sun, 19 Mar 2023 17:39:20 GMT
|
|
519
|
+
Content-Type:
|
|
520
|
+
- application/json;charset=UTF-8
|
|
521
|
+
Transfer-Encoding:
|
|
522
|
+
- chunked
|
|
523
|
+
Connection:
|
|
524
|
+
- close
|
|
525
|
+
Permissions-Policy:
|
|
526
|
+
- interest-cohort=(),browsing-topics=()
|
|
527
|
+
Cf-Cache-Status:
|
|
528
|
+
- DYNAMIC
|
|
529
|
+
Report-To:
|
|
530
|
+
- '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=h7CrspETpJJRqofxc5bSfCLui5ZAgcbJPhoBJS%2FIk4AJvYPPh0gSicz%2FUCRDEkooP7PXrLe6fHdtQUQzUV14qUAYfdO6628HH1X9lb57Hoy3l78N4ebl3843Li9qCqVpT2G%2FUzI%3D"}],"group":"cf-nel","max_age":604800}'
|
|
531
|
+
Nel:
|
|
532
|
+
- '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}'
|
|
533
|
+
Strict-Transport-Security:
|
|
534
|
+
- max-age=31536000; includeSubDomains; preload
|
|
535
|
+
Server:
|
|
536
|
+
- cloudflare
|
|
537
|
+
Cf-Ray:
|
|
538
|
+
- 7aa77e824d99b90e-AMS
|
|
539
|
+
Alt-Svc:
|
|
540
|
+
- h3=":443"; ma=86400, h3-29=":443"; ma=86400
|
|
541
|
+
body:
|
|
542
|
+
encoding: UTF-8
|
|
543
|
+
string: |-
|
|
544
|
+
[
|
|
545
|
+
{
|
|
546
|
+
"DOI": "10.1111",
|
|
547
|
+
"RA": "Crossref"
|
|
548
|
+
}
|
|
549
|
+
]
|
|
550
|
+
recorded_at: Sun, 19 Mar 2023 17:39:20 GMT
|
|
551
|
+
- request:
|
|
552
|
+
method: get
|
|
553
|
+
uri: https://api.crossref.org/works/10.1111/nph.14619
|
|
554
|
+
body:
|
|
555
|
+
encoding: UTF-8
|
|
556
|
+
string: ''
|
|
557
|
+
headers:
|
|
558
|
+
Connection:
|
|
559
|
+
- close
|
|
560
|
+
Host:
|
|
561
|
+
- api.crossref.org
|
|
562
|
+
User-Agent:
|
|
563
|
+
- http.rb/5.1.1
|
|
564
|
+
response:
|
|
565
|
+
status:
|
|
566
|
+
code: 200
|
|
567
|
+
message: OK
|
|
568
|
+
headers:
|
|
569
|
+
Date:
|
|
570
|
+
- Sun, 19 Mar 2023 17:39:20 GMT
|
|
571
|
+
Content-Type:
|
|
572
|
+
- application/json
|
|
573
|
+
Transfer-Encoding:
|
|
574
|
+
- chunked
|
|
575
|
+
Access-Control-Expose-Headers:
|
|
576
|
+
- Link
|
|
577
|
+
Access-Control-Allow-Headers:
|
|
578
|
+
- X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language,
|
|
579
|
+
Accept-Ranges, Cache-Control
|
|
580
|
+
Access-Control-Allow-Origin:
|
|
581
|
+
- "*"
|
|
582
|
+
Server:
|
|
583
|
+
- Jetty(9.4.40.v20210413)
|
|
584
|
+
X-Ratelimit-Limit:
|
|
585
|
+
- '50'
|
|
586
|
+
X-Ratelimit-Interval:
|
|
587
|
+
- 1s
|
|
588
|
+
X-Api-Pool:
|
|
589
|
+
- public
|
|
590
|
+
X-Rate-Limit-Limit:
|
|
591
|
+
- '50'
|
|
592
|
+
X-Rate-Limit-Interval:
|
|
593
|
+
- 1s
|
|
594
|
+
Permissions-Policy:
|
|
595
|
+
- interest-cohort=()
|
|
596
|
+
Connection:
|
|
597
|
+
- close
|
|
598
|
+
body:
|
|
599
|
+
encoding: UTF-8
|
|
600
|
+
string: '{"status":"ok","message-type":"work","message-version":"1.0.0","message":{"indexed":{"date-parts":[[2023,3,17]],"date-time":"2023-03-17T22:51:37Z","timestamp":1679093497624},"reference-count":49,"publisher":"Wiley","issue":"3","license":[{"start":{"date-parts":[[2017,6,5]],"date-time":"2017-06-05T00:00:00Z","timestamp":1496620800000},"content-version":"tdm","delay-in-days":0,"URL":"http:\/\/doi.wiley.com\/10.1002\/tdm_license_1.1"},{"start":{"date-parts":[[2017,6,5]],"date-time":"2017-06-05T00:00:00Z","timestamp":1496620800000},"content-version":"vor","delay-in-days":0,"URL":"http:\/\/onlinelibrary.wiley.com\/termsAndConditions#vor"}],"funder":[{"DOI":"10.13039\/501100001665","name":"Agence
|
|
601
|
+
Nationale de la Recherche","doi-asserted-by":"publisher","award":["ANR-10-LABX-41","ANR-11-IDEX-0002-02"]},{"DOI":"10.13039\/501100001584","name":"Department
|
|
602
|
+
of Agriculture, Food and the Marine","doi-asserted-by":"publisher","award":["14\/S\/819"]},{"DOI":"10.13039\/501100001602","name":"Science
|
|
603
|
+
Foundation Ireland","doi-asserted-by":"publisher","award":["13\/IA\/1870"]},{"name":"Virtual
|
|
604
|
+
Irish Centre for Crop Improvement","award":["14\/S\/819"]},{"DOI":"10.13039\/501100008530","name":"European
|
|
605
|
+
Regional Development Fund","doi-asserted-by":"publisher","award":["LSP-TP2-1"]},{"DOI":"10.13039\/501100001659","name":"Deutsche
|
|
606
|
+
Forschungsgemeinschaft","doi-asserted-by":"publisher","award":["DI 1794\/3-1"]}],"content-domain":{"domain":["wiley.com"],"crossmark-restriction":true},"short-container-title":["New
|
|
607
|
+
Phytol"],"published-print":{"date-parts":[[2018,5]]},"DOI":"10.1111\/nph.14619","type":"journal-article","created":{"date-parts":[[2017,6,5]],"date-time":"2017-06-05T10:56:44Z","timestamp":1496660204000},"page":"929-935","update-policy":"http:\/\/dx.doi.org\/10.1002\/crossmark_policy","source":"Crossref","is-referenced-by-count":63,"title":["Life
|
|
608
|
+
and death of proteins after protease cleavage: protein degradation by the
|
|
609
|
+
N-end rule pathway"],"prefix":"10.1111","volume":"218","author":[{"ORCID":"http:\/\/orcid.org\/0000-0002-4156-3761","authenticated-orcid":false,"given":"Nico","family":"Dissmeyer","sequence":"first","affiliation":[{"name":"Independent
|
|
610
|
+
Junior Research Group on Protein Recognition and Degradation; Leibniz Institute
|
|
611
|
+
of Plant Biochemistry (IPB); Weinberg 3 Halle (Saale) D-06120 Germany"},{"name":"ScienceCampus
|
|
612
|
+
Halle - Plant-based Bioeconomy; Betty-Heimann-Strasse 3 Halle (Saale) D-06120
|
|
613
|
+
Germany"}]},{"given":"Susana","family":"Rivas","sequence":"additional","affiliation":[{"name":"LIPM;
|
|
614
|
+
Universit\u00e9 de Toulouse; INRA; CNRS; Castanet-Tolosan 31 326 France"}]},{"ORCID":"http:\/\/orcid.org\/0000-0003-3548-8213","authenticated-orcid":false,"given":"Emmanuelle","family":"Graciet","sequence":"additional","affiliation":[{"name":"Department
|
|
615
|
+
of Biology; Maynooth University; Maynooth Co. Kildare Ireland"}]}],"member":"311","published-online":{"date-parts":[[2017,6,5]]},"reference":[{"key":"10.1111\/nph.14619-BIB0001|nph14619-cit-0001","doi-asserted-by":"crossref","first-page":"2503","DOI":"10.1002\/pmic.201500027","article-title":"Proteome-wide
|
|
616
|
+
analysis of the amino terminal status of Escherichia coli proteins at the
|
|
617
|
+
steady-state and upon deformylation inhibition","volume":"15","author":"Bienvenut","year":"2015","journal-title":"Proteomics"},{"key":"10.1111\/nph.14619-BIB0002|nph14619-cit-0002","doi-asserted-by":"crossref","first-page":"161","DOI":"10.1016\/j.molcel.2013.02.009","article-title":"Neurodegeneration-associated
|
|
618
|
+
protein fragments as short-lived substrates of the N-end rule pathway","volume":"50","author":"Brower","year":"2013","journal-title":"Molecular
|
|
619
|
+
Cell"},{"key":"10.1111\/nph.14619-BIB0003|nph14619-cit-0003","doi-asserted-by":"crossref","first-page":"512","DOI":"10.1074\/mcp.M116.063818","article-title":"Comparative
|
|
620
|
+
analysis of mitochondrial N-termini from mouse, human, and yeast","volume":"16","author":"Calvo","year":"2017","journal-title":"Molecular
|
|
621
|
+
& Cellular Proteomics"},{"key":"10.1111\/nph.14619-BIB0004|nph14619-cit-0004","doi-asserted-by":"crossref","first-page":"eaaI3655","DOI":"10.1126\/science.aal3655","article-title":"An
|
|
622
|
+
N-end rule pathway that recognizes proline and destroys gluconeogenic enzymes","volume":"355","author":"Chen","year":"2017","journal-title":"Science"},{"key":"10.1111\/nph.14619-BIB0005|nph14619-cit-0005","doi-asserted-by":"crossref","first-page":"2087","DOI":"10.1073\/pnas.0409468102","article-title":"Molecular
|
|
623
|
+
characterization of proteolytic cleavage sites of the Pseudomonas syringae
|
|
624
|
+
effector AvrRpt2","volume":"102","author":"Chisholm","year":"2005","journal-title":"Proceedings
|
|
625
|
+
of the National Academy of Sciences, USA"},{"key":"10.1111\/nph.14619-BIB0006|nph14619-cit-0006","doi-asserted-by":"crossref","first-page":"467","DOI":"10.1038\/ncb984","article-title":"Degradation
|
|
626
|
+
of DIAP1 by the N-end rule pathway is essential for regulating apoptosis","volume":"5","author":"Ditzel","year":"2003","journal-title":"Nature
|
|
627
|
+
Cell Biology"},{"key":"10.1111\/nph.14619-BIB0007|nph14619-cit-0007","doi-asserted-by":"crossref","first-page":"197","DOI":"10.1101\/gad.292235.116","article-title":"Ubiquitylation
|
|
628
|
+
activates a peptidase that promotes cleavage and destabilization of its activating
|
|
629
|
+
E3 ligases and diverse growth regulatory proteins to limit cell proliferation
|
|
630
|
+
in Arabidopsis","volume":"31","author":"Dong","year":"2017","journal-title":"Genes
|
|
631
|
+
& Development"},{"key":"10.1111\/nph.14619-BIB0008|nph14619-cit-0008","doi-asserted-by":"crossref","first-page":"2223","DOI":"10.1104\/pp.16.00336","article-title":"Bacterial
|
|
632
|
+
AvrRpt2-like cysteine proteases block activation of the Arabidopsis mitogen-activated
|
|
633
|
+
protein kinases, MPK4 and MPK11","volume":"171","author":"Eschen-Lippold","year":"2016","journal-title":"Plant
|
|
634
|
+
Physiology"},{"key":"10.1111\/nph.14619-BIB0009|nph14619-cit-0009","doi-asserted-by":"crossref","first-page":"12202","DOI":"10.1038\/ncomms12202","article-title":"Phenotypes
|
|
635
|
+
on demand via switchable target protein degradation in multicellular organisms","volume":"7","author":"Faden","year":"2016","journal-title":"Nature
|
|
636
|
+
Communications"},{"key":"10.1111\/nph.14619-BIB0010|nph14619-cit-0010","doi-asserted-by":"crossref","first-page":"3189","DOI":"10.1016\/j.febslet.2007.06.005","article-title":"PRT6\/At5g02310
|
|
637
|
+
encodes an Arabidopsis ubiquitin ligase of the N-end rule pathway with arginine
|
|
638
|
+
specificity and is not the CER3 locus","volume":"581","author":"Garzon","year":"2007","journal-title":"FEBS
|
|
639
|
+
Letters"},{"key":"10.1111\/nph.14619-BIB0011|nph14619-cit-0011","doi-asserted-by":"crossref","first-page":"566","DOI":"10.1038\/nbt810","article-title":"Exploring
|
|
640
|
+
proteomes and analyzing protein processing by mass spectrometric identification
|
|
641
|
+
of sorted N-terminal peptides","volume":"21","author":"Gevaert","year":"2003","journal-title":"Nature
|
|
642
|
+
Biotechnology"},{"key":"10.1111\/nph.14619-BIB0012|nph14619-cit-0012","doi-asserted-by":"crossref","first-page":"603","DOI":"10.1016\/j.tcb.2014.05.001","article-title":"The
|
|
643
|
+
eukaryotic N-end rule pathway: conserved mechanisms and diverse functions","volume":"24","author":"Gibbs","year":"2014","journal-title":"Trends
|
|
644
|
+
in Cell Biology"},{"key":"10.1111\/nph.14619-BIB0013|nph14619-cit-0013","doi-asserted-by":"crossref","first-page":"1188","DOI":"10.1111\/nph.14105","article-title":"From
|
|
645
|
+
start to finish: amino-terminal protein modifications as degradation signals
|
|
646
|
+
in plants","volume":"211","author":"Gibbs","year":"2016","journal-title":"New
|
|
647
|
+
Phytologist"},{"key":"10.1111\/nph.14619-BIB0014|nph14619-cit-0014","doi-asserted-by":"crossref","first-page":"415","DOI":"10.1038\/nature10534","article-title":"Homeostatic
|
|
648
|
+
response to hypoxia is regulated by the N-end rule pathway in plants","volume":"479","author":"Gibbs","year":"2011","journal-title":"Nature"},{"key":"10.1111\/nph.14619-BIB0015|nph14619-cit-0015","doi-asserted-by":"crossref","first-page":"251","DOI":"10.1186\/s12870-016-0941-y","article-title":"Hypoxia
|
|
649
|
+
response in Arabidopsis roots infected by Plasmodiophora brassicae supports
|
|
650
|
+
the development of clubroot","volume":"16","author":"Gravot","year":"2016","journal-title":"BMC
|
|
651
|
+
Plant Biology"},{"key":"10.1111\/nph.14619-BIB0016|nph14619-cit-0016","doi-asserted-by":"crossref","first-page":"25000","DOI":"10.1074\/jbc.273.39.25000","article-title":"Proteins
|
|
652
|
+
of newly isolated mutants and the amino-terminal proline are essential for
|
|
653
|
+
ubiquitin-proteasome-catalyzed catabolite degradation of fructose-1,6-bisphosphatase
|
|
654
|
+
of Saccharomyces cerevisiae","volume":"273","author":"Hammerle","year":"1998","journal-title":"Journal
|
|
655
|
+
of Biological Chemistry"},{"key":"10.1111\/nph.14619-BIB0017|nph14619-cit-0017","doi-asserted-by":"crossref","first-page":"1808","DOI":"10.1074\/mcp.M115.057190","article-title":"Identification
|
|
656
|
+
of targets and interaction partners of arginyl-tRNA protein transferase in
|
|
657
|
+
the moss Physcomitrella patens","volume":"15","author":"Hoernstein","year":"2016","journal-title":"Molecular
|
|
658
|
+
& Cellular Proteomics"},{"key":"10.1111\/nph.14619-BIB0018|nph14619-cit-0018","doi-asserted-by":"crossref","first-page":"5","DOI":"10.1111\/j.1399-3054.2011.01536.x","article-title":"N-
|
|
659
|
+
and C-terminal degradomics: new approaches to reveal biological roles for
|
|
660
|
+
plant proteases from substrate identification","volume":"145","author":"Huesgen","year":"2012","journal-title":"Physiologia
|
|
661
|
+
Plantarum"},{"key":"10.1111\/nph.14619-BIB0019|nph14619-cit-0019","doi-asserted-by":"crossref","first-page":"973","DOI":"10.1126\/science.1183147","article-title":"N-terminal
|
|
662
|
+
acetylation of cellular proteins creates specific degradation signals","volume":"327","author":"Hwang","year":"2010","journal-title":"Science"},{"key":"10.1111\/nph.14619-BIB0020|nph14619-cit-0020","doi-asserted-by":"crossref","first-page":"158","DOI":"10.1016\/j.cell.2013.11.031","article-title":"The
|
|
663
|
+
N-terminal methionine of cellular proteins as a degradation signal","volume":"156","author":"Kim","year":"2014","journal-title":"Cell"},{"key":"10.1111\/nph.14619-BIB0021|nph14619-cit-0021","doi-asserted-by":"crossref","first-page":"281","DOI":"10.1038\/nbt.1611","article-title":"Isotopic
|
|
664
|
+
labeling of terminal amines in complex samples identifies protein N-termini
|
|
665
|
+
and protease cleavage products","volume":"28","author":"Kleifeld","year":"2010","journal-title":"Nature
|
|
666
|
+
Biotechnology"},{"key":"10.1111\/nph.14619-BIB0022|nph14619-cit-0022","doi-asserted-by":"crossref","first-page":"169","DOI":"10.14348\/molcells.2016.2329","article-title":"N-terminal
|
|
667
|
+
acetylation-targeted N-end rule proteolytic system: the Ac\/N-end rule pathway","volume":"39","author":"Lee","year":"2016","journal-title":"Molecules
|
|
668
|
+
and Cells"},{"key":"10.1111\/nph.14619-BIB0023|nph14619-cit-0023","doi-asserted-by":"crossref","first-page":"207","DOI":"10.1105\/tpc.16.00768","article-title":"Protein
|
|
669
|
+
degradation rate in Arabidopsis thaliana leaf growth and development","volume":"29","author":"Li","year":"2017","journal-title":"Plant
|
|
670
|
+
Cell"},{"key":"10.1111\/nph.14619-BIB0024|nph14619-cit-0024","doi-asserted-by":"crossref","first-page":"4246","DOI":"10.1021\/pr500164j","article-title":"Targeted
|
|
671
|
+
proteomics analysis of protein degradation in plant signaling on an LTQ-Orbitrap
|
|
672
|
+
mass spectrometer","volume":"13","author":"Majovsky","year":"2014","journal-title":"Journal
|
|
673
|
+
of Proteome Research"},{"key":"10.1111\/nph.14619-BIB0025|nph14619-cit-0025","doi-asserted-by":"crossref","first-page":"26020","DOI":"10.1038\/srep26020","article-title":"The
|
|
674
|
+
N-end rule pathway regulates pathogen responses in plants","volume":"6","author":"Marchi","year":"2016","journal-title":"Scientific
|
|
675
|
+
Reports"},{"key":"10.1111\/nph.14619-BIB0026|nph14619-cit-0026","doi-asserted-by":"crossref","first-page":"40","DOI":"10.1111\/pbi.12334","article-title":"Enhanced
|
|
676
|
+
waterlogging tolerance in barley by manipulation of expression of the N-end
|
|
677
|
+
rule pathway E3 ligase PROTEOLYSIS6","volume":"14","author":"Mendiondo","year":"2016","journal-title":"Plant
|
|
678
|
+
Biotechnology Journal"},{"key":"10.1111\/nph.14619-BIB0027|nph14619-cit-0027","doi-asserted-by":"crossref","first-page":"613","DOI":"10.1111\/nph.14497","article-title":"Real-time
|
|
679
|
+
detection of N-end rule-mediated ubiquitination via fluorescently labeled
|
|
680
|
+
substrate probes","volume":"217","author":"Mot","year":"2018","journal-title":"New
|
|
681
|
+
Phytologist"},{"key":"10.1111\/nph.14619-BIB0028|nph14619-cit-0028","doi-asserted-by":"crossref","first-page":"2276","DOI":"10.1105\/tpc.113.112557","article-title":"ClpS1
|
|
682
|
+
is a conserved substrate selector for the chloroplast Clp protease system
|
|
683
|
+
in Arabidopsis","volume":"25","author":"Nishimura","year":"2013","journal-title":"Plant
|
|
684
|
+
Cell"},{"key":"10.1111\/nph.14619-BIB0029|nph14619-cit-0029","doi-asserted-by":"crossref","first-page":"915","DOI":"10.1016\/j.bbabio.2014.11.012","article-title":"Organization,
|
|
685
|
+
function and substrates of the essential Clp protease system in plastids","volume":"1847","author":"Nishimura","year":"2015","journal-title":"Biochimica
|
|
686
|
+
et Biophysica Acta"},{"key":"10.1111\/nph.14619-BIB0030|nph14619-cit-0030","doi-asserted-by":"crossref","first-page":"E1839","DOI":"10.1073\/pnas.1207786109","article-title":"The
|
|
687
|
+
N-end rule pathway counteracts cell death by destroying proapoptotic protein
|
|
688
|
+
fragments","volume":"109","author":"Piatkov","year":"2012a","journal-title":"Proceedings
|
|
689
|
+
of the National Academy of Sciences, USA"},{"key":"10.1111\/nph.14619-BIB0031|nph14619-cit-0031","doi-asserted-by":"crossref","first-page":"926","DOI":"10.1016\/j.molcel.2012.10.012","article-title":"The
|
|
690
|
+
auto-generated fragment of the Usp1 deubiquitylase is a physiological substrate
|
|
691
|
+
of the N-end rule pathway","volume":"48","author":"Piatkov","year":"2012b","journal-title":"Molecular
|
|
692
|
+
Cell"},{"key":"10.1111\/nph.14619-BIB0032|nph14619-cit-0032","doi-asserted-by":"crossref","first-page":"7904","DOI":"10.1073\/pnas.95.14.7904","article-title":"PRT1
|
|
693
|
+
of Arabidopsis thaliana encodes a component of the plant N-end rule\u00a0pathway","volume":"95","author":"Potuschak","year":"1998","journal-title":"Proceedings
|
|
694
|
+
of the National Academy of Sciences, USA"},{"key":"10.1111\/nph.14619-BIB0033|nph14619-cit-0033","doi-asserted-by":"crossref","first-page":"955","DOI":"10.1038\/35073627","article-title":"Degradation
|
|
695
|
+
of a cohesin subunit by the N-end rule pathway is essential for chromosome
|
|
696
|
+
stability","volume":"410","author":"Rao","year":"2001","journal-title":"Nature"},{"key":"10.1111\/nph.14619-BIB0034|nph14619-cit-0034","doi-asserted-by":"crossref","first-page":"1616","DOI":"10.1104\/pp.114.253088","article-title":"The
|
|
697
|
+
greening after extended darkness1 is an N-end rule pathway mutant with high
|
|
698
|
+
tolerance to submergence and starvation","volume":"167","author":"Riber","year":"2015","journal-title":"Plant
|
|
699
|
+
Physiology"},{"key":"10.1111\/nph.14619-BIB0035|nph14619-cit-0035","first-page":"1881","article-title":"The
|
|
700
|
+
Arabidopsis chloroplast stromal N-terminome: complexities of amino-terminal
|
|
701
|
+
protein maturation and stability","volume":"169","author":"Rowland","year":"2015","journal-title":"Plant
|
|
702
|
+
Physiology"},{"key":"10.1111\/nph.14619-BIB0036|nph14619-cit-0036","doi-asserted-by":"crossref","first-page":"3323","DOI":"10.1091\/mbc.e08-03-0328","article-title":"The
|
|
703
|
+
yeast GID complex, a novel ubiquitin ligase (E3) involved in the regulation
|
|
704
|
+
of carbohydrate metabolism","volume":"19","author":"Santt","year":"2008","journal-title":"Molecular
|
|
705
|
+
Biology of the Cell"},{"key":"10.1111\/nph.14619-BIB0037|nph14619-cit-0037","doi-asserted-by":"crossref","first-page":"111","DOI":"10.1038\/nprot.2010.178","article-title":"Characterization
|
|
706
|
+
of the prime and non-prime active site specificities of proteases by proteome-derived
|
|
707
|
+
peptide libraries and tandem mass spectrometry","volume":"6","author":"Schilling","year":"2011","journal-title":"Nature
|
|
708
|
+
Protocols"},{"key":"10.1111\/nph.14619-BIB0038|nph14619-cit-0038","doi-asserted-by":"crossref","first-page":"1258","DOI":"10.1094\/MPMI-18-1258","article-title":"Membrane
|
|
709
|
+
release and destabilization of Arabidopsis RIN4 following cleavage by Pseudomonas
|
|
710
|
+
syringae AvrRpt2","volume":"18","author":"Takemoto","year":"2005","journal-title":"Molecular
|
|
711
|
+
Plant-Microbe Interactions"},{"key":"10.1111\/nph.14619-BIB0039|nph14619-cit-0039","doi-asserted-by":"crossref","first-page":"261","DOI":"10.1146\/annurev-biochem-051710-093308","article-title":"The
|
|
712
|
+
N-end rule pathway","volume":"81","author":"Tasaki","year":"2012","journal-title":"Annual
|
|
713
|
+
Review of Biochemistry"},{"key":"10.1111\/nph.14619-BIB0040|nph14619-cit-0040","doi-asserted-by":"crossref","first-page":"2831","DOI":"10.1105\/tpc.113.115287","article-title":"The
|
|
714
|
+
Arabidopsis METACASPASE9 degradome","volume":"25","author":"Tsiatsiani","year":"2013","journal-title":"Plant
|
|
715
|
+
Cell"},{"key":"10.1111\/nph.14619-BIB0041|nph14619-cit-0041","doi-asserted-by":"crossref","first-page":"1298","DOI":"10.1002\/pro.666","article-title":"The
|
|
716
|
+
N-end rule pathway and regulation by proteolysis","volume":"20","author":"Varshavsky","year":"2011","journal-title":"Protein
|
|
717
|
+
Science"},{"key":"10.1111\/nph.14619-BIB0042|nph14619-cit-0042","doi-asserted-by":"crossref","first-page":"2458","DOI":"10.1002\/pmic.201500014","article-title":"An
|
|
718
|
+
improved workflow for quantitative N-terminal charge-based fractional diagonal
|
|
719
|
+
chromatography (ChaFRADIC) to study proteolytic events in Arabidopsis thaliana","volume":"15","author":"Venne","year":"2015","journal-title":"Proteomics"},{"key":"10.1111\/nph.14619-BIB0043|nph14619-cit-0043","doi-asserted-by":"crossref","first-page":"3823","DOI":"10.1021\/pr400435d","article-title":"Novel
|
|
720
|
+
highly sensitive, specific, and straightforward strategy for comprehensive
|
|
721
|
+
N-terminal proteomics reveals unknown substrates of the mitochondrial peptidase
|
|
722
|
+
Icp55","volume":"12","author":"Venne","year":"2013","journal-title":"Journal
|
|
723
|
+
of Proteome Research"},{"key":"10.1111\/nph.14619-BIB0044|nph14619-cit-0044","doi-asserted-by":"crossref","first-page":"428","DOI":"10.1016\/j.cell.2009.07.045","article-title":"Global
|
|
724
|
+
analysis of the mitochondrial N-proteome identifies a processing peptidase
|
|
725
|
+
critical for protein stability","volume":"139","author":"Vogtle","year":"2009","journal-title":"Cell"},{"key":"10.1111\/nph.14619-BIB0045|nph14619-cit-0045","doi-asserted-by":"crossref","first-page":"20976","DOI":"10.1074\/jbc.M116.747956","article-title":"Analyzing
|
|
726
|
+
N-terminal arginylation through the use of peptide arrays and degradation
|
|
727
|
+
assays","volume":"291","author":"Wadas","year":"2016","journal-title":"Journal
|
|
728
|
+
of Biological Chemistry"},{"key":"10.1111\/nph.14619-BIB0046|nph14619-cit-0046","doi-asserted-by":"crossref","first-page":"3425","DOI":"10.1038\/ncomms4425","article-title":"Plant
|
|
729
|
+
cysteine oxidases control the oxygen-dependent branch of the N-end-rule pathway","volume":"5","author":"Weits","year":"2014","journal-title":"Nature
|
|
730
|
+
Communications"},{"key":"10.1111\/nph.14619-BIB0047|nph14619-cit-0047","doi-asserted-by":"crossref","first-page":"14690","DOI":"10.1038\/ncomms14690","article-title":"Plant
|
|
731
|
+
cysteine oxidases are dioxygenases that directly enable arginyl transferase-catalyzed
|
|
732
|
+
arginylation of N-end rule targets","volume":"8","author":"White","year":"2016","journal-title":"Nature
|
|
733
|
+
Communications"},{"key":"10.1111\/nph.14619-BIB0048|nph14619-cit-0048","doi-asserted-by":"crossref","first-page":"1547","DOI":"10.1105\/tpc.15.00173","article-title":"Two
|
|
734
|
+
N-terminal acetyltransferases antagonistically regulate the stability of a
|
|
735
|
+
nod-like receptor in Arabidopsis","volume":"27","author":"Xu","year":"2015","journal-title":"Plant
|
|
736
|
+
Cell"},{"key":"10.1111\/nph.14619-BIB0049|nph14619-cit-0049","doi-asserted-by":"crossref","first-page":"2447","DOI":"10.1002\/pmic.201400530","article-title":"Quantitative
|
|
737
|
+
proteomics analysis of the Arg\/N-end rule pathway of targeted degradation
|
|
738
|
+
in Arabidopsis roots","volume":"15","author":"Zhang","year":"2015","journal-title":"Proteomics"}],"container-title":["New
|
|
739
|
+
Phytologist"],"original-title":[],"language":"en","link":[{"URL":"https:\/\/api.wiley.com\/onlinelibrary\/tdm\/v1\/articles\/10.1111%2Fnph.14619","content-type":"application\/pdf","content-version":"vor","intended-application":"text-mining"},{"URL":"http:\/\/onlinelibrary.wiley.com\/wol1\/doi\/10.1111\/nph.14619\/fullpdf","content-type":"unspecified","content-version":"vor","intended-application":"similarity-checking"}],"deposited":{"date-parts":[[2021,7,7]],"date-time":"2021-07-07T04:40:38Z","timestamp":1625632838000},"score":1,"resource":{"primary":{"URL":"https:\/\/onlinelibrary.wiley.com\/doi\/10.1111\/nph.14619"}},"subtitle":[],"short-title":[],"issued":{"date-parts":[[2017,6,5]]},"references-count":49,"journal-issue":{"issue":"3","published-print":{"date-parts":[[2018,5]]}},"URL":"http:\/\/dx.doi.org\/10.1111\/nph.14619","archive":["Portico"],"relation":{},"ISSN":["0028-646X"],"issn-type":[{"value":"0028-646X","type":"print"}],"subject":["Plant
|
|
740
|
+
Science","Physiology"],"published":{"date-parts":[[2017,6,5]]}}}'
|
|
741
|
+
recorded_at: Sun, 19 Mar 2023 17:39:20 GMT
|
|
742
|
+
- request:
|
|
743
|
+
method: get
|
|
744
|
+
uri: https://api.crossref.org/members/311
|
|
745
|
+
body:
|
|
746
|
+
encoding: UTF-8
|
|
747
|
+
string: ''
|
|
748
|
+
headers:
|
|
749
|
+
Connection:
|
|
750
|
+
- close
|
|
751
|
+
Host:
|
|
752
|
+
- api.crossref.org
|
|
753
|
+
User-Agent:
|
|
754
|
+
- http.rb/5.1.1
|
|
755
|
+
response:
|
|
756
|
+
status:
|
|
757
|
+
code: 200
|
|
758
|
+
message: OK
|
|
759
|
+
headers:
|
|
760
|
+
Date:
|
|
761
|
+
- Sun, 19 Mar 2023 17:39:21 GMT
|
|
762
|
+
Content-Type:
|
|
763
|
+
- application/json
|
|
764
|
+
Transfer-Encoding:
|
|
765
|
+
- chunked
|
|
766
|
+
Access-Control-Expose-Headers:
|
|
767
|
+
- Link
|
|
768
|
+
Access-Control-Allow-Headers:
|
|
769
|
+
- X-Requested-With, Accept, Accept-Encoding, Accept-Charset, Accept-Language,
|
|
770
|
+
Accept-Ranges, Cache-Control
|
|
771
|
+
Access-Control-Allow-Origin:
|
|
772
|
+
- "*"
|
|
773
|
+
Server:
|
|
774
|
+
- Jetty(9.4.40.v20210413)
|
|
775
|
+
X-Ratelimit-Limit:
|
|
776
|
+
- '50'
|
|
777
|
+
X-Ratelimit-Interval:
|
|
778
|
+
- 1s
|
|
779
|
+
X-Api-Pool:
|
|
780
|
+
- public
|
|
781
|
+
X-Rate-Limit-Limit:
|
|
782
|
+
- '50'
|
|
783
|
+
X-Rate-Limit-Interval:
|
|
784
|
+
- 1s
|
|
785
|
+
Permissions-Policy:
|
|
786
|
+
- interest-cohort=()
|
|
787
|
+
Connection:
|
|
788
|
+
- close
|
|
789
|
+
body:
|
|
790
|
+
encoding: UTF-8
|
|
791
|
+
string: '{"status":"ok","message-type":"member","message-version":"1.0.0","message":{"last-status-check-time":1679182241619,"primary-name":"Wiley","counts":{"current-dois":762455,"backfile-dois":9241903,"total-dois":10004358},"breakdowns":{"dois-by-issued-year":[[2010,518434],[2020,373726],[2021,356505],[2009,343392],[2022,339337],[2015,323812],[2012,305616],[2019,292904],[2008,292446],[2007,286282],[2018,283008],[2013,276894],[2014,275597],[2016,274598],[2011,269684],[2017,269394],[2006,248290],[2004,220664],[2005,214209],[2003,171056],[2002,150459],[2001,145609],[2000,138204],[1999,124917],[1998,117945],[1997,115945],[1996,115109],[1995,111899],[1990,111396],[1989,107070],[1994,104674],[1993,102077],[1988,101804],[1992,98340],[1987,98221],[1986,95059],[1991,93153],[1985,90104],[1984,87231],[1983,83798],[1982,81188],[1981,80227],[1980,77599],[1979,74763],[1978,72635],[1977,70805],[1975,69455],[1974,68288],[1973,67861],[1976,67198],[2023,66613],[1972,64589],[1971,59237],[1970,57784],[1969,35576],[1968,33878],[1967,31376],[1966,29521],[1965,28069],[1964,26415],[1963,24236],[1962,21591],[1961,20006],[1960,18668],[1959,18233],[1958,17285],[1957,16832],[1956,15793],[1955,15220],[1954,14311],[1953,12991],[1951,12142],[1950,11767],[1952,11618],[1949,10694],[1938,10072],[1936,9911],[1931,9721],[1930,9608],[1937,9553],[1939,9504],[1933,9308],[1948,9162],[1932,9159],[1934,9135],[1935,9093],[1929,8949],[1928,8470],[1927,8343],[1940,8258],[1947,8106],[1941,8044],[1926,7969],[1924,7801],[1925,7711],[1923,7095],[1942,6947],[1943,6923],[1946,6567],[1922,6450],[1921,6114],[1944,5881],[1908,5484],[1909,5387],[1907,5325],[1945,5187],[1906,5104],[1911,5064],[1905,4970],[1914,4945],[1920,4923],[1912,4886],[1913,4877],[1903,4762],[1899,4759],[1904,4732],[1902,4675],[1910,4627],[1915,4271],[1919,4157],[1901,4124],[1898,4044],[1900,3982],[1918,3971],[1897,3764],[1917,3659],[1916,3534],[1896,3294],[1894,3214],[1895,2992],[1884,2899],[1891,2772],[1893,2768],[1889,2727],[1883,2709],[1890,2669],[1881,2516],[1892,2513],[1887,2481],[1878,2473],[1888,2415],[1879,2400],[1886,2365],[1880,2335],[1873,2334],[1874,2325],[1882,2295],[1877,2274],[1885,2259],[1876,2172],[1875,2044],[1869,1962],[1846,1920],[1858,1875],[1865,1871],[1868,1838],[1855,1775],[1859,1750],[1854,1722],[1870,1718],[1848,1699],[1853,1677],[1864,1639],[1867,1630],[1871,1604],[1863,1583],[1872,1577],[1856,1576],[1849,1567],[1866,1561],[1857,1549],[1862,1543],[1851,1539],[1844,1517],[1861,1515],[1852,1491],[1860,1466],[1843,1448],[1847,1407],[1845,1359],[1839,1344],[1850,1343],[1842,1292],[1841,1286],[1835,1251],[1836,1234],[1838,1218],[1840,1211],[1837,1141],[1834,1134],[1828,887],[1827,849],[1829,772],[1833,757],[1831,716],[1826,701],[1825,689],[1824,689],[1823,545],[1832,479],[1830,412],[1822,275],[1803,218],[1805,183],[1800,183],[1811,170],[1821,164],[1820,150],[1806,147],[1808,137],[1809,129],[1818,128],[1807,126],[1804,126],[1819,125],[1812,123],[1816,121],[1810,120],[1801,120],[1817,116],[1815,112],[1813,112],[1814,107],[1802,106],[1799,93],[1512,1]]},"prefixes":["10.1506","10.1901","10.3401","10.1301","10.1348","10.2755","10.4218","10.3405","10.3162","10.3322","10.1581","10.1516","10.1113","10.1112","10.1634","10.1359","10.1118","10.2966","10.1592","10.1196","10.21815","10.2164","10.1111","10.1034","10.3170","10.14814","10.2136","10.1002","10.1046","10.2135","10.4319","10.1526","10.1889","10.7863","10.4195","10.18934","10.2134","10.2903","10.1256","10.1576","10.1897","10.2746","10.5694","10.1096","10.5054","10.4284","10.1890","10.4004","10.1892"],"coverage":{"affiliations-current":0.6559836318208943,"similarity-checking-current":0.8028329540759783,"descriptions-current":0.0,"ror-ids-current":0.0,"funders-backfile":0.07790440994673932,"licenses-backfile":0.9076528935653188,"funders-current":0.2717760392416602,"affiliations-backfile":0.2120887873417412,"resource-links-backfile":0.916265946526381,"orcids-backfile":0.06180123292789375,"update-policies-current":0.5137745834180378,"ror-ids-backfile":0.0,"orcids-current":0.5415965532392076,"similarity-checking-backfile":0.9264371201472251,"references-backfile":0.6459249788706936,"descriptions-backfile":0.0,"award-numbers-backfile":0.05749421953465644,"update-policies-backfile":0.05063275388196565,"licenses-current":0.8124204051386639,"award-numbers-current":0.2247083434432196,"abstracts-backfile":2.735367380505941E-4,"resource-links-current":0.8024722770524162,"abstracts-current":3.76415657317481E-4,"references-current":0.6478795469896584},"prefix":[{"name":"Wiley
|
|
792
|
+
(Canadian Academic Accounting Association)","value":"10.1506"},{"name":"Society
|
|
793
|
+
for the Experimental Analysis of Behavior","value":"10.1901"},{"name":"Wiley
|
|
794
|
+
(Production and Operations Management)","value":"10.3401"},{"name":"Wiley
|
|
795
|
+
(International Life Sciences Institute)","value":"10.1301"},{"name":"Wiley
|
|
796
|
+
(British Psychological Society)","value":"10.1348"},{"name":"Wiley Blackwell
|
|
797
|
+
(Blackwell Publishing - Foundation for Cellular and Molecular Medicine)","value":"10.2755"},{"name":"Electronics
|
|
798
|
+
and Telecommunications Research Institute","value":"10.4218"},{"name":"Wiley
|
|
799
|
+
(New York Academy of Sciences E-Briefings)","value":"10.3405"},{"name":"Wiley
|
|
800
|
+
(Comparative Legislative Research Center)","value":"10.3162"},{"name":"Wiley
|
|
801
|
+
(American Cancer Society) ","value":"10.3322"},{"name":"Wiley (Robotic Publications)","value":"10.1581"},{"name":"Wiley
|
|
802
|
+
(International Journal of Psychoanalysis)","value":"10.1516"},{"name":"Wiley
|
|
803
|
+
(The Physiological Society)","value":"10.1113"},{"name":"London Mathematical
|
|
804
|
+
Society","value":"10.1112"},{"name":"Alphamed Press","value":"10.1634"},{"name":"Wiley(American
|
|
805
|
+
Society Bone & Mineral Research)","value":"10.1359"},{"name":"American Association
|
|
806
|
+
of Physicists in Medicine","value":"10.1118"},{"name":"Wiley (AHRC Research
|
|
807
|
+
Centre)","value":"10.2966"},{"name":"Pharmacotherapy","value":"10.1592"},{"name":"Wiley
|
|
808
|
+
(New York Academy of Sciences)","value":"10.1196"},{"name":"American Dental
|
|
809
|
+
Education Association","value":"10.21815"},{"name":"American Society of Andrology","value":"10.2164"},{"name":"Wiley
|
|
810
|
+
(Blackwell Publishing)","value":"10.1111"},{"name":"Wiley (Munksgaard)","value":"10.1034"},{"name":"Wiley
|
|
811
|
+
(Opulus Press)","value":"10.3170"},{"name":"Wiley (Physiological Reports)","value":"10.14814"},{"name":"Soil
|
|
812
|
+
Science Society of America","value":"10.2136"},{"name":"Wiley (John Wiley
|
|
813
|
+
& Sons)","value":"10.1002"},{"name":"Wiley (Blackwell Publishing)","value":"10.1046"},{"name":"Crop
|
|
814
|
+
Science Society of America","value":"10.2135"},{"name":"American Society of
|
|
815
|
+
Limnology and Oceanography, Inc.","value":"10.4319"},{"name":"Wiley (Rural
|
|
816
|
+
Sociological Society)","value":"10.1526"},{"name":"Society for Information
|
|
817
|
+
Display","value":"10.1889"},{"name":"American Institute of Ultrasound in Medicine","value":"10.7863"},{"name":"American
|
|
818
|
+
Society of Agronomy","value":"10.4195"},{"name":"Wiley","value":"10.18934"},{"name":"American
|
|
819
|
+
Society of Agronomy","value":"10.2134"},{"name":"Publications Office of the
|
|
820
|
+
European Union","value":"10.2903"},{"name":"Wiley (Royal Meteorological Society)
|
|
821
|
+
","value":"10.1256"},{"name":"Wiley Blackwell (Royal College of Obstetricians
|
|
822
|
+
& Gynecologist)","value":"10.1576"},{"name":"Wiley (Society of Environmental
|
|
823
|
+
Toxicology and Chemistry)","value":"10.1897"},{"name":"Wiley (Equine Veterinary
|
|
824
|
+
Journal)","value":"10.2746"},{"name":"Australasian Medical Publishing Co.
|
|
825
|
+
Pty. Ltd.","value":"10.5694"},{"name":"Federation of American Society for
|
|
826
|
+
Experimental Biology","value":"10.1096"},{"name":"Wiley (Teachers of English
|
|
827
|
+
to Speakers of Other Languages, Inc.)","value":"10.5054"},{"name":"Southern
|
|
828
|
+
Economic Association","value":"10.4284"},{"name":"Ecological Society of America","value":"10.1890"},{"name":"Wiley
|
|
829
|
+
(The Wildlife Society)","value":"10.4004"},{"name":"Wiley (American College
|
|
830
|
+
of Veterinary Internal Medicine)","value":"10.1892"}],"id":311,"tokens":["wiley"],"counts-type":{"all":{"monograph":8271,"report":14,"peer-review":159039,"journal-article":8648971,"other":211501,"book":15061,"reference-entry":238869,"proceedings-article":12,"journal":2299,"component":1383,"book-chapter":412728,"report-series":1,"proceedings":2,"reference-book":524,"posted-content":13227,"journal-issue":398863,"dataset":607,"book-series":32,"edited-book":2656},"backfile":{"monograph":7351,"report":14,"peer-review":58913,"journal-article":8071225,"other":167246,"book":14374,"reference-entry":238683,"proceedings-article":12,"book-chapter":306858,"proceedings":2,"reference-book":516,"posted-content":4968,"journal-issue":369322,"dataset":85,"edited-book":2334},"current":{"monograph":920,"peer-review":100126,"journal-article":577745,"other":44255,"book":687,"book-chapter":73,"reference-book":8,"posted-content":8259,"journal-issue":29541,"dataset":519,"edited-book":322}},"coverage-type":{"all":{"monograph":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.9110143876193931,"references":0.01511304558094547,"funders":0.0,"similarity-checking":0.9997581912707049,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.9110143876193931,"descriptions":0.0},"report":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.0,"funders":0.0,"similarity-checking":0.07142857142857142,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":0.0},"peer-review":{"last-status-check-time":1679182241619,"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":0.0},"journal-article":{"last-status-check-time":1679182241619,"affiliations":0.2761846467053711,"abstracts":3.196912095092006E-4,"orcids":0.1122571690898258,"licenses":0.9848273280139337,"references":0.6944270017785931,"funders":0.1066673711820747,"similarity-checking":0.9580272612776711,"award-numbers":0.08070867621130884,"ror-ids":0.0,"update-policies":0.09939563908816436,"resource-links":0.971698714216986,"descriptions":0.0},"other":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.001167843178046439,"licenses":1.0,"references":0.6623278376934388,"funders":0.0,"similarity-checking":0.9999952718899674,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.9999952718899674,"descriptions":0.0},"book":{"last-status-check-time":1679182241619,"affiliations":0.04362260142088839,"abstracts":0.0,"orcids":0.0,"licenses":0.3312529048535954,"references":0.002191089569085718,"funders":0.0,"similarity-checking":0.9749684615895359,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.3312529048535954,"descriptions":0.0},"reference-entry":{"last-status-check-time":1679182241619,"affiliations":0.1496678095525162,"abstracts":0.0,"orcids":2.093197526677802E-4,"licenses":0.0,"references":0.6728960225060598,"funders":0.0,"similarity-checking":0.9942060292461558,"award-numbers":0.0,"ror-ids":0.0,"update-policies":1.255918516006681E-5,"resource-links":0.2182660788968012,"descriptions":0.0},"proceedings-article":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.0,"funders":0.0,"similarity-checking":0.8333333333333333,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":0.0},"journal":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.003479773814702044,"references":0.0,"funders":0.0,"similarity-checking":0.3497172683775555,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.003044802087864289,"descriptions":0.0},"component":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":7.230657989877079E-4,"references":0.0,"funders":0.0,"similarity-checking":0.4237165582067968,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":7.230657989877079E-4,"descriptions":0.1988430947216197},"book-chapter":{"last-status-check-time":1679182241619,"affiliations":0.05344197631369813,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.3704352503343606,"funders":0.0,"similarity-checking":0.9971070535558528,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.3246205733558179,"descriptions":0.0},"report-series":{"last-status-check-time":1679182241619,"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":0.0},"proceedings":{"last-status-check-time":1679182241619,"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":0.0},"reference-book":{"last-status-check-time":1679182241619,"affiliations":0.007633587786259542,"abstracts":0.0,"orcids":0.0,"licenses":0.4179389312977099,"references":0.0,"funders":0.0,"similarity-checking":0.9770992366412214,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.001908396946564885,"descriptions":0.0},"posted-content":{"last-status-check-time":1679182241619,"affiliations":0.9947077946624329,"abstracts":0.003780146669690784,"orcids":0.9751266349134347,"licenses":8.316322673319725E-4,"references":0.287139941029712,"funders":0.3507220080139109,"similarity-checking":0.1475013230513344,"award-numbers":0.3507220080139109,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":0.0},"journal-issue":{"last-status-check-time":1679182241619,"affiliations":2.55726903723835E-4,"abstracts":0.0,"orcids":0.0,"licenses":0.6599283463244272,"references":0.0,"funders":0.0,"similarity-checking":0.2646923881132118,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.6595372345893201,"descriptions":0.0},"dataset":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.0,"funders":0.0,"similarity-checking":0.003294892915980231,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":0.0},"book-series":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.9375,"references":0.0,"funders":0.0,"similarity-checking":0.75,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":0.0},"edited-book":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":1.0,"references":0.0,"funders":0.0,"similarity-checking":1.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":1.0,"descriptions":0.0}},"backfile":{"monograph":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.899877567677867,"references":0.01700448918514488,"funders":0.0,"similarity-checking":0.9997279281730377,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.899877567677867,"descriptions":0.0},"report":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.0,"funders":0.0,"similarity-checking":0.07142857142857142,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":0.0},"peer-review":{"last-status-check-time":1679182241619,"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":0.0},"journal-article":{"last-status-check-time":1679182241619,"affiliations":0.2350153787064541,"abstracts":3.132114394035602E-4,"orcids":0.07016010580797834,"licenses":0.9843005243937568,"references":0.6871991550229364,"funders":0.08901374946182271,"similarity-checking":0.9564944602585109,"award-numbers":0.06564319542572535,"ror-ids":0.0,"update-policies":0.05797632949149602,"resource-links":0.9711786005222256,"descriptions":0.0},"other":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.001094196572713249,"licenses":1.0,"references":0.6473099506116738,"funders":0.0,"similarity-checking":0.9999940207837557,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.9999940207837557,"descriptions":0.0},"book":{"last-status-check-time":1679182241619,"affiliations":0.04570752748017253,"abstracts":0.0,"orcids":0.0,"licenses":0.299290385418116,"references":0.002295811882565744,"funders":0.0,"similarity-checking":0.9737720884931126,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.299290385418116,"descriptions":0.0},"reference-entry":{"last-status-check-time":1679182241619,"affiliations":0.1490344934494706,"abstracts":0.0,"orcids":2.094828705856722E-4,"licenses":0.0,"references":0.67264111813577,"funders":0.0,"similarity-checking":0.9942015141421886,"award-numbers":0.0,"ror-ids":0.0,"update-policies":1.256897223514033E-5,"resource-links":0.2177406853441594,"descriptions":0.0},"proceedings-article":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.0,"funders":0.0,"similarity-checking":0.8333333333333333,"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":1679182241619,"affiliations":0.07172372889088764,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.4980153686721545,"funders":0.0,"similarity-checking":0.9961806438157063,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.436380997073565,"descriptions":0.0},"proceedings":{"last-status-check-time":1679182241619,"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":0.0},"reference-book":{"last-status-check-time":1679182241619,"affiliations":0.007751937984496124,"abstracts":0.0,"orcids":0.0,"licenses":0.4089147286821705,"references":0.0,"funders":0.0,"similarity-checking":0.9922480620155039,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.001937984496124031,"descriptions":0.0},"posted-content":{"last-status-check-time":1679182241619,"affiliations":0.9859098228663447,"abstracts":0.0,"orcids":0.9359903381642511,"licenses":0.0,"references":0.2518115942028986,"funders":0.3089774557165862,"similarity-checking":0.3927133655394525,"award-numbers":0.3089774557165862,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":0.0},"journal-issue":{"last-status-check-time":1679182241619,"affiliations":2.761817600901111E-4,"abstracts":0.0,"orcids":0.0,"licenses":0.7127141085556777,"references":0.0,"funders":0.0,"similarity-checking":0.2858643676791526,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.7122917129225987,"descriptions":0.0},"dataset":{"last-status-check-time":1679182241619,"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":0.0},"edited-book":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":1.0,"references":0.0,"funders":0.0,"similarity-checking":1.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":1.0,"descriptions":0.0}},"current":{"monograph":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":1.0,"references":0.0,"funders":0.0,"similarity-checking":1.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":1.0,"descriptions":0.0},"peer-review":{"last-status-check-time":1679182241619,"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":0.0},"journal-article":{"last-status-check-time":1679182241619,"affiliations":0.851328873464937,"abstracts":4.102155795376853E-4,"orcids":0.7003626167253719,"licenses":0.9921868644471177,"references":0.7954028161212991,"funders":0.3532925425577028,"similarity-checking":0.9794407567352379,"award-numbers":0.2911769033050913,"ror-ids":0.0,"update-policies":0.6780326960856433,"resource-links":0.9789647681935802,"descriptions":0.0},"other":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.001446164275223139,"licenses":1.0,"references":0.7190825895379053,"funders":0.0,"similarity-checking":1.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":1.0,"descriptions":0.0},"book":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":1.0,"references":0.0,"funders":0.0,"similarity-checking":1.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":1.0,"descriptions":0.0},"book-chapter":{"last-status-check-time":1679182241619,"affiliations":0.6575342465753425,"abstracts":0.0,"orcids":0.0,"licenses":0.0,"references":0.9452054794520548,"funders":0.0,"similarity-checking":1.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":1.0,"descriptions":0.0},"reference-book":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":1.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":0.0},"posted-content":{"last-status-check-time":1679182241619,"affiliations":1.0,"abstracts":0.006054001695120475,"orcids":0.9986681196270735,"licenses":0.001331880372926504,"references":0.308390846349437,"funders":0.3758324252330791,"similarity-checking":0.0,"award-numbers":0.3758324252330791,"ror-ids":0.0,"update-policies":0.0,"resource-links":0.0,"descriptions":0.0},"journal-issue":{"last-status-check-time":1679182241619,"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":0.0},"dataset":{"last-status-check-time":1679182241619,"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":0.0},"edited-book":{"last-status-check-time":1679182241619,"affiliations":0.0,"abstracts":0.0,"orcids":0.0,"licenses":1.0,"references":0.0,"funders":0.0,"similarity-checking":1.0,"award-numbers":0.0,"ror-ids":0.0,"update-policies":0.0,"resource-links":1.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":"Hoboken,
|
|
831
|
+
NJ, United States","names":["Wiley","Wiley (Canadian Academic Accounting Association)","Society
|
|
832
|
+
for the Experimental Analysis of Behavior","Wiley (Production and Operations
|
|
833
|
+
Management)","Wiley (International Life Sciences Institute)","Wiley (British
|
|
834
|
+
Psychological Society)","Wiley Blackwell (Blackwell Publishing - Foundation
|
|
835
|
+
for Cellular and Molecular Medicine)","Electronics and Telecommunications
|
|
836
|
+
Research Institute","Wiley (New York Academy of Sciences E-Briefings)","Wiley
|
|
837
|
+
(Comparative Legislative Research Center)","Wiley (American Cancer Society)","Wiley
|
|
838
|
+
(Robotic Publications)","Wiley (International Journal of Psychoanalysis)","Wiley
|
|
839
|
+
(The Physiological Society)","London Mathematical Society","Alphamed Press","Wiley(American
|
|
840
|
+
Society Bone & Mineral Research)","American Association of Physicists in Medicine","Wiley
|
|
841
|
+
(AHRC Research Centre)","Pharmacotherapy","Wiley (New York Academy of Sciences)","American
|
|
842
|
+
Dental Education Association","American Society of Andrology","Wiley (Blackwell
|
|
843
|
+
Publishing)","Wiley (Munksgaard)","Wiley (Opulus Press)","Wiley (Physiological
|
|
844
|
+
Reports)","Soil Science Society of America","Wiley (John Wiley & Sons)","Crop
|
|
845
|
+
Science Society of America","American Society of Limnology and Oceanography,
|
|
846
|
+
Inc.","Wiley (Rural Sociological Society)","Society for Information Display","American
|
|
847
|
+
Institute of Ultrasound in Medicine","American Society of Agronomy","Publications
|
|
848
|
+
Office of the European Union","Wiley (Royal Meteorological Society)","Wiley
|
|
849
|
+
Blackwell (Royal College of Obstetricians & Gynecologist)","Wiley (Society
|
|
850
|
+
of Environmental Toxicology and Chemistry)","Wiley (Equine Veterinary Journal)","Australasian
|
|
851
|
+
Medical Publishing Co. Pty. Ltd.","Federation of American Society for Experimental
|
|
852
|
+
Biology","Wiley (Teachers of English to Speakers of Other Languages, Inc.)","Southern
|
|
853
|
+
Economic Association","Ecological Society of America","Wiley (The Wildlife
|
|
854
|
+
Society)","Wiley (American College of Veterinary Internal Medicine)"]}}'
|
|
855
|
+
recorded_at: Sun, 19 Mar 2023 17:39:21 GMT
|
|
856
|
+
- request:
|
|
857
|
+
method: get
|
|
858
|
+
uri: https://doi.org/ra/10.1111
|
|
859
|
+
body:
|
|
860
|
+
encoding: UTF-8
|
|
861
|
+
string: ''
|
|
862
|
+
headers:
|
|
863
|
+
Connection:
|
|
864
|
+
- close
|
|
865
|
+
Host:
|
|
866
|
+
- doi.org
|
|
867
|
+
User-Agent:
|
|
868
|
+
- http.rb/5.1.1
|
|
869
|
+
response:
|
|
870
|
+
status:
|
|
871
|
+
code: 200
|
|
872
|
+
message: OK
|
|
873
|
+
headers:
|
|
874
|
+
Date:
|
|
875
|
+
- Sun, 19 Mar 2023 17:39:21 GMT
|
|
876
|
+
Content-Type:
|
|
877
|
+
- application/json;charset=UTF-8
|
|
878
|
+
Transfer-Encoding:
|
|
879
|
+
- chunked
|
|
880
|
+
Connection:
|
|
881
|
+
- close
|
|
882
|
+
Permissions-Policy:
|
|
883
|
+
- interest-cohort=(),browsing-topics=()
|
|
884
|
+
Cf-Cache-Status:
|
|
885
|
+
- DYNAMIC
|
|
886
|
+
Report-To:
|
|
887
|
+
- '{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v3?s=H4r%2BVg5F%2F9QXq%2Bdd5CMAIOj5%2F5ut4pOSQzvpuaPzZ0RJbF0EOFcCFBCq48M7IUFFYn4RKWcVMlfs%2BIm3kNOpgKAMIJB5Cw297KmqH6KbLtjtyFwBf9%2Bv8pZ4pU%2B0BWZknx8yo9s%3D"}],"group":"cf-nel","max_age":604800}'
|
|
888
|
+
Nel:
|
|
889
|
+
- '{"success_fraction":0,"report_to":"cf-nel","max_age":604800}'
|
|
890
|
+
Strict-Transport-Security:
|
|
891
|
+
- max-age=31536000; includeSubDomains; preload
|
|
892
|
+
Server:
|
|
893
|
+
- cloudflare
|
|
894
|
+
Cf-Ray:
|
|
895
|
+
- 7aa77e8c4f8fb8f4-AMS
|
|
896
|
+
Alt-Svc:
|
|
897
|
+
- h3=":443"; ma=86400, h3-29=":443"; ma=86400
|
|
898
|
+
body:
|
|
899
|
+
encoding: UTF-8
|
|
900
|
+
string: |-
|
|
901
|
+
[
|
|
902
|
+
{
|
|
903
|
+
"DOI": "10.1111",
|
|
904
|
+
"RA": "Crossref"
|
|
905
|
+
}
|
|
906
|
+
]
|
|
907
|
+
recorded_at: Sun, 19 Mar 2023 17:39:21 GMT
|
|
908
|
+
recorded_with: VCR 6.1.0
|