PathoStat-class: PathoStat class to store PathoStat input data including...

Description Details Examples

Description

Contains all currently-supported BatchQC output data classes:

Details

slots:

average_count

a single object of class otu_tableOrNULL

besthit_count

a single object of class otu_tableOrNULL

highconf_count

a single object of class otu_tableOrNULL

lowconf_count

a single object of class otu_tableOrNULL

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
otumat = matrix(sample(1:100, 100, replace = TRUE), nrow = 10, ncol = 10)
rownames(otumat) <- paste0("OTU", 1:nrow(otumat))
colnames(otumat) <- paste0("Sample", 1:ncol(otumat))
taxmat = matrix(sample(letters, 70, replace = TRUE), 
nrow = nrow(otumat), ncol = 7)
rownames(taxmat) <- rownames(otumat)
colnames(taxmat) <- c("Domain", "Phylum", "Class", 
"Order", "Family", "Genus", "Species")
OTU = phyloseq::otu_table(otumat, taxa_are_rows = TRUE)
TAX = phyloseq::tax_table(taxmat)
physeq = phyloseq::phyloseq(OTU, TAX)
pathostat1(physeq)

PathoStat documentation built on Nov. 8, 2020, 5:28 p.m.