| rbiom-deprecated | R Documentation |
The functions listed below are deprecated and will be defunct in
the near future. When possible, alternative functions with similar
functionality are also mentioned. Help pages for deprecated functions are
available at help("<function>-deprecated").
alpha.div(biom, rarefy = FALSE)
beta.div(
biom,
method = "Bray-Curtis",
weighted = TRUE,
tree = NULL,
long = FALSE,
md = FALSE
)
counts(biom)
info(biom)
metadata(biom, field = NULL, cleanup = FALSE)
nsamples(biom)
ntaxa(biom)
phylogeny(biom)
read.biom(src, tree = "auto", prune = FALSE)
read.fasta(file, ids = NULL)
read.tree(src)
sample.names(biom)
## S3 method for class 'rbiom'
select(
.data,
samples = NULL,
nTop = NULL,
nRandom = NULL,
seed = 0,
biom = NULL,
...
)
sequences(biom)
subtree(tree, tips)
taxa.names(biom)
taxa.ranks(biom)
taxa.rollup(
biom,
rank = "OTU",
map = NULL,
lineage = FALSE,
sparse = FALSE,
taxa = NULL,
long = FALSE,
md = FALSE
)
taxonomy(biom, ranks = NULL, unc = "asis")
tips(x)
unifrac(biom, weighted = TRUE, tree = NULL)
write.biom(biom, file, format = "json")
write.fasta(seqs, outfile = NULL)
write.tree(tree, file = NULL)
write.xlsx(biom, outfile, depth = 0.1, seed = 0)
as.percent(biom)
comments(biom)
depth(biom)
depths_barplot(
biom,
rline = TRUE,
counts = TRUE,
labels = TRUE,
transform = "log10",
...
)
has.phylogeny(biom)
has.sequences(biom)
id(biom)
is.rarefied(biom)
repair(biom)
sample_subset(x, ...)
sample.sums(biom, long = FALSE, md = FALSE)
taxa_max(biom, rank = -1, lineage = FALSE, unc = "singly")
taxa.means(biom, rank = NULL)
taxa.sums(biom, rank = NULL)
top.taxa(biom, rank = "OTU", n = Inf)
top_taxa(biom, rank = "OTU", n = Inf)
comments(x) <- value
counts(x) <- value
id(x) <- value
metadata(x) <- value
phylogeny(x) <- value
sample.names(x) <- value
sequences(x) <- value
taxa.names(x) <- value
taxa.ranks(x) <- value
taxonomy(x) <- value
alpha.divUse adiv_matrix() or adiv_table() instead.
beta.divUse bdiv_table() or bdiv_distmat() instead.
countsUse $counts instead.
infoUse biom$id, biom$comment, etc instead.
metadataUse biom$metadata or pull(biom, field) instead.
nsamplesUse biom$n_samples instead.
ntaxaUse biom$n_otus instead.
phylogenyUse biom$tree instead.
read.biomUse as_rbiom() instead.
read.fastaUse read_fasta() instead.
read.treeUse read_tree() instead.
sample.namesUse biom$samples instead.
selectUse slice() instead.
sequencesUse biom$sequences instead.
subtreeUse tree_subset() instead.
taxa.namesUse biom$otus instead.
taxa.ranksUse biom$ranks instead.
taxa.rollupUse taxa_table() taxa_matrix() instead.
taxonomyUse $taxonomy instead.
tipsUse tree$tip.label instead.
unifracUse bdiv_distmat() or bdiv_table() instead.
For weighted=TRUE, returns non-normalized values.
write.biomUse write_biom() instead.
write.fastaUse write_fasta() instead.
write.treeUse write_tree() instead.
write.xlsxUse write_xlsx() instead.
as.percentUse biom$counts %<>% rescale_cols() instead.
commentsUse biom$comment instead.
depthUse sample_sums() instead.
depths_barplotUse rare_stacked() instead.
has.phylogenyUse !is.null(biom$tree) instead.
has.sequencesUse !is.null(biom$sequences) instead.
idUse biom$id instead.
is.rarefiedUse !is.null(biom$depth) instead.
repairUse as_rbiom(as.list(biom)) instead.
sample_subsetUse biom$metadata %<>% base::subset() instead.
sample.sumsUse sample_sums() or adiv_table() instead.
taxa_maxUse taxa_apply(biom, max, sort = 'desc') instead.
taxa.meansUse taxa_means() instead.
taxa.sumsUse taxa_sums() instead.
top.taxaUse taxa_sums() instead.
top_taxaUse taxa_sums() instead.
comments-setUse biom$comment <- instead.
counts-setUse biom$counts <- instead.
id-setUse biom$id <- instead.
metadata-setUse biom$metadata <- instead.
phylogeny-setUse biom$tree <- instead.
sample.names-setUse biom$samples <- instead.
sequences-setUse biom$sequences <- instead.
taxa.names-setUse biom$otus <- instead.
taxa.ranks-setUse biom$ranks <- instead.
taxonomy-setUse biom$taxonomy <- instead.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.