-
Notifications
You must be signed in to change notification settings - Fork 2
/
Two_level_learning.R
executable file
·699 lines (657 loc) · 25.1 KB
/
Two_level_learning.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
args <- commandArgs(TRUE)
library("methods")
library("glmnet")
library("doMC")
library("parallel")
if(length(args) < 1) {
args <- c("--help")
}
## Help
if("--help" %in% args) {
cat("
INVOKE offers linear regression with Lasso, Ridge, and Elastic Net regularisation.
Arguments:
--outDir Output directory (will be created if it does not exist)
--dataDir Directory containing the data
--response Name of the response variable
--cores Number of cores to be use (default 1)
--fixedAlpha Use a fixed value for the alpha parameter in elastic net regulatisation, do not perform a grid search
--alpha Stepsize to optimise the alpha parameter in elastic net regularisation (default 0.05)
--testsize Size of test data[%] (default 0.2)
--regularisation L for Lasso, R for Ridge, and E for Elastic net (default E)
--innerCV Number of folds for inner cross-validation (default 6)
--outerCV Number of iterations of outer cross-validation to determine test error (default 3)
--constraint Specifies a constraint on the coefficent sign, enter N for negative and P for positive constraint
--performance Flag indiciating whether the performance of the model should be assessed (default TRUE)
--seed Random seed used for random number generation (default random)
--leaveOneOutCV Flag indicating whether a leave one out cross-validation should be used (default FALSE)
--asRData Store feature coefficients as RData files (default FALSE)
--randomise Randomise the feature matrix (default FALSE)
--logResponse Flag indicating whether the response variable should be log transformed (default TRUE)
--ftest Flag indicating whether partial F-test should be computed to assess the significance of each feature (default FALSE)
--coefP p-value threshold for model coefficient (default 1, all OLS coefs will be returned)
--help=print this text
")
q(save="no")
}
# Process command arguments
parseArgs <- function(x) strsplit(sub("^--", "", x), "=")
argsDF <- as.data.frame(do.call("rbind", parseArgs(args)))
argsL <- as.list(as.character(argsDF$V2))
names(argsL) <- argsDF$V1
if(is.null(argsL$outDir)) {
cat("No output directory specified. Use the --outDir option to specify an output directory.")
q(save="no")
}
argsL$outDir<-paste0(argsL$outDir,"/")
if(is.null(argsL$dataDir)) {
cat("No data directory specified. Use the --dataDir option to specify a data directory.")
q(save="no")
}
argsL$dataDir<-paste0(argsL$dataDir,"/")
Data_Directory <- argsL$dataDir
if(is.null(argsL$response)) {
cat("No response variable name specified. Use the --response option to specify a response variable.")
q(save="no")
}
if(is.null(argsL$ftest)){
argsL$ftest<-FALSE
}
if(is.null(argsL$testsize)){
argsL$testsize <- 0.2
}
if(is.null(argsL$innerCV)){
argsL$innerCV <- 6
}
if(is.null(argsL$outerCV)){
argsL$outerCV<- 3
}
if (as.numeric(argsL$outerCV) < 2){
cat("Number of outer cross validation folds must be at least 2")
q(save="no")
}
if(is.null(argsL$alpha)) {
argsL$alpha <- 0.05
}
if(is.null(argsL$cores)) {
argsL$cores <- 1
}
if(is.null(argsL$coefP)) {
argsL$coefP <- 1
}
if(is.null(argsL$regularisation)){
argsL$regularisation<-c("E")
}
if(is.null(argsL$constraint)){
lower_bound <- NULL
upper_bound <- NULL
}else if(argsL$constraint=="P"){
lower_bound <- 0
}else if(argsL$constraint=="N"){
upper_bound <- 0
}
if(is.null(argsL$fixedAlpha)){
argsL$fixedAlpha <- -1
}
if (is.null(argsL$performance)){
argsL$performance <- TRUE
}
if (! is.null(argsL$seed)){
set.seed(as.numeric(argsL$seed))
}
if(is.null(argsL$leaveOneOutCV)){
argsL$leaveOneOutCV <- FALSE
}
if (is.null(argsL$asRData)){
argsL$asRData <- FALSE
}
if (is.null(argsL$randomise)){
argsL$randomise <- FALSE
}
if (is.null(argsL$logResponse)){
argsL$logResponse <- TRUE
}
if ((argsL$leaveOneOutCV==TRUE) & (argsL$ftest==TRUE)){
cat("The F-Test can not be combined with leave one out cross validation.")
q(save="no")
}
registerDoMC(cores = argsL$cores)
permute<-function(x,resPos){
s<-sample(length(x))
s<-s[which(s != resPos)]
c(x[s],x[resPos])
}
#Check output directory, create it if necessary
dir.create(argsL$outDir,showWarning=FALSE)
#Initilaise lists for storage of intermediate results
FileList<-list.files(path=Data_Directory)
numFiles=length(FileList)
pearson_correlation<-vector("list",numFiles)
spearman_correlation<-vector("list",numFiles)
test_error<-vector("list",numFiles)
rss_error<-vector("list",numFiles)
ftest_result<-vector("list",numFiles)
coefficients<-vector("list",numFiles)
coefficientsF<-vector("list",numFiles)
Sample_View<-vector("list",numFiles)
validSamples<-vector("logical",numFiles)
spearmanPassed<-vector("numeric",numFiles)
#Print sample names
print(paste("Total number of samples:",as.character(length(FileList)),sep=" "))
if (length(FileList)==0){
print("No samples available! Aborting")
exit()
}
counter<-0
for(Sample in FileList){
counter<-counter+1
print(paste(as.character(counter),unlist(unlist(strsplit(Sample,".txt")))))
}
#Loop through sample files
i<-0
for(Sample in FileList){
i<-i+1
print(paste("Learning sample ",as.character(i),sep=" "))
#Loading and preprocessing data
print("Processing sample matrix. This can take a few minutes. Please wait.")
M<-read.table(paste(Data_Directory,Sample,sep=""),header=TRUE,sep="",row.names=1)
M<-unique(M)
M<-data.frame(M)
FeatureNames_temp<-colnames(M)
Response_Variable_location_temp <- grep(argsL$response,FeatureNames_temp)
if (min(M[,Response_Variable_location_temp]) >= 0){
if (argsL$logResponse == TRUE){
M<-log2(M+1)
}
}else{
print("Applying log2 transformation only to features")
Response_Variable_location_temp <- grep(argsL$response,FeatureNames_temp)
M[,-Response_Variable_location_temp]<-log2(M[,-Response_Variable_location_temp]+1)
}
SD<-apply(M,2,sd)
Feature_zero_SD<-as.vector(which(SD==0))
if(length(Feature_zero_SD)>0){
print("Warning, there are constant features. These are not considered for further analysis.")
if (Response_Variable_location_temp %in% Feature_zero_SD){
print("Warning, response is constant, this sample is excluded")
validSamples[i]=FALSE
next;
}
M<-M[,-c(Feature_zero_SD)]
}
if (is.null(dim(M))){
validSamples[i]=FALSE
spearmanPassed[i]=1
print("Warning, sample matrix is null, this sample is excluded")
next;
}
if (dim(M)[2] < 2){
print("Warning, no data included")
validSamples[i]=FALSE
spearmanPassed[i]=1
next;
}
print(length(which(M==0)))
if (length(which(M==0))>(dim(M)[1]*dim(M)[2]*0.5)){
validSamples[i]=FALSE
spearmanPassed[i]=1
print("Warning, insufficient data coverage")
next;
}
FeatureNames<-colnames(M)
M<-data.frame(scale(M,center=TRUE, scale=TRUE))
if (dim(M)[1] < 30){
print("Warning, less then 30 samples available. This file is not processed.")
validSamples[i]=FALSE
spearmanPassed[i]=1
next;
}else{
validSamples[i]=TRUE
}
if (argsL$leaveOneOutCV==FALSE){
vectorLength=as.numeric(argsL$outerCV)
pearson_correlation[[i]]<-vector("list",vectorLength)
spearman_correlation[[i]]<-vector("list",vectorLength)
test_error[[i]]<-vector("list",vectorLength)
coefficients[[i]]<-vector("list",vectorLength)
}else{
vectorLength<-nrow(M)
pearson_correlation[[i]]<-cbind(vector("list",vectorLength),vector("list",vectorLength))
spearman_correlation[[i]]<-cbind(vector("list",vectorLength),vector("list",vectorLength))
test_error[[i]]<-vector("list",vectorLength)
coefficients[[i]]<-vector("list",vectorLength)
}
if (argsL$ftest ==TRUE){
ftest_result[[i]]<-vector("list",dim(M)[2]-1)
}
name<-unlist(unlist(strsplit(Sample, ".txt")))
Response_Variable_location<- grep(argsL$response,FeatureNames)
#Randomise the data
if (argsL$randomise == TRUE){
MP<-t(apply(M,1,permute,Response_Variable_location))
colnames(MP)<-colnames(M)
M<-data.frame(scale(MP,center=TRUE, scale=TRUE))
}
if (argsL$performance == TRUE){
if (argsL$leaveOneOutCV==FALSE){
predictedAll<-c()
measuredAll<-c()
#Looping through the outer folds
for (k in 1:argsL$outerCV){
print(paste("Outer cross validation fold: ",as.character(k),sep=" "))
# Partition data into test and training data sets
Test_size<-round(nrow(M)/(1/as.numeric(argsL$testsize)))
rndselect<-sample(x=nrow(M), size=Test_size)
Test_Data<-M[rndselect,]
Train_Data<-M[-rndselect,]
# Split the features from response
x_train<-as.matrix(Train_Data[,-Response_Variable_location])
x_test<-as.matrix(Test_Data[,-Response_Variable_location])
y_train<-as.vector(unlist(Train_Data[,Response_Variable_location,drop=FALSE]))
y_test<-as.vector(unlist(Test_Data[,Response_Variable_location]))
#Creating alpha vector
A<-c()
if(argsL$regularisation=="L"){
alphaslist <- c(1.0)
print("The value of alpha is set to 1.0 (Lasso penalty)")
}else{
if(argsL$regularisation=="R"){
alphaslist <- c(0.0)
print("The value of alpha is set to 0.0 (Ridge penalty)")
}else{
alphaslist<-seq(0,1,by=as.numeric(argsL$alpha))
}
}
#Learning model on training data
if(argsL$regularisation=="E"){
if(argsL$fixedAlpha==-1){
if(is.null(argsL$constraint)){
elasticnet<-mclapply(alphaslist, function(x){;cv.glmnet(x_train, y_train,alpha=x,nfolds=as.numeric(argsL$innerCV))}, mc.cores=argsL$cores)
}else{
if(argsL$constraint=="P"){
elasticnet<-mclapply(alphaslist, function(x){cv.glmnet(x_train, y_train,alpha=x,lower=0,nfolds=as.numeric(argsL$innerCV))}, mc.cores=argsL$cores)
}else{
if(argsL$constraint=="N"){
elasticnet<-mclapply(alphaslist, function(x){cv.glmnet(x_train, y_train,alpha=x,upper=0,nfolds=as.numeric(argsL$innerCV))}, mc.cores=argsL$cores)
}
}
}
}else{
x=argsL$fixedAlpha
if(is.null(argsL$constraint)){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="P"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,lower=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="N"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,upper=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}
}
}
}
}else{
x=alphaslist[1]
if(is.null(argsL$constraint)){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="P"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,lower=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="N"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,upper=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}
}
}
}
if(length(elasticnet[[1]]) > 1){
if (argsL$regularisation=="E"){
if(argsL$fixedAlpha==-1){
for (j in 1:length(alphaslist)) {
A[j]<-min(elasticnet[[j]]$cvm)
}
#Determine best alpha value from training data
index<-which(A==min(A), arr.ind=TRUE)
model<-elasticnet[[index]]
}
}else{
model<-elasticnet
}
}
if (length(elasticnet[[1]]) > 1){
#Determine error of the best alpha model on hold out data and on training data
predict_fit<-predict(model, x_test, s="lambda.min")
predict_fit_train<-predict(model, x_train, s="lambda.min")
coefficients[[i]][[k]]<-coef(model, s = "lambda.min")
if (var(predict_fit,y_test) > 0){
pearson_correlation[[i]][k]<-cor(predict_fit,y_test)
spearman_correlation[[i]][k]<-cor(predict_fit,y_test,method='spearman')
predictedAll<-c(predictedAll,predict_fit)
measuredAll<-c(measuredAll,y_test)
}else{
pearson_correlation[[i]][k]<-0.0
spearman_correlation[[i]][k]<-0.0
}
test_error[[i]][k]<-sum((y_test-predict_fit)^2)/length(y_test)
rss_error[k]<-sum((y_test-predict_fit)^2)
}else{
coefficients[[i]][k]<-c()
pearson_correlation[[i]][k]<-0.0
spearman_correlation[[i]][k]<-0.0
test_error[[i]][k]<-1.0
rss_error[k]<-1.0
validSamples[i]=FALSE
spearmanPassed[i]=1
}
}
if (length(predictedAll) > 0){
if (var(predictedAll,measuredAll) > 0){
spearmanP<-cor.test(predictedAll,measuredAll,method='spearman')$p.value
spearmanPassed[i]=spearmanP
}else{
spearmanPassed[i]=1
}
}
else{
spearmanPassed[i]=1
}
if (argsL$ftest==TRUE){
numFeatures=dim(M)[2]
if (numFeatures-1 > 1){
featureMatrixF<-c()
for (j in 1:length(coefficients[[i]])){
if (length(coefficients[[i]][[j]]>1)){
featureMatrixF<-rbind(featureMatrixF,coefficients[[i]][[j]][,1])
}
}
featureMatrixF<-featureMatrixF[,-1]
if (length(featureMatrixF > 1)){
ftest_result[[i]]<-rep(1.0,numFeatures-1)
meanFeature<-apply(featureMatrixF,2,median)
nonZeroFeatures<-which(meanFeature != 0)
print(nonZeroFeatures)
print(paste0("Running F-test using ",length(nonZeroFeatures)," features"))
featureIndex<-nonZeroFeatures
for (m in featureIndex){
print(paste0("Excluding feature ",m," ",FeatureNames[m]))
MF<-M[,-m]
error<-c(1:argsL$outerCV)
for (k in 1:argsL$outerCV){
Test_size<-round(nrow(MF)/(1/as.numeric(argsL$testsize)))
rndselect<-sample(x=nrow(MF), size=Test_size)
Test_Data<-MF[rndselect,]
Train_Data<-MF[-rndselect,]
Response_Variable_location_MF<- grep(argsL$response,colnames(MF))
x_train<-as.matrix(Train_Data[,-Response_Variable_location_MF])
x_test<-as.matrix(Test_Data[,-Response_Variable_location_MF])
y_train<-as.vector(unlist(Train_Data[,Response_Variable_location_MF,drop=FALSE]))
y_test<-as.vector(unlist(Test_Data[,Response_Variable_location_MF]))
A<-c()
if(argsL$regularisation=="L"){
alphaslist <- c(1.0)
}else{
if(argsL$regularisation=="R"){
alphaslist <- c(0.0)
}else{
alphaslist<-seq(0,1,by=as.numeric(argsL$alpha))
}
}
if(argsL$regularisation=="E"){
if(argsL$fixedAlpha==-1){
if(is.null(argsL$constraint)){
elasticnet<-mclapply(alphaslist, function(x){cv.glmnet(x_train, y_train,alpha=x,nfolds=as.numeric(argsL$innerCV))}, mc.cores=argsL$cores)
}else{
if(argsL$constraint=="P"){
elasticnet<-mclapply(alphaslist, function(x){cv.glmnet(x_train, y_train,alpha=x,lower=0,nfolds=as.numeric(argsL$innerCV))}, mc.cores=argsL$cores)
}else{
if(argsL$constraint=="N"){
elasticnet<-mclapply(alphaslist, function(x){cv.glmnet(x_train, y_train,alpha=x,upper=0,nfolds=as.numeric(argsL$innerCV))}, mc.cores=argsL$cores)
}
}
}
}else{
x=argsL$fixedAlpha
if(is.null(argsL$constraint)){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="P"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,lower=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="N"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,upper=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}
}
}
}
}else{
x=alphaslist[1]
if(is.null(argsL$constraint)){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="P"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,lower=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="N"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,upper=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}
}
}
}
if(length(elasticnet[[1]]) > 1){
if (argsL$regularisation=="E"){
if(argsL$fixedAlpha==-1){
for (j in 1:length(alphaslist)) {
A[j]<-min(elasticnet[[j]]$cvm)
}
index<-which(A==min(A), arr.ind=TRUE)
model<-elasticnet[[index]]
}
}else{
model<-elasticnet
}
}
if (length(elasticnet[[1]]) > 1){
predict_fit<-predict(model, x_test, s="lambda.min")
predict_fit_train<-predict(model, x_train, s="lambda.min")
error[k]<-sum((y_test-predict_fit)^2)
}else{
error[k]<-1.0
}
}
mRSS<-mean(error)
mORSS<-mean(unlist(rss_error[[i]]),na.rm=TRUE)
MSe<-mORSS/(dim(MF)[1]-(length(nonZeroFeatures)))
partialRSS<-mRSS-mORSS
fvalue<-partialRSS/MSe
pValue<-1.0-pf(as.numeric(fvalue),length(nonZeroFeatures)-1,(dim(MF)[1]-length(nonZeroFeatures)))
ftest_result[[i]][m]<-pValue
}
}
###Generate output
}else{
print(paste0("Computing significance for feature ",FeatureNames[1]))
mORSS<-mean(unlist(rss_error[[i]]),na.rm=TRUE)
MSe<-mORSS/(dim(MF)[1]-2)
fvalue<-mORSS/MSe
pValue<-1.0-pf(as.numeric(fvalue),1,dim(MF)[1]-2)
ftest_result[[i]][1]<-pValue
}
}
}else{
#Leave one out cross validation
for (k in 1:nrow(M)){
#print(paste("Leave one out cross validation fold: ",as.character(k),sep=" "))
# Partition data into test and training data sets
Test_Data<-M[k,]
Train_Data<-M[-k,]
# Split the features from response
x_train<-as.matrix(Train_Data[,-Response_Variable_location])
x_test<-as.matrix(Test_Data[,-Response_Variable_location])
y_train<-as.vector(unlist(Train_Data[,Response_Variable_location,drop=FALSE]))
y_test<-as.vector(unlist(Test_Data[,Response_Variable_location]))
#Creating alpha vector
A<-c()
if(argsL$regularisation=="L"){
print("The value of alpha is set to 1.0 (Lasso penalty)")
alphaslist <- c(1.0)
}else{
if(argsL$regularisation=="R"){
print("The value of alpha is set to 0.0 (Ridge penalty)")
alphaslist <- c(0.0)
}else{
alphaslist<-seq(0,1,by=as.numeric(argsL$alpha))
}
}
#Learning model on training data
if(argsL$regularisation=="E"){
if(argsL$fixedAlpha==-1){
if(is.null(argsL$constraint)){
elasticnet<-mclapply(alphaslist, function(x){cv.glmnet(x_train, y_train,alpha=x,nfolds=as.numeric(argsL$innerCV))}, mc.cores=argsL$cores)
}else{
if(argsL$constraint=="P"){
elasticnet<-mclapply(alphaslist, function(x){cv.glmnet(x_train, y_train,alpha=x,lower=0,nfolds=as.numeric(argsL$innerCV))}, mc.cores=argsL$cores)
}else{
if(argsL$constraint=="N"){
elasticnet<-mclapply(alphaslist, function(x){cv.glmnet(x_train, y_train,alpha=x,upper=0,nfolds=as.numeric(argsL$innerCV))}, mc.cores=argsL$cores)
}
}
}
}else{
x=argsL$fixedAlpha
if(is.null(argsL$constraint)){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="P"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,lower=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="N"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,upper=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}
}
}
}
}else{
x=alphaslist[1]
if(is.null(argsL$constraint)){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="P"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,lower=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}else{
if(argsL$constraint=="N"){
elasticnet<-cv.glmnet(x_train, y_train,alpha=x,upper=0,nfolds=as.numeric(argsL$innerCV),parallel=TRUE)
}
}
}
}
if(length(elasticnet[[1]]) > 1){
if (argsL$regularisation=="E"){
if(argsL$fixedAlpha==-1){
for (j in 1:length(alphaslist)) {
A[j]<-min(elasticnet[[j]]$cvm)
}
#Determine best alpha value from training data
index<-which(A==min(A), arr.ind=TRUE)
model<-elasticnet[[index]]
}
}else{
model<-elasticnet
}
}
if (length(elasticnet[[1]]) > 1){
#Determine error of the best alpha model on hold out data and on training data
predict_fit<-predict(model, x_test, s="lambda.min")
predict_fit_train<-predict(model, x_train, s="lambda.min")
coefficients[[i]][[k]]<-coef(model, s = "lambda.min")
pearson_correlation[[i]][k,1]<-y_test
pearson_correlation[[i]][k,2]<-predict_fit
spearman_correlation[[i]][k,1]<-y_test
spearman_correlation[[i]][k,2]<-predict_fit
test_error[[i]][k]<-(y_test-predict_fit)^2
}else{
coefficients[[i]][k]<-c()
pearson_correlation[[i]][k]<-0.0
spearman_correlation[[i]][k]<-0.0
test_error[[i]][k]<-1.0
validSamples[i]<-FALSE
}
}
}
}
#Learning the model once on the full data set
if (! is.null(argsL$seed)){
set.seed(as.numeric(argsL$seed))
}
print(paste0("Learning OLS model on reduced feature space for sample ",i))
#Determine nonzero model coefficients
modelCoefMatrix<-c()
for (j in 1:length(coefficients[[i]])){
if (length(coefficients[[i]][[j]]>1)){
modelCoefMatrix<-rbind(modelCoefMatrix,coefficients[[i]][[j]][,1])
}
}
if (length(modelCoefMatrix) != 0){
medianModelCoefMatrix<-apply(modelCoefMatrix,2,median)[-1]
nObs<-dim(M)[1]
# Partition data into test and training data sets
if (length(which(medianModelCoefMatrix!=0))){
if (length(which(medianModelCoefMatrix!=0))>=nObs){
ols_Data<-M[,c(order(abs(medianModelCoefMatrix),decreasing=T)[1:(nObs-2)],Response_Variable_location)]
}else{
ols_Data<-M[,c(which(medianModelCoefMatrix!=0),Response_Variable_location)]
}
model<-lm(Expression~.,ols_Data)
model.coefs<-summary(model)$coefficients[,c(1,4)]
signif.coefs<-which(model.coefs[,2]<=as.numeric(argsL$coefP))
model.coefs.signif<-model.coefs[signif.coefs,]
if (length(signif.coefs > 0)){
for (j in 1:length(row.names(model.coefs.signif))){
row.names(model.coefs.signif)[j]<-gsub(".","\t",row.names(model.coefs.signif)[j],fixed=T)
}
if (length(signif.coefs)>1){
write.table(model.coefs.signif,file=paste0(argsL$outDir,"Selected_Regions_",unlist(unlist(strsplit(Sample,".txt"))),".bed"),quote=F,row.names=T,col.names=F,sep="\t")
}else{
cat(paste0(gsub(".","\t",row.names(model.coefs)[signif.coefs],fixed=T),"\t",model.coefs.signif[1],"\t",model.coefs.signif[2],"\n"),file=paste0(argsL$outDir,"Selected_Regions_",unlist(unlist(strsplit(Sample,".txt"))),".bed"))
}
}
}
}
}
###############################
###Writing model performance###
###############################
if (argsL$performance == TRUE){
if (argsL$leaveOneOutCV == FALSE){
for (i in 1:length(FileList)){
if (validSamples[i]==FALSE){
next;
}
cm<-mean(unlist(pearson_correlation[[i]]),na.rm=TRUE)
csd<-var(unlist(pearson_correlation[[i]]),na.rm=TRUE)
cms<-mean(unlist(spearman_correlation[[i]]),na.rm=TRUE)
csds<-var(unlist(spearman_correlation[[i]]),na.rm=TRUE)
erm<-mean(unlist(test_error[[i]]),na.rm=TRUE)
ersd<-var(unlist(test_error[[i]]),na.rm=TRUE)
Sample_View[[i]]<-data.frame(Sample_Name=FileList[i],Pearson=cm,PearsonVar=csd,Spearman=cms,SpearmanVar=csds,MSE=erm,MSEVar=ersd,pVal=spearmanPassed[i],qVal=p.adjust(spearmanPassed,method="BY")[i])
}
}else{
for (i in 1:length(FileList)){
if (validSamples[i]==FALSE){
next;
}
cm<-cor(unlist(pearson_correlation[[i]][,1]),unlist(pearson_correlation[[i]][,2]))
csd<-0.0
cms<-cor(unlist(spearman_correlation[[i]][,1]),unlist(spearman_correlation[[i]][,2]),method="spearman")
csds<-0.0
erm<-mean(unlist(test_error[[i]]),na.rm=TRUE)
ersd<-var(unlist(test_error[[i]]),na.rm=TRUE)
Sample_View[[i]]<-data.frame(Sample_Name=FileList[i],Pearson=cm,PearsonVar=csd,Spearman=cms,SpearmanVar=csds,MSE=erm,MSEVar=ersd)
write.table(cbind(pearson_correlation[[i]][,1],pearson_correlation[[i]][,2]),paste0(argsL$outDir,"Leave_One_Out_Predicitions_",FileList[i]),quote=FALSE,sep="\t",row.names=F)
}
}
Sample_ViewF<-do.call("rbind",Sample_View)
if (argsL$asRData==TRUE){
save(coefficients,file=paste(argsL$outDir,"Coefficients.RData",sep=""))
}
write.table(Sample_ViewF,paste(argsL$outDir,"Performance_Overview.txt",sep=""),quote=FALSE,sep="\t",row.names=F)
}