Usage
run.CONDOP(data.in, bkgExprCDS = 0.1, bkgExprIGR = 0.25, maxLenIGR = 150, win.start.trp = c(100, 10), win.end.trp = c(10, 100), norm.type = "n1", cl.run = 30, nfolds = 5, cons = 2, find.ext = FALSE, save.TAB.file = NULL, save.BED.file = NULL, return.all = FALSE, verbose = TRUE)
Arguments
data.in
The output of the pre.proc
function.
bkgExprCDS
A threshold to be used for finding active coding-sequence regions. Default values is 0.1.
bkgExprIGR
A threshold to be used for finding the active/transcribed intergenic regions. Default values is 0.25.
maxLenIGR
Maximum length for the intergenic regions. Default values is 150.
win.start.trp
Specify the maximum and the minimum distance from the beginning of a coding region. It is important to validate transcription start points. Defauls values are 100 (max) and 10 (min).
win.end.trp
Specify the minimum and maximum distance from the end of a coding region. It is important to validate transcription end points. Defauls values are 10 (min) and 100 (max).
norm.type
Character vector indicating the method to use for the normalization step. Default value is "n1".
n0 - without normalization; n1 - standardization ((x-mean)/sd);
n2 - positional standardization ((x-median)/mad); n3 - unitization ((x-mean)/range);
n4 - unitization with zero minimum ((x-min)/range); n5 - normalization in range <-1,1> ((x-mean)/max(abs(x-mean))).
cl.run
Number of runs of training/validation. Default values is 30.
nfolds
Indicate the number of folds to be used for the cross-validation step. Default values is 5.
cons
Indicate the minimum number of positive votes necessary to classify a gene pair as operon pair. Default values is 2.
find.ext
To add putative operon pairs classified as OP to the condition-dependent operon map. Defaults to FALSE.
save.TAB.file
Character string naming a file. The final condition operon map is saved in a tab-delimeted text file. Default values is NULL - the cond. operon map is not saved.
save.BED.file
Character string naming a file. The final condition operon map is saved in a BED-like file. Default values is NULL - the cond. operon map is not saved.
return.all
Logical value indicating if extra data must be provided in output.
verbose
Indicate whether information about the process should be reported. Defaults to TRUE.