├── .Rbuildignore ├── .github ├── CONTRIBUTING.md ├── issue_template.md ├── pull_request_template.md └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── wm_attr_aphia.R ├── wm_attr_category.R ├── wm_attr_data.R ├── wm_attr_def.R ├── wm_children.R ├── wm_classification.R ├── wm_common_id.R ├── wm_distribution.R ├── wm_externalid.R ├── wm_id2name.R ├── wm_name2id.R ├── wm_ranks.R ├── wm_record.R ├── wm_record_by_external.R ├── wm_records_common.R ├── wm_records_date.R ├── wm_records_name.R ├── wm_records_names.R ├── wm_records_rank.R ├── wm_records_taxamatch.R ├── wm_sources.R ├── wm_synonyms.R ├── worrms-package.R └── zzz.R ├── README.Rmd ├── README.md ├── codemeta.json ├── cran-comments.md ├── man-roxygen ├── curl.R └── plural.R ├── man ├── wm_attr_aphia.Rd ├── wm_attr_category.Rd ├── wm_attr_data.Rd ├── wm_attr_def.Rd ├── wm_children.Rd ├── wm_classification.Rd ├── wm_common_id.Rd ├── wm_distribution.Rd ├── wm_external.Rd ├── wm_id2name.Rd ├── wm_name2id.Rd ├── wm_ranks.Rd ├── wm_record.Rd ├── wm_record_by_external.Rd ├── wm_records_common.Rd ├── wm_records_date.Rd ├── wm_records_name.Rd ├── wm_records_names.Rd ├── wm_records_rank.Rd ├── wm_records_taxamatch.Rd ├── wm_sources.Rd ├── wm_synonyms.Rd └── worrms-package.Rd ├── revdep ├── README.md ├── check.R ├── failures.md └── problems.md ├── tests ├── fixtures │ ├── wm_children.yml │ ├── wm_children_-error.yml │ ├── wm_children_.yml │ ├── wm_children_error.yml │ ├── wm_children_many.yml │ ├── wm_children_marine_only_false.yml │ ├── wm_children_marine_only_true.yml │ ├── wm_children_name.yml │ ├── wm_children_offset.yml │ ├── wm_classification.yml │ ├── wm_classification_.yml │ ├── wm_classification_many.yml │ ├── wm_common_id.yml │ ├── wm_common_id_.yml │ ├── wm_common_id_many.yml │ ├── wm_distribution.yml │ ├── wm_distribution_.yml │ ├── wm_distribution_many.yml │ ├── wm_external.yml │ ├── wm_external_.yml │ ├── wm_external_fishbase.yml │ ├── wm_external_many.yml │ ├── wm_id2name.yml │ ├── wm_id2name_.yml │ ├── wm_id2name_many.yml │ ├── wm_name2id.yml │ ├── wm_name2id_.yml │ ├── wm_name2id_many.yml │ ├── wm_ranks_id.yml │ ├── wm_ranks_id_error.yml │ ├── wm_ranks_name.yml │ ├── wm_ranks_name_error.yml │ ├── wm_record.yml │ ├── wm_record_by_external__many.yml │ ├── wm_record_by_external__tsn.yml │ ├── wm_record_by_external_fishbase.yml │ ├── wm_record_by_external_ncbi.yml │ ├── wm_record_by_external_tsn.yml │ ├── wm_record_error.yml │ ├── wm_record_plural_plural.yml │ ├── wm_records__many.yml │ ├── wm_records_common.yml │ ├── wm_records_common_fuzzy_false.yml │ ├── wm_records_common_fuzzy_true.yml │ ├── wm_records_common_offset.yml │ ├── wm_records_name.yml │ ├── wm_records_name_fuzzy.yml │ ├── wm_records_names.yml │ ├── wm_records_rank.yml │ ├── wm_records_rank_error.yml │ ├── wm_records_taxamatch.yml │ ├── wm_sources.yml │ ├── wm_sources__many.yml │ ├── wm_synonyms.yml │ └── wm_synonyms__many.yml ├── test-all.R └── testthat │ ├── helper-worrms.R │ ├── test-wm_children.R │ ├── test-wm_classification.R │ ├── test-wm_common_id.R │ ├── test-wm_distribution.R │ ├── test-wm_external.R │ ├── test-wm_id2name.R │ ├── test-wm_name2id.R │ ├── test-wm_ranks.R │ ├── test-wm_record.R │ ├── test-wm_record_by_external.R │ ├── test-wm_records_common.R │ ├── test-wm_records_date.R │ ├── test-wm_records_name.R │ ├── test-wm_records_names.R │ ├── test-wm_records_rank.R │ ├── test-wm_records_taxamatch.R │ ├── test-wm_sources.R │ └── test-wm_synonyms.R └── vignettes ├── worrms.Rmd └── worrms.Rmd.og /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Scott Chamberlain 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/wm_attr_aphia.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_attr_aphia.R -------------------------------------------------------------------------------- /R/wm_attr_category.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_attr_category.R -------------------------------------------------------------------------------- /R/wm_attr_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_attr_data.R -------------------------------------------------------------------------------- /R/wm_attr_def.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_attr_def.R -------------------------------------------------------------------------------- /R/wm_children.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_children.R -------------------------------------------------------------------------------- /R/wm_classification.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_classification.R -------------------------------------------------------------------------------- /R/wm_common_id.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_common_id.R -------------------------------------------------------------------------------- /R/wm_distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_distribution.R -------------------------------------------------------------------------------- /R/wm_externalid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_externalid.R -------------------------------------------------------------------------------- /R/wm_id2name.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_id2name.R -------------------------------------------------------------------------------- /R/wm_name2id.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_name2id.R -------------------------------------------------------------------------------- /R/wm_ranks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_ranks.R -------------------------------------------------------------------------------- /R/wm_record.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_record.R -------------------------------------------------------------------------------- /R/wm_record_by_external.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_record_by_external.R -------------------------------------------------------------------------------- /R/wm_records_common.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_records_common.R -------------------------------------------------------------------------------- /R/wm_records_date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_records_date.R -------------------------------------------------------------------------------- /R/wm_records_name.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_records_name.R -------------------------------------------------------------------------------- /R/wm_records_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_records_names.R -------------------------------------------------------------------------------- /R/wm_records_rank.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_records_rank.R -------------------------------------------------------------------------------- /R/wm_records_taxamatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_records_taxamatch.R -------------------------------------------------------------------------------- /R/wm_sources.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_sources.R -------------------------------------------------------------------------------- /R/wm_synonyms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/wm_synonyms.R -------------------------------------------------------------------------------- /R/worrms-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/worrms-package.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/README.md -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/codemeta.json -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man-roxygen/curl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man-roxygen/curl.R -------------------------------------------------------------------------------- /man-roxygen/plural.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man-roxygen/plural.R -------------------------------------------------------------------------------- /man/wm_attr_aphia.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_attr_aphia.Rd -------------------------------------------------------------------------------- /man/wm_attr_category.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_attr_category.Rd -------------------------------------------------------------------------------- /man/wm_attr_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_attr_data.Rd -------------------------------------------------------------------------------- /man/wm_attr_def.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_attr_def.Rd -------------------------------------------------------------------------------- /man/wm_children.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_children.Rd -------------------------------------------------------------------------------- /man/wm_classification.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_classification.Rd -------------------------------------------------------------------------------- /man/wm_common_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_common_id.Rd -------------------------------------------------------------------------------- /man/wm_distribution.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_distribution.Rd -------------------------------------------------------------------------------- /man/wm_external.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_external.Rd -------------------------------------------------------------------------------- /man/wm_id2name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_id2name.Rd -------------------------------------------------------------------------------- /man/wm_name2id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_name2id.Rd -------------------------------------------------------------------------------- /man/wm_ranks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_ranks.Rd -------------------------------------------------------------------------------- /man/wm_record.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_record.Rd -------------------------------------------------------------------------------- /man/wm_record_by_external.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_record_by_external.Rd -------------------------------------------------------------------------------- /man/wm_records_common.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_records_common.Rd -------------------------------------------------------------------------------- /man/wm_records_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_records_date.Rd -------------------------------------------------------------------------------- /man/wm_records_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_records_name.Rd -------------------------------------------------------------------------------- /man/wm_records_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_records_names.Rd -------------------------------------------------------------------------------- /man/wm_records_rank.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_records_rank.Rd -------------------------------------------------------------------------------- /man/wm_records_taxamatch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_records_taxamatch.Rd -------------------------------------------------------------------------------- /man/wm_sources.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_sources.Rd -------------------------------------------------------------------------------- /man/wm_synonyms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/wm_synonyms.Rd -------------------------------------------------------------------------------- /man/worrms-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/man/worrms-package.Rd -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/revdep/check.R -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /tests/fixtures/wm_children.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_children.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_children_-error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_children_-error.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_children_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_children_.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_children_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_children_error.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_children_many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_children_many.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_children_marine_only_false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_children_marine_only_false.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_children_marine_only_true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_children_marine_only_true.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_children_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_children_name.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_children_offset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_children_offset.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_classification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_classification.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_classification_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_classification_.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_classification_many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_classification_many.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_common_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_common_id.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_common_id_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_common_id_.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_common_id_many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_common_id_many.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_distribution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_distribution.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_distribution_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_distribution_.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_distribution_many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_distribution_many.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_external.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_external_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_external_.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_external_fishbase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_external_fishbase.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_external_many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_external_many.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_id2name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_id2name.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_id2name_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_id2name_.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_id2name_many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_id2name_many.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_name2id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_name2id.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_name2id_.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_name2id_.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_name2id_many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_name2id_many.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_ranks_id.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_ranks_id.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_ranks_id_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_ranks_id_error.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_ranks_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_ranks_name.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_ranks_name_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_ranks_name_error.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_record.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_record.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_record_by_external__many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_record_by_external__many.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_record_by_external__tsn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_record_by_external__tsn.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_record_by_external_fishbase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_record_by_external_fishbase.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_record_by_external_ncbi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_record_by_external_ncbi.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_record_by_external_tsn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_record_by_external_tsn.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_record_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_record_error.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_record_plural_plural.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_record_plural_plural.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_records__many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_records__many.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_records_common.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_records_common.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_records_common_fuzzy_false.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_records_common_fuzzy_false.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_records_common_fuzzy_true.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_records_common_fuzzy_true.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_records_common_offset.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_records_common_offset.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_records_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_records_name.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_records_name_fuzzy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_records_name_fuzzy.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_records_names.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_records_names.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_records_rank.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_records_rank.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_records_rank_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_records_rank_error.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_records_taxamatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_records_taxamatch.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_sources.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_sources__many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_sources__many.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_synonyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_synonyms.yml -------------------------------------------------------------------------------- /tests/fixtures/wm_synonyms__many.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/fixtures/wm_synonyms__many.yml -------------------------------------------------------------------------------- /tests/test-all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/test-all.R -------------------------------------------------------------------------------- /tests/testthat/helper-worrms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/helper-worrms.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_children.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_children.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_classification.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_classification.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_common_id.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_common_id.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_distribution.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_distribution.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_external.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_external.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_id2name.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_id2name.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_name2id.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_name2id.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_ranks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_ranks.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_record.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_record.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_record_by_external.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_record_by_external.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_records_common.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_records_common.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_records_date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_records_date.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_records_name.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_records_name.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_records_names.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_records_names.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_records_rank.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_records_rank.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_records_taxamatch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_records_taxamatch.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_sources.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_sources.R -------------------------------------------------------------------------------- /tests/testthat/test-wm_synonyms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/tests/testthat/test-wm_synonyms.R -------------------------------------------------------------------------------- /vignettes/worrms.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/vignettes/worrms.Rmd -------------------------------------------------------------------------------- /vignettes/worrms.Rmd.og: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ropensci/worrms/HEAD/vignettes/worrms.Rmd.og --------------------------------------------------------------------------------