blob: d7605671ac66956ab54863f3a65a910aa12e1594 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/octave -qf
source("./run_scripts/path_cd.m");
arg_list = argv();
command(cstrcat("/var/www/html/compbio/BNW_1.3/bnw-env/bin/python3 ",base_dir,"violin.py ",arg_list{1});
test=system(command);
#command=strcat({"/home/jziebart/python/Python-2.7.15/python ../violin_plotly.py "},arg_list{1});
#test=system(command);
#command=strcat({"/home/jziebart/python/Python-2.7.15/python ../violin_ev_plotly.py "},arg_list{1});
#test=system(command);
#command=strcat({"/home/jziebart/python/Python-2.7.15/python ../violin_int_plotly.py "},arg_list{1});
#test=system(command);
|