Description Usage Arguments Details Value Note Author(s) See Also Examples
Get metadata of projects or metagenomes specified by ID, or simply look up correspondence of project and metagenome IDs.
1 2 |
x |
IDs of projects or metagenomes ( |
detail |
level of metadata detail ( |
... |
arguments to |
quiet |
suppress messages and warnings? ( |
file |
file containing project or metagenome IDs (string) |
Complete technical documentation is forthcoming. For the current preliminary release, please refer to the examples provided.
A list
(for projects) or vector
(for metagenomes) when detail=NULL
.
Otherwise, a data.frame
.
The function metadata()
is declared S3 generic in required package BIOM.utils
,
and a method is defined there for class biom
.
Although here is documented another method of the same function,
the actual functionality is unrelated.
Daniel T. Braithwaite
dir.MGRAST
,
search.MGRAST
,
biomRequest
,
MGRASTer::call.MGRAST
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | ## Not run:
#### three levels of detail for project metadata
xx <- "mgp21 mgp24 mgp30"
metadata (xx)
metadata (xx, detail=TRUE)
names (metadata (xx, detail="verbose"))
#### similar (but not identical) for metagenome metadata
yy <- "mgm4440066.3 mgm4440062.3 mgm4440055.3 mgm4441681.3 mgm4440463.3 mgm4440464.3"
metadata (yy)
metadata (yy, detail=TRUE)
names (metadata (yy, detail="metadata"))
## End(Not run)
#### relevant documentation for underlying API calls
doc.MGRAST (3, head=c('project','instance','parameters','options'))
doc.MGRAST (3, head=c('metagenome','instance','parameters','options'))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.