Mercurial > repos > siwaa > gama
comparison src/cmd_python_client.sh @ 0:f895e266b37a draft
planemo upload for repository https://forgemia.inra.fr/nathalie.rousse/use/-/tree/gama/GAMA/galaxy-tools commit 67d85c013c62c16392b4796af86836b1334f2eef
author | siwaa |
---|---|
date | Tue, 04 Jun 2024 15:18:01 +0000 |
parents | |
children | 13a692e5a445 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f895e266b37a |
---|---|
1 #!/bin/bash | |
2 | |
3 # Launch Python program MY_sequential_example.py | |
4 | |
5 VALUE_nb_preys_init=$1 | |
6 VALUE_nb_predators_init=$2 | |
7 VALUE_nb_more_steps=$3 | |
8 | |
9 python3 MY_sequential_example.py -nb_preys_init $VALUE_nb_preys_init -nb_predators_init $VALUE_nb_predators_init -nb_more_steps $VALUE_nb_more_steps | |
10 |