|
|
File "/opt/amber16/lib/python2.7/site-packages/MMPBSA_mods/calculation.py", line 157, in run self.prmtop))
CalcError: /opt/amber16/bin/sander failed with prmtop ../../0sys/nw-wt-phe.prmtop!
Error occured on rank 0.
Exiting. All files have been retained.
nw-wt-phe.prmtop是去溶剂的复合体top文件,
计算mmpbsa可以,但计算gbsa就出现问题
gbsa.in 文件
input file for running PB and GB
&general
endframe=1000, interval=5, verbose=1,
receptor_mask=:1-680, ligand_mask=:PEA,
strip_mask=":WAT:Na+",
/
&gb
igb=5, saltcon=0.100,
/
#&pb
# istrng=0.100,
#/
&decomp
idecomp=2, print_res="1-681",
dec_verbose=2,
/
gbsa.pbs文件
#!/bin/bash
#PBS -S /bin/bash
#PBS -N wt-phe
#PBS -V
#PBS -j oe
#PBS -q batch
#PBS -l nodes=1:ppn=4
#
cd ~/myosin5/myosin/wt-phe/8analsy/2gbsa
NP=`cat $PBS_NODEFILE|wc -l`
export CUDA_VISIBLE_DEVICES=0,1,2,3
mpirun -np $NP -machinefile $PBS_NODEFILE MMPBSA.py.MPI -O -i dep.in -sp ../../0sys/wt-phe.prmtop -cp ../../0sys/23-nw-wt-phe.prmtop -rp ../../0sys/nw-wt-nphe.prmtop -lp ../../0sys/phe.prmtop -y ../../5prod/cenprod/30-50/cenpro*.mdcrd
exit
请大神指教,谢谢
|
|