MAPmatrix
summarizes a binary matrix. It treats each row as Meta-Analysis Pattern and looks for count of observed soft and strong matches.MAPmatrix(value.dis)
uniqe.pat
), number of observed soft matches with the pattern (n.soft
), number of observed strong matches (n.strong
) and number of $1$'s in the pattern code{n.sig})
}
references{
Yang, X., Bentink, S. a Spang, R., emph{Detecting Common Gene Expression Patterns in Multiple Cancer Outcome Entities}, Biomedical Microdevices, Vol.7:3, 2005
}
author{
Ivana Ihnatova
}
examples{
## The function is currently defined as
function(value.dis)
{
res<-ratio(value.dis)
unique.pat <- unique(results$X.string)
n.soft <- patternMatch(value.dis,unique.pat)
n.strong <- patternMatch.strong(value.dis,unique.pat)
unique.X <- patternmatrix(unique.pat,ncol(value.dis))
n.sig <- apply(unique.X,1,sum)
mat<-data.frame(unique.pat, n.soft, n.strong,n.sig)
return(mat)
}
}
keyword{ nonparametric }