Page MenuHomec4science

pipeline.run
No OneTemporary

File Metadata

Created
Mon, Jul 29, 10:32

pipeline.run

#!/bin/bash
#SBATCH -p debug
#SBATCH --workdir /home/aymanns/motion-correction-paper
#SBATCH --nodes 1
#SBATCH --ntasks 1
#SBATCH --cpus-per-task 1
#SBATCH --mem 128000
#SBATCH --time 01:00:00
module load matlab
module load jdk
module load gcc
module load openblas/0.2.19-openmp
echo STARTING at `date`
/home/aymanns/Fiji.app/ImageJ-linux64 --ij2 --headless --console --run /home/aymanns/motion-correction-paper/preprocessing.py 'parameter_file="files_2_170608_fly1_007.json"'
echo FINISHED preprocessing at `date`
filename="files_2_170608_fly1_007.json"
# filename="files_4_170609_fly1_001.json"
# gs=""
# ls=""
# for g in 0 10 100
# do
# for l in 5000 # 1000 5000 10000
# do
# # matlab -nodesktop -nodisplay -r "test('$filename',$l,$g);"
# command="${command}test('$filename',$l,$g);clear all;"
# gs="$gs $g"
# ls="$ls $l"
# done
# done
# command="test('$filename',[1000,5000,10000],[0,10,100])"
command="test('$filename',[10000],[0, 10, 100])"
matlab -nodesktop -nodisplay -r "$command"
echo FINISHED Matlab at `date`
for g in $gs
do
for l in $ls
do
/home/aymanns/Fiji.app/ImageJ-linux64 --ij2 --headless --console --run /home/aymanns/motion-correction-paper/fiji_script_vertical_combination.py 'parameter_file="files_2_170608_fly1_007.json", lmbd='$l", gamma="$g
done
done
echo FINISHED Fiji at `date`

Event Timeline