File: sample_metadata-methods.Rd

package info (click to toggle)
r-bioc-biomformat 1.10.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 392 kB
  • sloc: sh: 10; makefile: 2
file content (68 lines) | stat: -rw-r--r-- 2,721 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
% Generated by roxygen2 (4.1.1): do not edit by hand
% Please edit documentation in R/BIOM-class.R
\docType{methods}
\name{sample_metadata}
\alias{sample_metadata}
\alias{sample_metadata,biom,character-method}
\alias{sample_metadata,biom,missing-method}
\alias{sample_metadata,biom,numeric-method}
\title{Access meta data from \code{\link{biom-class}}.}
\usage{
sample_metadata(x, columns, parallel = FALSE)

\S4method{sample_metadata}{biom,missing}(x, columns, parallel = FALSE)

\S4method{sample_metadata}{biom,character}(x, columns, parallel = FALSE)

\S4method{sample_metadata}{biom,numeric}(x, columns, parallel = FALSE)
}
\arguments{
\item{x}{(Required). An instance of the \code{\link{biom-class}}.}

\item{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 (\code{\link{numeric-class}}) or
 index names (\code{\link{character-class}}).}

\item{parallel}{(Optional). Logical. Whether to perform the accession parsing
 using a parallel-computing backend supported by the \code{\link{plyr-package}}
 via the \code{\link[foreach]{foreach-package}}.}
}
\value{
A \code{\link{data.frame}} or \code{\link{list}} containing
 the meta data, with index names. The precise form of the object returned
 depends on the metadata stored in \code{x}. A \code{data.frame} is
 created if possible.
}
\description{
Retrieve and organize meta data from \code{\link{biom-class}},
represented as a \code{\link{data.frame}} (if possible, or a list)
with proper index names.
}
\examples{
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)
}