Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/attractorScanningGL.R
Exhaustively search for all converged genomically-localized attractors in the dataset.
1 |
data |
An expression matrix with genes in the rows, samples in the columns. |
genome |
A matrix with genome information. The rownames of the matrix must
contains gene symbols in their genomical order. See |
alpha |
A vector of exponents to try for convergence. |
windowSize |
Number of genes to be filtered in, centered at the seed gene. |
maxIter |
Max number of iterations. |
epsilon |
Threshold of convergence. |
bin |
Number of bins used when estimate mutual information (default=6). |
so |
Spline order used when estimate mutual information (default=3). |
score.position |
Which rank in the attractor will be used as the strength. (default=5) |
num.output |
Number of genes to include in the attractor. |
negateMI |
When |
verbose |
When |
saveAllScore |
When |
The genomically-localized attractor usually points to an amplicon or delecon that contains several
genes being amplified or deleted simultaneously. Such amplification and deletion within the region
reflects on the co-expression of genes in the neighborhood. attractorScanningGL
exhaustively
uses every gene as a seed in the dataset to find all converged genomically locallized attractors
in the region of the seed gene. It uses the same algorithm as findAttractor
, but restricts
the gene space to the neighborhood of the seed gene defined by the windowSize
. The
significance (or strength) of an attractor is defined by the MI of the score.position
-th
gene. Default is the fifth-highest MI in the attractor. The function tries all the possible
exponents defined in alpha
and finds the best one that gives highest
score.position
-th MI. It then compares all the converged attractors using the seeds in the
neighborhood and finds the one with the highest strength.
When saveAllScore
is TRUE
, it returns a list with the following fields:
attractome |
A matrix of all converged attractors. Each column is the genes of the attractor ranked by their MI with the metagene. Each column name is the seed used to generate the attractors. |
bestAlphas |
The best exponents that lead to the highest strength given the seed. |
score |
The strength of each attractor. |
scoremat |
A matrix of the MIs corresponding to each gene in the |
summary |
The summarized output after removing the overlapping attractors. The output only contains the attractor with highest strength among all overlapping ones. Each row is the genes of an attractor ranked according to their MIs with the metagene. Each row name is the seed that leads to the attractor. The first column gives the cytoband information. The last column gives the strength of the attractor. |
If saveAllScore
is FALSE
, the function only output the summary
field above in matrix form.
Wei-Yi Cheng
Wei-Yi Cheng, Tai-Hsien Ou Yang and Dimitris Anastassiou, Biomolecular events in cancer revealed by attractor metagenes, PLoS Computational Biology, Vol. 9, Issue 2, February 2013.
findAttractor
, findGLAttractor
, attractorScanning
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.