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 (25 lines) | stat: -rwxr-xr-x 453 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
24
25
#!/bin/bash

. ../MasterTest.sh

# Clean
CleanFiles solvent.in closest10.mol2

INPUT="-i solvent.in"
TESTNAME='Solvent test'
Requires maxthreads 1

# Mark methanol as solvent and use closest command 
cat > solvent.in <<EOF
parm AlaDipeptide.MEOH.parm7
solvent :MOH
trajin AlaDipeptide.MEOH.rst7
closest 10 !:MOH noimage
trajout closest10.mol2
EOF
RunCpptraj "Test solvent command with closest"
DoTest closest10.mol2.save closest10.mol2

EndTest

exit 0