phyloseq is a set of classes, wrappers, and tools (in R) to make it easier to import, store, and analyze phylogenetic sequencing data; and to reproducibly share that data and analysis with others. See the phyloseq front page:
Im trying to normalize a transformed phyloseq (which I did sucesssfully) object; ps.sp is a Large Phyloseq object in the above line of code.
And for normalization, Im using:
Transform OTU table
ps.sp.trans <- transform_sample_counts(ps.sp, function(x) log10(x))
Im trying to normalize a transformed phyloseq (which I did sucesssfully) object; ps.sp is a Large Phyloseq object in the above line of code. And for normalization, Im using:
Normalize OTU table
ps.sp.norm <- normalize(ps.sp.trans, method = "CSS")
ERROR: