viewProjects {HCAExplorer}R Documentation

View all metadata about a selection of projects

Description

Returns a list of all the metadata from the current selection of entries in the HCAExplorer object as a projectView object. This method is is meant to return a clear and useful represntation of the metadata of a selection of projects.

Usage

## S4 method for signature 'HCAExplorer'
viewProjects(x)

Arguments

x

An HCAExplorer object

Value

A list of all metadata in the selected entries. This list will contain mulitple lists representing the metadata.

See Also

HCAExplorer for the HCAExplorer class.

[HCAExplorer()][projectView()]

Examples

 ## Initiate an HCAExplorer object.
 x <- HCAExplorer()
 x

 ## Use viewProjects to show all metadata information relating to a project.
 view <- viewProjects(x)
 view

 ## Subset the data to obtain the first two rows.
 x <- x[1:2,]
 x

 ## Fewer projects have there metadata shown due to our previous subset.
 view <- viewProjects(x)
 view


[Package HCAExplorer version 1.0.0 Index]