Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
VIGNET Pierre
cadbiom
Commits
a2e89795
Commit
a2e89795
authored
Dec 03, 2016
by
VIGNET Pierre
Browse files
Remove useless file
parent
aa24172b
Changes
1
Hide whitespace changes
Inline
Side-by-side
mac.sh
deleted
100644 → 0
View file @
aa24172b
#! /bin/bash
#$ -S /bin/bash
#$ -m bea
# . /local/env/envpython-2.7.sh
# export PYTHONPATH=~/cadbiom/:~/cadbiom/solver/
# model info
model_folder
=
"bio_models/"
model_name
=
"mini_test_publi"
model_ext
=
".bcx"
model
=
"
$model_folder$model_name$model_ext
"
# results info
result_folder
=
"result/"
p_ext
=
"_P"
result_ext
=
"_cam.txt"
step_ext
=
"_cam_step.txt"
complete_ext
=
"_cam_complete.txt"
# Delete previous results
camF
=
"
$result_folder$model_name$p_ext$result_ext
"
if
[
-f
$camF
]
then
rm
$camF
fi
stepF
=
"
$result_folder$model_name$p_ext$step_ext
"
if
[
-f
$stepF
]
then
rm
$stepF
fi
completeF
=
"
$result_folder$model_name$p_ext$complete_ext
"
if
[
-f
$completeF
]
then
rm
$completeF
fi
# Parameters
inv_p
=
"n"
start_p
=
"n"
p
=
"P"
step
=
"10"
# MAC research
tt
=
0
while
[
$tt
-eq
0
]
;
do
python
"script_mac.py"
$model
$camF
"
$inv_p
"
"
$start_p
"
"
$p
"
$step
tt
=
$?
echo
$tt
echo
""
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment