-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvalAtomRepresentation.sh
More file actions
19 lines (17 loc) · 2.35 KB
/
EvalAtomRepresentation.sh
File metadata and controls
19 lines (17 loc) · 2.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
foo(){
NATOMS=$1
for SAMPLING in 2.0 3.0 4.0; do
echo D:/Software/FlexibleRefinement/x64/Release/ImageHandler.exe D:/EMD/9233/emd_9233_Scaled_1.5_masked.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_approximation.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_approximation.fsc
D:/Software/FlexibleRefinement/x64/Release/ImageHandler.exe D:/EMD/9233/emd_9233_Scaled_1.5_masked.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_approximation.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_approximation.fsc
#echo D:/Software/FlexibleRefinement/x64/Release/ImageHandler.exe D:/EMD/9233/emd_9233_Scaled_1.5_masked.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_round2_approximation.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_approximation_round2.fsc
#D:/Software/FlexibleRefinement/x64/Release/ImageHandler.exe D:/EMD/9233/emd_9233_Scaled_1.5_masked.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_round2_approximation.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_approximation_round2.fsc
#echo D:/Software/FlexibleRefinement/x64/Release/ImageHandler.exe D:/EMD/9233/emd_9233_Scaled_1.5_masked.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_round3_approximation.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_approximation_round3.fsc
#D:/Software/FlexibleRefinement/x64/Release/ImageHandler.exe D:/EMD/9233/emd_9233_Scaled_1.5_masked.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_round3_approximation.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_approximation_round3.fsc
#echo D:/Software/FlexibleRefinement/x64/Release/ImageHandler.exe D:/EMD/9233/emd_9233_Scaled_1.5_masked.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_round4_approximation.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_approximation_round4.fsc
#D:/Software/FlexibleRefinement/x64/Release/ImageHandler.exe D:/EMD/9233/emd_9233_Scaled_1.5_masked.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_round4_approximation.mrc D:/EMD/9233/AtomNumberSweep/output_N${NATOMS}k_OS${SAMPLING}_approximation_round4.fsc
done
sleep 1
}
for N in 100 200 400 600 800 1000; do
foo $N > D:/EMD/9233/AtomNumberSweep/${N}_eval.log &
done