This commit is contained in:
lingyu zeng
2024-09-18 15:11:00 +08:00
parent ded062a855
commit 82d60391bf
3 changed files with 7454 additions and 5 deletions

View File

@@ -173,7 +173,7 @@ ENV DOWNLOAD_MINICONDA="False"
# install ambertools
RUN <<EOT
#!/bin/bash
python3 -m pip install https://blog.csdn.net/GHZ2443063059/article/details/141103550
python3 -m pip install numpy scipy matplotlib
# 解压 Amber24
tar -xjf Amber24.tar.bz2
# 解压 AmberTools24

7449
script/S112D-Alphafold2.pdb Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -8,7 +8,7 @@
if [ -n "$GMXRC_PATH" ]; then
source "$GMXRC_PATH" # source /home/lingyuzeng/software/gmx2023.2/bin/GMXRC
fi
NAME=${NAME:-"5sws_fixer"}
NAME=${NAME:-"S112D-Alphafold2"}
# FORCEFIELD=${FORCEFIELD:-"amber99sb-ildn"}
FORCEFIELD=${FORCEFIELD:-"amber99sb"}
WATERMODEL=${WATERMODEL:-"tip3p"}
@@ -138,7 +138,7 @@ fourierspacing = 0.16 ; grid spacing for FFT
tcoupl = V-rescale ; modified Berendsen thermostat
tc-grps = Protein Non-Protein ; two coupling groups - more accurate
tau_t = 0.1 0.1 ; time constant, in ps
ref_t = 300 300 ; reference temperature, one for each group, in K
ref_t = 310 310 ; reference temperature, one for each group, in K
; Pressure coupling is off
pcoupl = no ; no pressure coupling in NVT
; Periodic boundary conditions
@@ -243,7 +243,7 @@ fourierspacing = 0.16 ; grid spacing for FFT
tcoupl = V-rescale ; modified Berendsen thermostat
tc-grps = Protein Non-Protein ; two coupling groups - more accurate
tau_t = 0.1 0.1 ; time constant, in ps
ref_t = 300 300 ; reference temperature, one for each group, in K
ref_t = 310 310 ; reference temperature, one for each group, in K
; Pressure coupling is on
pcoupl = Parrinello-Rahman ; Pressure coupling on in NPT
pcoupltype = isotropic ; uniform scaling of box vectors
@@ -262,7 +262,7 @@ EOF
gmx_mpi grompp -f ${MDRUN_NAME}.mdp -c npt.gro -t npt.cpt -p topol.top -o ${TPR_FILE}
# Run the simulation
gmx_mpi mdrun -deffnm ${MDRUN_NAME}
gmx_mpi mdrun -deffnm ${MDRUN_NAME} -update gpu -ntomp 1
# extra ndx file , select protein
echo -e "1\nq" | gmx_mpi make_ndx -f ${MDRUN_NAME}.gro -o ${NDX_FILE}