Learn R Programming

yatah (version 1.0.0)

taxtree: Taxonomic tree

Description

Compute taxonomic tree from taxonomic table.

Usage

taxtree(table, collapse = TRUE, lineage_length = 1, root = "")

Value

A phylo object.

Arguments

table

dataframe.

collapse

logical. Should node with one child be vanished? Default to TRUE.

lineage_length

double. Lineage length from the root to the leaves. Default to 1.

root

character. Name of the root if there is no natural root.

Examples

Run this code
lineage1 <- "k__Bacteria|p__Verrucomicrobia|c__Verrucomicrobiae"
lineage2 <- "k__Bacteria|p__Firmicutes|c__Clostridia"
lineage3 <- "k__Bacteria|p__Firmicutes|c__Bacilli"
table <- taxtable(c(lineage1, lineage2, lineage3))
taxtree(table)

Run the code above in your browser using DataLab