Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 2.34 KB

finding_opentree_data.md

File metadata and controls

43 lines (29 loc) · 2.34 KB

Finding OpenTree data

Here are some instructions on how to find opentree data for the workshop

##Clades in the synthesis tree

##Taxonomy info

Here are links to the taxonomy browser for the three clades:

##Published phylogenies We don't have a way to search for taxa in the online interface for the curator tool. But, we do have web services for this that you can call using curl. By default, these only return the identifiers for the studies and trees. You can use the verbose option to get all of the info, or use the study methods to retrieve single studies or trees - see the documentation.

Barnacles (as of Feb 18, 11 studies):

curl -X POST https://api.opentreeoflife.org/v2/studies/find_trees \
-H "content-type:application/json" \
-d '{"property":"ot:ottTaxonName","value":"Thecostraca"}'

Catfish (as of Feb 18, 12 studies):

curl -X POST https://api.opentreeoflife.org/v2/studies/find_trees \
-H "content-type:application/json" \
-d '{"property":"ot:ottTaxonName","value":"Siluriformes"}'

Chrysomeloidea (as of Feb 18, 1 study):

curl -X POST https://api.opentreeoflife.org/v2/studies/find_trees \
-H "content-type:application/json" \
-d '{"property":"ot:ottTaxonName","value":"Chrysomeloidea"}'

Curculionoidea (as of Feb 18, 3 studies):

curl -X POST https://api.opentreeoflife.org/v2/studies/find_trees \
-H "content-type:application/json" \
-d '{"property":"ot:ottTaxonName","value":"Curculionoidea"}'