-
Notifications
You must be signed in to change notification settings - Fork 1
/
run_em_all.bat
47 lines (40 loc) · 1.41 KB
/
run_em_all.bat
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
@echo off
call C:\ProgramData\Anaconda3\Scripts\activate.bat
call :start
:start
echo --------------------------------------------------------
echo ".....Running Complete Analysis and plotting Tool......"
echo --------------------------------------------------------
echo This script will create all the plots in buffer scripts from its actual text files
echo To successfully running this follow below guidelines
echo Step 1: Put run_em_all.py and batch script in the same folder as the text files
echo Step 2: Run run_em_all and choose 1 to run it
echo choose 0 to exit and report any error to akiitr at git hub
echo --------------------------------------------------------
echo Enter 1: for running run_em_all_buf
echo Enter 2: for running run_em_all_inv
echo Enter 3: for running run_em_all_inv_trail
echo Enter 0: for Exitting.
echo --------------------------------------------------------
SET /P choice="Enter your choice as stated above: "
2>nul call :case_%choice%
if errorlevel 1 call :default #for unidentified input
:case_1
echo "You have choosen run_em_all_buf.py starting...."
python run_em_all_buf.py
call :start
:case_2
echo "You have choosen run_em_all_inv.py starting...."
python run_em_all_inv.py
call :start
:case_3
echo "You have choosen run_em_all_inv_trial.py starting...."
python run_em_all_inv_trial.py
call :start
:default
echo Unknown entry "%choice%"
call :start
:case_0
echo "Exitting now......."
pause
exit