micro_otu: Extract OTU table from tidyMicro set

Description Usage Arguments Value Examples

View source: R/micro_otu.R

Description

A simple wrapper to extract an OTU table from a tidyMicro set

Usage

1
micro_otu(micro_set, table, taxa_info = cts)

Arguments

micro_set

A tidy_micro data set

table

OTU table of interest

taxa_info

The taxa info to pull

Value

A tibble

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
data(mrsa_gen); data(mrsa_clin)

## Creating tidyMicro set
set <- tidy_micro(otu_tabs = mrsa_gen, tab_names = "Genus", clinical = mrsa_clin)

## Filtering out unwanted OTUs
filt.set <- otu_filter(set, prev_cutoff = 1, ra_cutoff = 1, filter_summary = FALSE)

## Extract filtered OTU table
filt.otu.cts <- micro_otu(filt.set, table = "Genus")

## Extract filtered relative abundances table
filt.otu.ra <- micro_otu(filt.set, table = "Genus", taxa_info = ra)

CharlieCarpenter/tidyMicro documentation built on April 25, 2021, 4:09 p.m.