get_beta_data: Soft-threshold beta data

Description Usage Arguments Value Examples

Description

This function takes the input parameters from find_modules and calculates the WGCNA soft-threshold parameters and returns them.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
get_beta_data(cem, ...)

## S4 method for signature 'CEMiTool'
get_beta_data(
  cem,
  network_type = "unsigned",
  cor_function = "cor",
  cor_method = "pearson",
  verbose = FALSE
)

Arguments

cem

A CEMiTool object containing expression data

...

Optional parameters.

network_type

A character string indicating to use either "unsigned" (default) or "signed" networks. Default "unsigned".

cor_function

A character string indicating the correlation function to be used. Default 'cor'.

cor_method

A character string indicating which correlation coefficient is to be computed. Default "pearson"

verbose

Logical. If TRUE, reports analysis steps. Default FALSE

Value

A list containing the soft-threshold selected by WGCNA and scale-free model parameters

Examples

1
2
3
4
5
6
# Get example expression data
data(expr0)
# Initialize new CEMiTool object with expression data
cem <- new_cem(expr0, filter=TRUE, apply_vst=FALSE)
# Get beta data
beta_data <- get_beta_data(cem)

CEMiTool documentation built on March 13, 2021, 2 a.m.