get.node.info: Get the information for specified node

Description Usage Arguments Value Examples

View source: R/get.node.info.R

Description

Obtain the information for specified node from the output list of ipcaps.

Usage

1
get.node.info(cluster.obj, node)

Arguments

cluster.obj

A list returned from the ipcaps function.

node

An integer representing a node number to enquire information as shown in the HTML output files.

Value

The return value is NULL if node's information does not exist or a list containing. PCs, eigen.fit, index, and label as explained below:

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
# Importantly, bed file, bim file, and fam file are required
# Use the example files embedded in the package

BED.file <- system.file('extdata',
                        'ipcaps_example.bed',
                        package = 'IPCAPS.BIOC')

LABEL.file <- system.file('extdata',
                          'ipcaps_example_individuals.txt.gz',
                          package = 'IPCAPS.BIOC')

my.cluster <- ipcaps(bed = BED.file,
                     label.file = LABEL.file,
                     lab.col = 2,
                     out = tempdir(),
                     max.thread = 1,
                     seed = 1234)

#Here, to obtain the information of specified node, for example, node 3
node.info <- get.node.info(my.cluster,3)

kridsadakorn/ipcaps.bioc documentation built on Jan. 22, 2020, 11:18 p.m.