makeMAList | R Documentation |
makeMAList
extracts sets of data-pairs (like R & G series) and makes MA objects as MA-List object
(eg for ratio oriented analysis).
The grouping of columns as sets of replicate-measurements is done according to argumnet MAfac
.
The output is fully compatible to functions of package limma (Bioconductor).
makeMAList(
mat,
MAfac,
useF = c("R", "G"),
isLog = TRUE,
silent = FALSE,
debug = FALSE,
callFrom = NULL
)
mat |
main input matrix |
MAfac |
(factor) factor orgnaizing columns of 'mat' (if |
useF |
(character) two specific factor-leves of |
isLog |
(logical) tell if data is already log2 (will be considered when computing M and A values) |
silent |
(logical) suppress messages |
debug |
(logical) additional messages for debugging |
callFrom |
(character) allow easier tracking of messages produced |
This function requires Bioconductor package limma being installed.
limma-type "MAList" containing M and A values
test2factLimma
, for creating RG-lists within limma: MA.RG
in normalizeWithinArrays
set.seed(2017); t4 <- matrix(round(runif(40,1,9),2), ncol=4,
dimnames=list(letters[c(1:5,3:4,6:4)], c("AA1","BB1","AA2","BB2")))
makeMAList(t4, gl(2,2,labels=c("R","G")))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.