The first step is the creation of the phyloseq object using the type of files shown in step 5.5:
> otu_table <- read.csv("otutable.csv",sep=",",row.names=1)
> tax_table <- read.csv("taxonomy.csv",sep=",",row.names=1)
> OTU <- otu_table(otu_table,taxa_are_rows=TRUE)
> tax_matrix<- as.matrix(tax_table)
> TAX <- tax_table(tax_matrix)
> metadata <- read.csv("metadata.csv",sep=",",row.names=1)
> meta <- sample_data(metadata)
> fcm <- phyloseq(OTU, TAX, meta)