Title: | Non-Human Primate Search Filters |
---|---|
Description: | Generate search filters to query scientific bibliographic sources, such as PubMed and Web of Science, for non-human primate related publications. |
Authors: | Lauren C. Cassidy [aut], Cathalijn H. C. Leenaars [aut], Alan V. Rincon [aut, cre], Dana Pfefferle [aut] |
Maintainer: | Alan V. Rincon <[email protected]> |
License: | AGPL (>= 3) |
Version: | 0.1.2.9000 |
Built: | 2025-03-09 03:41:21 UTC |
Source: | https://github.com/avrincon/filternhp |
Function will return search terms for all taxa below the specified taxonomic level. Search terms for humans are always omitted, even if they are part of that taxonomic group.
filter_nhp( source = "PubMed", taxa = "nonhuman_primates", omit = NULL, simplify = TRUE )
filter_nhp( source = "PubMed", taxa = "nonhuman_primates", omit = NULL, simplify = TRUE )
source |
A string indicating which bibliographic source search terms should be formatted for. Current options are "PubMed" (default), "PsycInfo" or "WebOfScience". |
taxa |
A character vector of primate taxa. If |
omit |
An optional character vector of primate taxonomic groups that occur within taxa to omit from the search terms. This is useful for example when you need search terms for all species of one family except one genus. |
simplify |
Logical. Should printed output be simplified? |
If simplify = TRUE
(default), then function will print search
terms to the console that can be directly copy-pasted into the relevant
bibliographic source as is. However, the object returned is NULL
. If
simplify = FALSE
, then function returns a character vector of length
== 1. This may be useful if the user wants to assign the output to an r
object for further manipulation.
NULL
or a string of search terms that are associated with the
specified taxa, formatted for use in the specified bibliographic source.
filter_nhp(source = "PsycInfo", taxa = "papio") filter_nhp(source = "PsycInfo", taxa = "hominidae") filter_nhp(source = "PubMed", taxa = "cercopithecidae", omit = c("papio", "macaca")) filter_nhp(source = "PubMed", taxa = "platyrrhini", omit = "aotus")
filter_nhp(source = "PsycInfo", taxa = "papio") filter_nhp(source = "PsycInfo", taxa = "hominidae") filter_nhp(source = "PubMed", taxa = "cercopithecidae", omit = c("papio", "macaca")) filter_nhp(source = "PubMed", taxa = "platyrrhini", omit = "aotus")
Get taxonomic terms for non-human primates
get_nhp_taxa(level = "all")
get_nhp_taxa(level = "all")
level |
Specify which level to get taxonomic terms for. Defaults to "all". Other options are "suborder", "infraorder", "parvorder", "superfamily", "family", "subfamily", "tribe" or "genus". |
A named list with taxonomic terms for each level.
get_nhp_taxa("genus")
get_nhp_taxa("genus")
Runs a user-friendly shiny app that calls on 'filter_nhp()'.
run_filter_nhp_app()
run_filter_nhp_app()