P-unit_model/run_cellwise_fitting.sh
2020-08-22 11:29:26 +02:00

7 lines
118 B
Bash
Executable File

for file in data/final/*; do
if [ -d "$file" ]; then
nice python3 run_Fitter.py --cell $file
fi
done