module.modeling: Predict and report the proper gene-patient number of...

Description Usage Arguments Details Value Author(s) Examples

View source: R/module.modeling.R

Description

This function attempts to find the breakpoint in patient-gene number curve generated during bi-clustering analysis, which may indicate inclusion/exclusion of molecular mechanism for selected patients

Usage

1
2
3
module.modeling(res.module, keep.gene.num = NULL,
  model.method = c("slope.clustering", "max.square", "min.slope",
  "min.similarity")[1], cores = 1, overlap = NULL, para = NULL)

Arguments

res.module

a 'seed.module' or 'cluster.module' object

keep.gene.num

a integer value or a vector (see details).

model.method

the modeling methods (see details). The possible values are 'max.square', 'slope.clustering', 'min.slope' and 'min.similarity'

cores

the thread number

overlap

the minimum similarity for selected DEGs from two or more patients

para

a list, with two keys 'deg' and 'overlap'. It should not be NULL if res.module is a list.

Details

This function will be automatic used by seed.module and cluster.module during its module discovery steps. User can explicitly use it to refine the modelling results. After checking the 'curve' plot, users can change the break points to modify the modelling results by setting 'keep.gene.num', which is the number of DEGs to keep. If users only need to change part of the modules, just give the the 'keep.gene.num' for the selected modules.

'keep.gene.num' can a integer value or a vector. If it is a integer number, all the modules will have the same 'keep.gene.num'. If it is a vector, its elements should use module name as their names. Otherwise, only the first element will be used and all the modules will be set. When 'keep.gene.num' is vector, it is not necessary to have the same length as modules. It is possible to only changes some of the modules. And the left modules will use the default setting.

Another way to modify the modelling results is to change the 'model.method'. In this version, 'model.method' has four possible values: 'slope.clustering', 'max.square', 'min.slope' and 'min.similarity', which indicate the different four different modelling methods: 'slope.clustering' has maximum slope changes, which may indicate the inclusion/exclusion of molecular mechanism. 'max.square' is the gene-patients number that has the maximum product; 'min.slope' is the point with minimum slope in gene-patient number curve; 'min.similarity' is based on the similarity scores and the point with minimum similarity scores is choosed.

Within this package, users have two ways to refine the modeling results. One way is to run seed.module or cluster.module by setting the 'res.module' and 'model.method'. Another way is to run module.modeling.

Value

a 'deg.modules' object and its modules has a 'model' to be added or refined.

Author(s)

Guofeng Meng

Examples

1
2
3
4
5
6
7
8
   x=c(100,200)
   names(x)<-c('M1','M3')
   new.seed.mod=module.modeling(seed.mod, keep.gene.num = x)
   #here, only 'M1' and 'M3' are modified
   new.seed.mod=module.modeling(seed.mod, keep.gene.num = 100)
   # here, all the modules are modified
   new.cluster.mod=module.modeling(cluster.mod, model.method='min.similarity')
   # here, change the modeling method

DEComplexDisease documentation built on Nov. 8, 2020, 6:42 p.m.