blob: 67ae66cd0f845be9671ac1a2cddc5025019a3e11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/octave -qf
source("./run_scripts/path_cd.m")
arg_list = argv();
filename=strcat(arg_list{1},"ts_output.txt");
delete(filename);
filename=strcat(arg_list{1},"ts_plotly.html");
delete(filename);
testSetPredictions(arg_list{1});
#fclose(filename);
filename=strcat(arg_list{1},"ts_upload.txt");
delete(filename);
command=cstrcat("/var/www/html/compbio/BNW_1.3/bnw-env/bin/python3 ",base_dir,"/ts_plotly.py ",arg_list{1});
test=system(command);
|