Title: | An interface package for the BIOM file format |
---|---|
Description: | This is an R package for interfacing with the BIOM format. This package includes basic tools for reading biom-format files, accessing and subsetting data tables from a biom object (which is more complex than a single table), as well as limited support for writing a biom-object back to a biom-format file. The design of this API is intended to match the python API and other tools included with the biom-format project, but with a decidedly "R flavor" that should be familiar to R users. This includes S4 classes and methods, as well as extensions of common core functions/methods. |
Authors: | Paul J. McMurdie <[email protected]> and Joseph N Paulson <[email protected]> |
Maintainer: | Paul J. McMurdie <[email protected]> |
License: | GPL-2 |
Version: | 1.35.0 |
Built: | 2024-10-30 04:22:37 UTC |
Source: | https://github.com/bioc/biomformat |
This is an R package for interfacing with the biom-format. It includes basic utilities for reading and writing BIOM format using R, and native R methods for interacting with biom-data that maps to functionality in other languages that support biom-format, like python.
Paul J. McMurdie II [email protected]
This is for instantiating a biom object within R (biom-class
),
and assumes relevant data is already available in R.
This is different than reading a biom file into R.
If you are instead interested in importing a biom file into R,
you should use the read_biom
function.
This function is made available (exported) so that
advanced-users/developers
can easily represent analogous data in this structure if needed.
However, most users are expected to instead rely on the
read_biom
function for data import, followed by
accessor functions that extract R-friendly
subsets of the data stored in the biom-format derived list.
biom(x) ## S4 method for signature 'list' biom(x)
biom(x) ## S4 method for signature 'list' biom(x)
x |
(REQUIRED). A named list conforming to conventions arising from
the |
biom()
is a constructor method. This is the main method
suggested for constructing an experiment-level (biom-class
)
object from its component data.
An instance of the biom-class
.
Function to create a biom object from R data,
make_biom
.
Definition of the
biom-class
.
The read_biom
import function.
Function to write a biom format file from a biom object,
write_biom
Accessor functions like header
.
# # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") x = read_biom(biom_file) show(x) print(x) header(x) biom_data(x) biom_shape(x) nrow(x) ncol(x) observation_metadata(x) sample_metadata(x)
# # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") x = read_biom(biom_file) show(x) print(x) header(x) biom_data(x) biom_shape(x) nrow(x) ncol(x) observation_metadata(x) sample_metadata(x)
biom-class
.Retrieve and organize main data from biom-class
,
represented as a matrix with index names.
biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,missing,missing' biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,character,ANY' biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,ANY,character' biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,numeric,missing' biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,missing,numeric' biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,numeric,numeric' biom_data(x, rows, columns, parallel = FALSE)
biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,missing,missing' biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,character,ANY' biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,ANY,character' biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,numeric,missing' biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,missing,numeric' biom_data(x, rows, columns, parallel = FALSE) ## S4 method for signature 'biom,numeric,numeric' biom_data(x, rows, columns, parallel = FALSE)
x |
(Required). An instance of the |
rows |
(Optional). The subset of row indices described in the
returned object. For large datasets, specifying the row subset here,
rather than after creating the whole matrix first,
can improve speed/efficiency.
Can be vector of index numbers ( |
columns |
(Optional). The subset of column indices described in the
returned object. For large datasets, specifying the column subset here,
rather than after creating the whole matrix first,
can improve speed/efficiency.
Can be vector of index numbers ( |
parallel |
(Optional). Logical. Whether to perform the accession parsing
using a parallel-computing backend supported by the |
A matrix containing the main observation data, with index names.
The type of data (numeric or character)
will depend on the results of matrix_element_type(x)
.
The class of the matrix returned will depend on the sparsity of the data,
and whether it has numeric or character data.
For now, only numeric data can be stored in a Matrix-class
,
which will be stored sparsely, if possible.
Character data will be returned as a vanilla matrix-class
.
min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") min_sparse_file = system.file("extdata", "min_sparse_otu_table.biom", package = "biomformat") rich_dense_file = system.file("extdata", "rich_dense_otu_table.biom", package = "biomformat") rich_sparse_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") rich_dense_char = system.file("extdata", "rich_dense_char.biom", package = "biomformat") rich_sparse_char = system.file("extdata", "rich_sparse_char.biom", package = "biomformat") # Read the biom-format files x1 = read_biom(min_dense_file) x2 = read_biom(min_sparse_file) x3 = read_biom(rich_dense_file) x4 = read_biom(rich_sparse_file) x5 = read_biom(rich_dense_char) x6 = read_biom(rich_sparse_char) # Extract the data matrices biom_data(x1) biom_data(x2) biom_data(x3) biom_data(x4) biom_data(x5) biom_data(x6)
min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") min_sparse_file = system.file("extdata", "min_sparse_otu_table.biom", package = "biomformat") rich_dense_file = system.file("extdata", "rich_dense_otu_table.biom", package = "biomformat") rich_sparse_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") rich_dense_char = system.file("extdata", "rich_dense_char.biom", package = "biomformat") rich_sparse_char = system.file("extdata", "rich_sparse_char.biom", package = "biomformat") # Read the biom-format files x1 = read_biom(min_dense_file) x2 = read_biom(min_sparse_file) x3 = read_biom(rich_dense_file) x4 = read_biom(rich_sparse_file) x5 = read_biom(rich_dense_char) x6 = read_biom(rich_sparse_char) # Extract the data matrices biom_data(x1) biom_data(x2) biom_data(x3) biom_data(x4) biom_data(x5) biom_data(x6)
biom-class
object.The matrix dimensions
of a biom-class
object.
biom_shape(x) ## S4 method for signature 'biom' biom_shape(x)
biom_shape(x) ## S4 method for signature 'biom' biom_shape(x)
x |
(Required). An instance of the |
A length two integer-class
vector
indicating the nrow
and ncol
of the main data matrix stored in x
.
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) biom_shape(x)
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) biom_shape(x)
This class inherits from the list-class
,
with validity checks specific to the definition to the biom-format.
Effectively this means the list must have certain index names,
some elements of which must have a specific structure or value.
For further details see
the biom-format definition.
Importantly, this means other special properties of lists,
like operations with $
and single- or double-square-braces
are also supported; as-is the apply
-family function
that can operate on lists.
Note that some features of the biom-format can be essentially empty,
represented by the string "null"
in the file.
These fields are returned as NULL
when accessed
by an accessor function.
The constructor, biom
Accessor functions:
header
,
biom_shape
,
nrow
,
ncol
,
matrix_element_type
,
biom_data
,
observation_metadata
,
sample_metadata
biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") x = read_biom(biom_file) header(x) biom_shape(x) nrow(x) ncol(x) rownames(x) colnames(x) matrix_element_type(x) biom_data(x) observation_metadata(x) sample_metadata(x)
biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") x = read_biom(biom_file) header(x) biom_shape(x) nrow(x) ncol(x) rownames(x) colnames(x) matrix_element_type(x) biom_data(x) observation_metadata(x) sample_metadata(x)
colnames
for biom-class
objects.See the general documentation of colnames
method for
expected behavior.
## S4 method for signature 'biom' colnames(x)
## S4 method for signature 'biom' colnames(x)
x |
(Required). An instance of the |
The number of columns in x
.
A length 1 integer-class
.
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) colnames(x)
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) colnames(x)
biom-class
object as a list.Extract the header from a biom-class
object as a list.
header(x) ## S4 method for signature 'biom' header(x)
header(x) ## S4 method for signature 'biom' header(x)
x |
(Required). An instance of the |
A list containing the header data. That is, all the required elements that are not the main data or index metadata.
biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") x = read_biom(biom_file) header(x)
biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") x = read_biom(biom_file) header(x)
biom-class
from matrix-class
or data.frame
.This function creates a valid instance of the biom-class
from standard base-R objects like
matrix-class
or data.frame
.
This makes it possible to export any contingency table data
represented in R to
the biom-format,
regardless of its source.
The object returned by this function is appropriate for writing to
a .biom
file using the write_biom
function.
The sparse biom-format is not (yet) supported.
make_biom(data, sample_metadata = NULL, observation_metadata = NULL, id = NULL, matrix_element_type = "int")
make_biom(data, sample_metadata = NULL, observation_metadata = NULL, id = NULL, matrix_element_type = "int")
data |
(Required).
|
sample_metadata |
(Optional).
A |
observation_metadata |
(Optional).
A |
id |
(Optional). Character string. Identifier for the project. |
matrix_element_type |
(Optional). Character string. Either 'int' or 'float' |
The BIOM file format (canonically pronounced biome) is designed to be a general-use format for representing biological sample by observation contingency tables. BIOM is a recognized standard for the Earth Microbiome Project and is a Genomics Standards Consortium candidate project. Please see the biom-format home page for more details.
An object of biom-class
.
# import with default parameters, specify a file biomfile = system.file("extdata", "rich_dense_otu_table.biom", package = "biomformat") x = read_biom(biomfile) data = biom_data(x) data smd = sample_metadata(x) smd omd = observation_metadata(x) omd # Make a new biom object from component data y = make_biom(data, smd, omd) # Won't be identical to x because of header info. identical(x, y) # The data components should be, though. identical(observation_metadata(x), observation_metadata(y)) identical(sample_metadata(x), sample_metadata(y)) identical(biom_data(x), biom_data(y)) ## Quickly show that writing and reading still identical. # Define a temporary directory to write .biom files tempdir = tempdir() write_biom(x, biom_file=file.path(tempdir, "x.biom")) write_biom(y, biom_file=file.path(tempdir, "y.biom")) x1 = read_biom(file.path(tempdir, "x.biom")) y1 = read_biom(file.path(tempdir, "y.biom")) identical(observation_metadata(x1), observation_metadata(y1)) identical(sample_metadata(x1), sample_metadata(y1)) identical(biom_data(x1), biom_data(y1))
# import with default parameters, specify a file biomfile = system.file("extdata", "rich_dense_otu_table.biom", package = "biomformat") x = read_biom(biomfile) data = biom_data(x) data smd = sample_metadata(x) smd omd = observation_metadata(x) omd # Make a new biom object from component data y = make_biom(data, smd, omd) # Won't be identical to x because of header info. identical(x, y) # The data components should be, though. identical(observation_metadata(x), observation_metadata(y)) identical(sample_metadata(x), sample_metadata(y)) identical(biom_data(x), biom_data(y)) ## Quickly show that writing and reading still identical. # Define a temporary directory to write .biom files tempdir = tempdir() write_biom(x, biom_file=file.path(tempdir, "x.biom")) write_biom(y, biom_file=file.path(tempdir, "y.biom")) x1 = read_biom(file.path(tempdir, "x.biom")) y1 = read_biom(file.path(tempdir, "y.biom")) identical(observation_metadata(x1), observation_metadata(y1)) identical(sample_metadata(x1), sample_metadata(y1)) identical(biom_data(x1), biom_data(y1))
biom-class
objectAccess class of data in the matrix elements
of a biom-class
object
matrix_element_type(x) ## S4 method for signature 'biom' matrix_element_type(x)
matrix_element_type(x) ## S4 method for signature 'biom' matrix_element_type(x)
x |
(Required). An instance of the |
A character-class
string indicating
the class of the data stored in the main observation matrix of x
,
with expected values "int"
, "float"
, "unicode"
.
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) matrix_element_type(x)
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) matrix_element_type(x)
ncol
for biom-class
objects.See the general documentation of ncol
method for
expected behavior.
## S4 method for signature 'biom' ncol(x)
## S4 method for signature 'biom' ncol(x)
x |
(Required). An instance of the |
The number of columns in x
.
A length 1 integer-class
.
# import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) ncol(x)
# import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) ncol(x)
nrow
for biom-class
objects.See the general documentation of nrow
method for
expected behavior.
## S4 method for signature 'biom' nrow(x)
## S4 method for signature 'biom' nrow(x)
x |
(Required). An instance of the |
The number of rows in x
.
A length 1 integer-class
.
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) nrow(x)
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) nrow(x)
biom-class
.Retrieve and organize meta data from biom-class
,
represented as a data.frame
(if possible)
or a list, with proper index names.
observation_metadata(x, rows, parallel = FALSE) ## S4 method for signature 'biom,missing' observation_metadata(x, rows, parallel = FALSE) ## S4 method for signature 'biom,character' observation_metadata(x, rows, parallel = FALSE) ## S4 method for signature 'biom,numeric' observation_metadata(x, rows, parallel = FALSE)
observation_metadata(x, rows, parallel = FALSE) ## S4 method for signature 'biom,missing' observation_metadata(x, rows, parallel = FALSE) ## S4 method for signature 'biom,character' observation_metadata(x, rows, parallel = FALSE) ## S4 method for signature 'biom,numeric' observation_metadata(x, rows, parallel = FALSE)
x |
(Required). An instance of the |
rows |
(Optional). The subset of row indices described in the
returned object. For large datasets, specifying the row subset here,
– rather than first creating the complete data object –
can improve speed/efficiency.
This parameter can be vector of index numbers ( |
parallel |
(Optional). Logical. Whether to perform the accession parsing
using a parallel-computing backend supported by the |
A data.frame
or list
containing
the meta data, with index names. The precise form of the object returned
depends on the metadata stored in x
. A data.frame
is
created if possible.
min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") min_sparse_file = system.file("extdata", "min_sparse_otu_table.biom", package = "biomformat") rich_dense_file = system.file("extdata", "rich_dense_otu_table.biom", package = "biomformat") rich_sparse_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") rich_dense_char = system.file("extdata", "rich_dense_char.biom", package = "biomformat") rich_sparse_char = system.file("extdata", "rich_sparse_char.biom", package = "biomformat") # Read the biom-format files x1 = read_biom(min_dense_file) x2 = read_biom(min_sparse_file) x3 = read_biom(rich_dense_file) x4 = read_biom(rich_sparse_file) x5 = read_biom(rich_dense_char) x6 = read_biom(rich_sparse_char) # Extract metadata observation_metadata(x1) observation_metadata(x2) observation_metadata(x3) observation_metadata(x3, 2:4) observation_metadata(x3, 2) observation_metadata(x3, c("GG_OTU_3", "GG_OTU_4", "whoops")) observation_metadata(x4) observation_metadata(x5) observation_metadata(x6)
min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") min_sparse_file = system.file("extdata", "min_sparse_otu_table.biom", package = "biomformat") rich_dense_file = system.file("extdata", "rich_dense_otu_table.biom", package = "biomformat") rich_sparse_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") rich_dense_char = system.file("extdata", "rich_dense_char.biom", package = "biomformat") rich_sparse_char = system.file("extdata", "rich_sparse_char.biom", package = "biomformat") # Read the biom-format files x1 = read_biom(min_dense_file) x2 = read_biom(min_sparse_file) x3 = read_biom(rich_dense_file) x4 = read_biom(rich_sparse_file) x5 = read_biom(rich_dense_char) x6 = read_biom(rich_sparse_char) # Extract metadata observation_metadata(x1) observation_metadata(x2) observation_metadata(x3) observation_metadata(x3, 2:4) observation_metadata(x3, 2) observation_metadata(x3, c("GG_OTU_3", "GG_OTU_4", "whoops")) observation_metadata(x4) observation_metadata(x5) observation_metadata(x6)
biom-class
.Import the data from a biom-format file into R, represented as an instance
of the biom-class
; essentially a list
with
special constraints that map to the biom-format definition.
read_biom(biom_file)
read_biom(biom_file)
biom_file |
(Required). A character string indicating the file location of the biom formatted file. This is a HDF5 or JSON formatted file specific to biological datasets. The format is formally defined at the biom-format definition and depends on the versioning. |
The BIOM file format (canonically pronounced biome) is designed to be a general-use format for representing biological sample by observation contingency tables. BIOM is a recognized standard for the Earth Microbiome Project and is a Genomics Standards Consortium candidate project. Please see the biom-format home page for more details.
It is tempting to include an argument identifying the biom-format version number of the data file being imported. However, the biom-format version number is a required field in the biom-format definition. Rather than duplicate this formal specification and allow the possibility of a conflict, the version number of the biom format will be referred to only by the "format" field in the biom formatted data, or its representation in R.
An instance of the biom-class
.
Function to create a biom object from R data,
make_biom
.
Definition of the
biom-class
.
Function to write a biom format file from a biom object,
write_biom
Accessor functions like header
.
# # # import with default parameters, specify a file biom_file <- system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") biom_file read_biom(biom_file) biom_file <- system.file("extdata", "min_sparse_otu_table.biom", package = "biomformat") biom_file read_biom(biom_file) ## The previous examples use system.file() because of constraints in specifying a fixed ## path within a reproducible example in a package. ## In practice, however, you can simply provide "hard-link" ## character string path to your file: # mybiomfile <- "path/to/my/biomfile.biom" # read_biom(mybiomfile)
# # # import with default parameters, specify a file biom_file <- system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") biom_file read_biom(biom_file) biom_file <- system.file("extdata", "min_sparse_otu_table.biom", package = "biomformat") biom_file read_biom(biom_file) ## The previous examples use system.file() because of constraints in specifying a fixed ## path within a reproducible example in a package. ## In practice, however, you can simply provide "hard-link" ## character string path to your file: # mybiomfile <- "path/to/my/biomfile.biom" # read_biom(mybiomfile)
list
.This function is meant only to be used if the user knows the file is a particular version / hdf5 format. Otherwise, the 'read_biom' file should be used.
read_hdf5_biom(biom_file)
read_hdf5_biom(biom_file)
biom_file |
(Required). A biom object that is going to be written to file as a proper biom formatted file, adhering to the biom-format definition. |
Nothing. The first argument, x
, is written to a file.
Function to create a biom object from R data,
make_biom
.
Definition of the
biom-class
.
The read_hdf5_biom
import function.
Accessor functions like header
.
biom_file <- system.file("extdata", "rich_sparse_otu_table_hdf5.biom", package = "biomformat") x = read_hdf5_biom(biom_file) x = biom(x) outfile = tempfile() write_biom(x, outfile) y = read_biom(outfile) identical(observation_metadata(x),observation_metadata(y)) identical(sample_metadata(x),sample_metadata(y)) identical(biom_data(x), biom_data(y))
biom_file <- system.file("extdata", "rich_sparse_otu_table_hdf5.biom", package = "biomformat") x = read_hdf5_biom(biom_file) x = biom(x) outfile = tempfile() write_biom(x, outfile) y = read_biom(outfile) identical(observation_metadata(x),observation_metadata(y)) identical(sample_metadata(x),sample_metadata(y)) identical(biom_data(x), biom_data(y))
rownames
for biom-class
objects.See the general documentation of rownames
method for
expected behavior.
## S4 method for signature 'biom' rownames(x)
## S4 method for signature 'biom' rownames(x)
x |
(Required). An instance of the |
The number of columns in x
.
A length 1 integer-class
.
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) rownames(x)
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) rownames(x)
biom-class
.Retrieve and organize meta data from biom-class
,
represented as a data.frame
(if possible, or a list)
with proper index names.
sample_metadata(x, columns, parallel = FALSE) ## S4 method for signature 'biom,missing' sample_metadata(x, columns, parallel = FALSE) ## S4 method for signature 'biom,character' sample_metadata(x, columns, parallel = FALSE) ## S4 method for signature 'biom,numeric' sample_metadata(x, columns, parallel = FALSE)
sample_metadata(x, columns, parallel = FALSE) ## S4 method for signature 'biom,missing' sample_metadata(x, columns, parallel = FALSE) ## S4 method for signature 'biom,character' sample_metadata(x, columns, parallel = FALSE) ## S4 method for signature 'biom,numeric' sample_metadata(x, columns, parallel = FALSE)
x |
(Required). An instance of the |
columns |
(Optional). The subset of column indices described in the
returned object. For large datasets, specifying the column subset here,
rather than after creating the whole matrix first,
can improve speed/efficiency.
Can be vector of index numbers ( |
parallel |
(Optional). Logical. Whether to perform the accession parsing
using a parallel-computing backend supported by the |
A data.frame
or list
containing
the meta data, with index names. The precise form of the object returned
depends on the metadata stored in x
. A data.frame
is
created if possible.
min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") min_sparse_file = system.file("extdata", "min_sparse_otu_table.biom", package = "biomformat") rich_dense_file = system.file("extdata", "rich_dense_otu_table.biom", package = "biomformat") rich_sparse_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") rich_dense_char = system.file("extdata", "rich_dense_char.biom", package = "biomformat") rich_sparse_char = system.file("extdata", "rich_sparse_char.biom", package = "biomformat") # Read the biom-format files x1 = read_biom(min_dense_file) x2 = read_biom(min_sparse_file) x3 = read_biom(rich_dense_file) x4 = read_biom(rich_sparse_file) x5 = read_biom(rich_dense_char) x6 = read_biom(rich_sparse_char) # Extract metadata sample_metadata(x1) sample_metadata(x2) sample_metadata(x3) sample_metadata(x3, 1:4) sample_metadata(x4) sample_metadata(x5) sample_metadata(x6)
min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") min_sparse_file = system.file("extdata", "min_sparse_otu_table.biom", package = "biomformat") rich_dense_file = system.file("extdata", "rich_dense_otu_table.biom", package = "biomformat") rich_sparse_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") min_dense_file = system.file("extdata", "min_dense_otu_table.biom", package = "biomformat") rich_dense_char = system.file("extdata", "rich_dense_char.biom", package = "biomformat") rich_sparse_char = system.file("extdata", "rich_sparse_char.biom", package = "biomformat") # Read the biom-format files x1 = read_biom(min_dense_file) x2 = read_biom(min_sparse_file) x3 = read_biom(rich_dense_file) x4 = read_biom(rich_sparse_file) x5 = read_biom(rich_dense_char) x6 = read_biom(rich_sparse_char) # Extract metadata sample_metadata(x1) sample_metadata(x2) sample_metadata(x3) sample_metadata(x3, 1:4) sample_metadata(x4) sample_metadata(x5) sample_metadata(x6)
See the general documentation of show
method for
expected behavior.
## S4 method for signature 'biom' show(object)
## S4 method for signature 'biom' show(object)
object |
biom-class object |
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) show(x)
# # # import with default parameters, specify a file biom_file = system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") (x = read_biom(biom_file) ) show(x)
biom-class
.Write a biom-format v1 file, returning a biom-class
.
write_biom(x, biom_file)
write_biom(x, biom_file)
x |
(Required). A biom object that is going to be written to file as a proper biom formatted file, adhering to the biom-format definition. |
biom_file |
(Required). A character string indicating the file location of the biom formatted file. This is a JSON formatted file specific to biological datasets. The format is formally defined at the biom-format definition |
Nothing. The first argument, x
, is written to a file.
Function to create a biom object from R data,
make_biom
.
Definition of the
biom-class
.
The read_biom
import function.
Accessor functions like header
.
biom_file <- system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") x = read_biom(biom_file) outfile = tempfile() write_biom(x, outfile) y = read_biom(outfile) identical(x, y)
biom_file <- system.file("extdata", "rich_sparse_otu_table.biom", package = "biomformat") x = read_biom(biom_file) outfile = tempfile() write_biom(x, outfile) y = read_biom(outfile) identical(x, y)