Description Usage Arguments Details References See Also Examples
Using PFA to apply dimension reduction and data integration, then using k-means to get the cluster results.
1 |
data |
A list of different omics data. Each data in data list should be format as a data matrix with rows representing features and columns representing samples. |
maxk |
An integer value means the maximize number of clusters we will try. |
matlab |
MATLAB server variable when execute |
The author just provides the MATLAB code of the method. When we tried to transfer it to R, we found that the results of left division operation for non-square matrices in R and MATLAB were totally different. In order to compare and evaluate the original version of PFA, CEPICS uses R.matlab R package to initialize a MATLAB server to run the original MATLAB code. In addition, the original version code can only integrate three omics datasets. We improve the code and make it possible to integrate omics data without the number of datasets limit. You should execute PFAinit()
to initialize a MATLAB server before running PFA, and close server after running.
Shi,Q. et al. (2017) Pattern fusion analysis by adaptive alignment of multiple heterogeneous omics data. Bioinformatics, 33, 2706-2714.
1 2 3 4 5 6 7 8 | data(COAD_Methy)
data(COAD_miRNA)
data(COAD_mRNA)
matlab=PFAinit(path=getwd())
res=runPFA(data=list(COAD_Methy, COAD_miRNA, COAD_mRNA),maxk=10,matlab=matlab)
close(matlab)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.