Description Usage Arguments Value Author(s) Examples
This method simply shuffles the columns in matrices. This can either be done by just shuffling columns within each selected matrix, or by shuffling columns almong all selected matrices.
1 | permuteMatrix(x, type="intra")
|
x |
A |
type |
The type of shuffling. It can be "intra" or "inter", which shuffle within each matrix, or between all the matrix. |
A object with shuffled matrix.
Ge Tan
1 2 3 4 5 6 7 8 9 10 11 | data("MA0043")
pfmSubject <- MA0043
data("MA0048")
pfmQuery <- MA0048
#opts = list()
#opts[["class"]] = "Ig-fold"
#pfmList = getMatrixSet(JASPAR2014, opts)
pfmList <- PFMatrixList(pfmSubject, pfmQuery)
foo = permuteMatrix(pfmQuery)
foo1 = permuteMatrix(pfmList, type="intra")
foo2 = permuteMatrix(pfmList, type="inter")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.