Description Usage Arguments Value References Examples
Quantify regulatory intensities and its confidence intervals with de-biased LASSO.
1 | quantiReg(exp.data, net, ci)
|
exp.data |
Expression matrix. Columns correspond to genes, rows correspond to experiments. The matrix is expected to be already normalized. |
net |
Conditioanl GRN output from |
ci |
Confidence interval of coefficient. |
A data frame containing the regulatory intensity and its confidence invertal for each regulation.
Javanmard A, Montanari A. Confidence intervals and hypothesis testing for high-dimensional regression. Journal of Machine Learning Research. 2014, 15(1): 2869-909.
1 2 3 4 5 6 7 8 9 10 11 12 | data(ExpData)
data(tf2tar)
data(ClinData)
group.1 <- ClinData$sample[which(ClinData$binaryResponse == 'CR/PR')]
exp.1 <- ExpData[,colnames(ExpData) %in% group.1]
## using method Boruta
net.1 <- condiGRN(exp.data = exp.1, tf2tar = tf2tar, method = 'Boruta', pValue = 0.01)
## Quantify regulatory intensity
quanti.net.1 <- quantiReg(exp.data = exp.1, net = net.1, ci = 0.90)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.