README.md edited online with Bitbucket
First open R, in Linux and Mac, just type R in shell. In R, type the following commands:
library(DriverNet) data(samplePatientMutationMatrix) data(samplePatientOutlierMatrix) data(sampleInfluenceGraph) data(sampleGeneNames) # The main function to compute drivers driversList = computeDrivers(samplePatientMutationMatrix, samplePatientOutlierMatrix, sampleInfluenceGraph, outputFolder=NULL, printToConsole=FALSE) drivers(driversList)[1:10] # random permute the gene labels to compute p-values randomDriversResult = computeRandomizedResult(patMutMatrix=samplePatientMutationMatrix, patOutMatrix=samplePatientOutlierMatrix, influenceGraph=sampleInfluenceGraph, geneNameList= sampleGeneNames, outputFolder=NULL, printToConsole=FALSE, numberOfRandomTests=20, weight=FALSE, purturbGraph=FALSE, purturbData=TRUE) # Summarize the results res = resultSummary(driversList, randomDriversResult, samplePatientMutationMatrix, sampleInfluenceGraph, outputFolder=NULL, printToConsole=FALSE)
First download the data file paperData.tar.gz and decompress it to the desired folder.Open R, and load the influence graph
load("influenceGraph.rda") Then load one of the data file, e.g., load("GBM_data.rda")
and run
driversList = computeDrivers(patMutMatrix, patOutMatrix, influenceGraph, outputFolder=NULL, printToConsole=FALSE)
will give you the rank list of genes.
用于识别癌症驱动基因的生物信息学工具
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802047560号
Usage
First open R, in Linux and Mac, just type R in shell. In R, type the following commands:
Reproduce the paper results
First download the data file paperData.tar.gz and decompress it to the desired folder.
Open R, and load the influence graph
and run
will give you the rank list of genes.