File: RunTest.sh

package info (click to toggle)
cpptraj 5.1.0%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 139,188 kB
  • sloc: cpp: 145,622; ansic: 34,635; sh: 11,365; f90: 971; makefile: 770; awk: 242
file content (23 lines) | stat: -rwxr-xr-x 378 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

. ../MasterTest.sh

CleanFiles splitcoords.in out.crd

TESTNAME='SplitCoords test'
Requires maxthreads 1

INPUT='-i splitcoords.in'
cat > splitcoords.in <<EOF
parm ../tz2.ortho.parm7
loadcrd ../tz2.ortho.rst7 name CRD

crdaction CRD strip !^2-11
splitcoords CRD name Split
crdout Split out.crd
EOF
RunCpptraj "$TESTNAME"
DoTest out.crd.save out.crd

EndTest
exit 0