-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
45 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include ../../scripts/test.make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
type=driver | ||
mpiprocs=2 | ||
arg="--plumed plumed.dat --trajectory-stride 10 --timestep 0.005 --ixyz ala12_trajectory.xyz --dump-forces forces --dump-forces-fmt=%10.6f --debug-dd yes" | ||
extra_files=" | ||
../rt32b/colvar.reference | ||
../rt32b/helix.pdb | ||
../rt32b/test.gro.reference | ||
../rt32b/test1.gro.reference | ||
../rt32b/test2.gro.reference | ||
../rt32b/test3.gro.reference | ||
../rt32b/test4.gro.reference | ||
../rt32b/test5.gro.reference | ||
../rt32b/ala12_trajectory.xyz | ||
../rt32b/plumed.dat | ||
" | ||
|
||
|
||
function plumed_custom_skip() { | ||
if test -n "$PLUMED_PYTHON_SELECT" ; then | ||
export PLUMED_PYTHON_BIN="$PLUMED_PYTHON_SELECT" | ||
return 1 | ||
fi | ||
for python_bin in python3 python3.12 python3.11 python3.10 python3.9 python3.8 python3.7 python ; do | ||
if $python_bin -c "import MDAnalysis; import mdtraj" 2>/dev/null ; then | ||
if [ $python_bin != python ] ; then | ||
export PLUMED_PYTHON_BIN=$python_bin | ||
fi | ||
return 1 | ||
fi | ||
done | ||
return 0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters