blob: 4fbc0b28045d24992364c027612bf970f03de178 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/octave -qf
source("./run_scripts/path_cd.m")
arg_list = argv();
filename=strcat(arg_list{1},"looCV.txt");
delete(filename);
filename=strcat(arg_list{1},"loo_plotly.html");
delete(filename);
filename=strcat(arg_list{1},"looCV_temp.txt");
fout_temp=fopen(filename,'w');
fprintf(fout_temp,arg_list{2});
fclose(fout_temp);
looCrossValid(arg_list{1},arg_list{2});
delete(filename);
command=cstrcat("/var/www/html/compbio/BNW_1.3/bnw-env/bin/python3 ",base_dir,"/cv_plotly.py ",arg_list{1});
test=system(command);
|