ppo_terms: Access Terms From the Plant Phenology Ontology

Description Usage Arguments Details Value Examples

View source: R/ppo_terms.R

Description

Access present and absent terms from the Plant Phenology Ontology

Usage

1
ppo_terms(present = FALSE, absent = FALSE, timeLimit = 2)

Arguments

present

(boolean) If TRUE then return all "present" phenological stages

absent

(boolean) IF TRUE then return all "absent" phenological stages.

timeLimit

(integer) set the limit ofthe amount of time to wait for a response

Details

The ppo_terms function returns terms from the Plant Phenology Ontology (PPO). The function only accepts parameters for "present" or "absent" terms. The response populates a data frame with: termID, label, description, and URI. Use the termID values in submitting termID values to the ppo_data function. The label and description fields are extracted from the Plant Phenology Ontology and are useful in determining the proper term to query on. The URI field contains a link to the term itself which is useful for determining superclass and subclass relationships for each term. For more information on the PPO ontology itself, we suggest loading the PPO https://github.com/PlantPhenoOntology/ppo with protege https://protege.stanford.edu/

Value

data.frame

Examples

1
2
3
presentTerms <- ppo_terms(present = TRUE, timeLimit = 1)

absentTerms <- ppo_terms(absent = TRUE, timeLimit = 1)

rppo documentation built on June 3, 2021, 1:06 a.m.