How to solve error the folowing:
Error in G[i, ] : subscript out of bounds when using Drivernet R ?
Im importing a 412 x 31 matrix:
dat<-read.table(file="DRIVER.txt", row.names = NULL,header=TRUE, sep="\t")
mymatrix<-as.matrix(dat) # change to matrix
dim(mymatrix)
[1] 412 31
computeDrivers(patMutMatrix=mymatrix, patOutMatrix=mymatrix, influenceGraph=mymatrix, outputFolder = NULL,printToConsole = FALSE, weighted = FALSE)
Error in G[i, ] : subscript out of bounds...
Any thoughts on how to solve...