Build eNODAL object

eNODAL_build(
  Z,
  Meta1,
  Meta2,
  Phenotype = NULL,
  Meta1_name = NULL,
  Meta2_name = NULL,
  ...
)

Arguments

Z

A matrix/dataframe of omics data

Meta1

A dataframe of first set of meta variables.

Meta2

A dataframe of second set of meta variables.

Phenotype

A dataframe of phenotype output.

Meta1_name

Name of experiment conditions in Meta1. If it is NULL will name "Meta1".

Meta2_name

Name of experiment conditions in Meta2. If it is NULL will name "Meta2".

...

Other parameters can pass to eNODAL_obj_build See createParams

Value

An eNODAL_obj object

Examples

data(Proteomics) Z = Proteomics$Z Meta1 = Proteomics$Meta1 Meta2 = Proteomics$Meta2 eNODAL_obj = eNODAL_build(Z, Meta1, Meta2)