BIOMmerge: Merge BIOM data

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Merge two objects of class biom, maintaining metadata and other class structure.

Usage

1
2
## S3 method for class 'biom'
merge(x, y, ...)

Arguments

x

an object (biom)

y

an object (biom)

...

unused

Details

Complete technical documentation is forthcoming. For the current preliminary release, please refer to the examples provided.

Value

A biom object resulting from merging x and y.

Author(s)

Daniel T. Braithwaite

See Also

BIOM.utils::biom

Examples

1
2
3
4
5
6
7
####  merging requires only that all colnames be unique, so nonsense can be performed
merge (xx1, xx4)

####  a more likely example, based on applying different normalizations
aa <- transform (xx4 [,1:8], t_Threshold, t_Log)
bb <- transform (xx4 [,9:16], t_Threshold=list(entry.min=5), t_Log)
xx4_norm <- merge (aa, bb)

MG-RAST/matR documentation built on May 8, 2019, 3:21 p.m.