R/ScanBMAcontrol.R

Defines functions gControl ScanBMAcontrol

Documented in gControl ScanBMAcontrol

ScanBMAcontrol <- function(OR = 100,
                           useg = TRUE,
                           gCtrl = gControl(),
                           thresProbne0 = 1) { 

  list( algorithm = "ScanBMA", OR = OR, useg = useg, gCtrl = gCtrl,
        thresProbne0 = thresProbne0 );

}

gControl <- function(optimize = TRUE,
                     optMethod = "perTarget",
                     g0 = NULL,
                     iterlim = 100,
                     epsilon = 0.1 ) {
  
  list( optimize = optimize, g0 = g0,
        iterlim = iterlim, epsilon = epsilon );
}

Try the networkBMA package in your browser

Any scripts or data that you put into this service are public.

networkBMA documentation built on Jan. 28, 2021, 2:02 a.m.