File: RunTest.sh

package info (click to toggle)
cpptraj 5.1.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 138,900 kB
  • sloc: cpp: 145,621; ansic: 34,635; sh: 11,365; f90: 971; makefile: 770; awk: 242
file content (52 lines) | stat: -rwxr-xr-x 1,050 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash

# Test some cpptraj actions in parallel

. ../MasterTest.sh

CleanFiles para.in d1-12.dat a1-6-12.dat phi2.dat rmsd.dat avg.rst7 offset.dat test.nc

TESTNAME='Parallel tests'
Requires netcdf
INPUT="-i para.in"

Test1() {
  cat > para.in <<EOF
parm ../tz2.parm7
trajin ../tz2.nc
distance D1-12 :1 :12 out d1-12.dat
angle A1-6-12 :1 :6 :12 out a1-6-12.dat
dihedral Phi2 :1@C :2@N :2@CA :2@C out phi2.dat
rms first @CA out rmsd.dat
average avg.rst7
EOF
  RunCpptraj "Parallel tests."
  DoTest d1-12.dat.save d1-12.dat
  DoTest a1-6-12.dat.save a1-6-12.dat
  DoTest phi2.dat.save phi2.dat
  DoTest rmsd.dat.save rmsd.dat
  DoTest avg.rst7.save avg.rst7
}

Test2() {
  UNITNAME='Parallel test with trajectory offset'
  CheckFor pnetcdf maxthreads 22
  if [ $? -eq 0 ] ; then
    cat > para.in <<EOF
noprogress
parm ../tz2.parm7
trajin ../tz2.nc 3 90 4
distance D1-12 :1 :12 out offset.dat
trajout test.nc
EOF
    RunCpptraj "$UNITNAME"
    DoTest offset.dat.save offset.dat
    NcTest test.nc.save test.nc
  fi
}

Test1
Test2

EndTest
exit 0