multipleRuns.sh 584 Bytes
Newer Older
1
2
3
4
5
6
7
8
#!/bin/bash

# Creates a directory with all possible and valid combinations of configuration files
#   that can be created from a given complex configuration file.
# Parameter 1: Complex configuration file name.
# Parameter 2: Common output name of the output configuration files. It will be appended an index to each of them.
#====== Do not modify these values =======

9
10
scriptDir="$(dirname "$0")"
source $scriptDir/../Codes/build/config.txt
11
12
13
14

complex_file=$1
output_name=$2

15
python3 $PROTEO_HOME$execDir/PythonCodes/read_multiple.py $complex_file $output_name
16

17
echo "END GENERATION"