Description Usage Arguments Value Examples
Retrieve the parent sOTU for a 'palm_id' in palmdb or the set of all children 'palm_id' within an species/sOTU
1 |
palm_ids |
character, set of 'palm_id' to lookup in palmdb |
con |
pq-connection, use SerratusConnect() |
get_childs |
boolean, return all children 'palm_id' instead of parent sOTU [FALSE] |
ordinal |
boolean, return an ordered sOTU vector based on input 'palm_ids' |
character, unique 'palm_id' sOTU or sOTU-children
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ## R Code Example
con <- SerratusConnect()
get.sOTU(c("u1337"), con, get_childs = TRUE)
## Non-Running Example to demonstrate sOTU Relationships
# palm_id sOTU
# u1 u3
# u2 u3
# u3 u3
# u4 u4
# Retrieve the parent sOTU for an input of palm_ids
# get.sOTU(c("u1","u2",u4"), con, get_childs = FALSE)
# -- returns c("u3","u4")
# Return an ordinal list of sOTU for iput
# get.sOTU(c("u2","u4","u2","u1"), con, ordinal = TRUE)
# -- returns c("u3", "u4", "u3", "u3")
# Return all children palm_id within an sOTU
# get.sOTU(c("u2"), con, get_childs = TRUE)
# -- returns c("u1", u2", "u3")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.