Skip to contents

Usage

# S3 method for class 'list_phyloseq'
names(x)

Arguments

x

A list_phyloseq object.

Value

A character vector of names.

Examples

lpq <- list_phyloseq(list(a = data_fungi, b = data_fungi))
#>  Building summary table for 2 phyloseq objects...
#>  Computing comparison characteristics...
#>  Checking sample and taxa overlap...
#>  Detected comparison type: REPRODUCIBILITY
#>  185 common samples, 1420 common taxa
#>  list_phyloseq created (REPRODUCIBILITY)
names(lpq) # c("a", "b")
#> [1] "a" "b"