View source: R/make_utax_taxonomy.R
make_utax_taxonomy | R Documentation |
This function takes taxonomy table and returns character string in USEARCH-style that can be used with SINTAX or UTAX taxonomy classificators.
make_utax_taxonomy(x)
x |
Data frame with one row (columns are ordered taxonomy levels) |
Missing values are allowed and should be coded as 'NA'.
Character string.
http://drive5.com/usearch/manual/tax_annot.html
# Create dummy data (for one species)
datt <- data.frame(
Kingdom = "Fungi", Phylum = "Basidiomycota", Class = "Agaricomycetes",
Order = "Agaricales", Family = "Marasmiaceae", Genus = "Marasmius", Species = "Marasmius_alliaceus",
stringsAsFactors = F)
make_utax_taxonomy(datt)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.