| get_study_tree {rotl} | R Documentation |
Returns a specific tree from within a study
get_study_tree(study_id = NULL, tree_id = NULL,
object_format = c("phylo"), tip_label = c("original_label", "ott_id",
"ott_taxon_name"), file_format, file, deduplicate = TRUE, ...)
study_id |
the identifier of a study (character) |
tree_id |
the identifier of a tree within the study |
object_format |
the class of the object to be returned
(default and currently only possible value |
tip_label |
the format of the tip
labels. “ |
file_format |
the format of the file to be generated
( |
file |
the file name where the output of the function will be saved. |
deduplicate |
logical (default |
... |
additional arguments to customize the API request (see
|
if file_format is missing, an object of class
phylo, otherwise a logical indicating whether the file
was successfully created.
## Not run: tree <- get_study_tree(study_id="pg_1144", tree_id="tree2324") ## comparison of the first few tip labels depending on the options used head(get_study_tree(study_id="pg_1144", tree_id="tree2324", tip_label="original_label")$tip.label) head(get_study_tree(study_id="pg_1144", tree_id="tree2324", tip_label="ott_id")$tip.label) head(get_study_tree(study_id="pg_1144", tree_id="tree2324", tip_label="ott_taxon_name")$tip.label) ## End(Not run)