File: RunTest.sh

package info (click to toggle)
cpptraj 5.1.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 138,900 kB
  • sloc: cpp: 145,621; ansic: 34,635; sh: 11,365; f90: 971; makefile: 770; awk: 242
file content (29 lines) | stat: -rwxr-xr-x 527 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
#!/bin/bash

. ../MasterTest.sh

CleanFiles lowest.in lowest.dat All.agr

INPUT="-i lowest.in"

Test1() {
cat > lowest.in <<EOF
parm ../tz2.parm7
trajin ../tz2.nc
rms myrmsd @CA
lowestcurve points 10 myrmsd out lowest.dat
EOF
RunCpptraj "LowestCurve test"
}

cat > lowest.in <<EOF
readdata esurf_vs_rmsd.dat.txt index 1 name MyData
list dataset
runanalysis lowestcurve MyData points 10 step 0.2 name Lowest
writedata All.agr MyData Lowest xprec 8.5
EOF
RunCpptraj "LowestCurve test"
DoTest All.agr.save All.agr

EndTest
exit 0