Description Usage Arguments Value Author(s) Examples
This function prioritize genes using sequence-based and network-based model
1 2 3 |
netPredResult |
Full path of gene prioritization results from the network-based gene prioritization algorithms (e.g., AraNet v2). |
featureMat |
A numeric matrix of features where rows represent genes, cols represent features. |
positives |
A character vector of positive samples. |
negatives |
A character vector of negative samples. |
featureSel |
A logical value, where TRUE selecting significant features between positive and negative samples. |
ProteinSeq |
A list of protein sequence, the parameter are not required unless patameter featureMat is NULL. |
PPIMat |
A matrix of PPI, which contains 3 coloums represent protein1, protein2, score respectively, the patameter is not required unless paramter negatives are NULL. |
GenomeGeneID |
A vector of genome ID, the parameter, the parameter is not required unless parameter negatives is NULL. |
ntree |
Number of trees to grow when using random forest, the default is 500. |
A matrix with the rank of genes and descriptive information
Jingjing Zhai, Chuang Ma
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
positives <- c("AT1G01060", "AT1G09530", "AT1G09570", "AT1G12610")
res <- RAP(netPredResult = "/home/malab/AraNetPred.txt",
positives = positives, negatives = negatives,
featureSel = TRUE, featureMat = featureMat)
## featureMat can be calculated by function FeatureExtract
## negatives can be calculated by function selectNegSamples
## The sample results of AraNet v2 (AraNetPred.txt) can be
downloaded from http://bioinfo.nwafu.edu.cn/software
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.