Post date: Feb 9, 2012 1:03:38 PM
Methods from http://www.ks.uiuc.edu/Training/SumSchool/materials/lectures/6-3-Statistical-Mechanics-Proteins/1-ik_diffusion.pdf
Kelley says that the Lifson-Roig helix-coil theory
D. Lucent, C. D. Snow, C. E. Aitken, and V. S. Pande, “Non-Bulk-Like Solvent Behavior in the Ribosome Exit Tunnel,” PLoS Comput Biol, vol. 6, no. 10, p. e1000963, Oct. 2010.
Explains how to compute:
T. Jain and B. Jayaram, “An all atom energy based computational protocol for predicting binding affinities of protein-ligand complexes,” FEBS Letters, vol. 579, no. 29, pp. 6659-6666, Dicembre. 2005.
Compute binding affinity at +-1 kcal/mol from all atoms.
Time scales derived from Markov models are affected by the chosen lag time in two ways:
The above rules apply both to implied timescales (ITS) and mean first passage times (MFPT). The regime for quantitative deductions of timescales (TS) is therefore λ << lag << TS.
* Tentative explanation: one observes what's moving after a lag time τ, 2 τ, etc. If the flux across states does not double when doubling the lag time, it means that the state is still "sticky".
NTER has variants GLYP and PROP. ACE has variants ACED, ACP, ACPD.
On one machine only: create a directory (e.g. dir_name) and put initial files in it. Then go to the parent directory and...
svn import dir_name svn+ssh://yourname@tuo/home/svn/lab/papers/dir_name mv dir_name dir_name_old svn co svn+ssh://yourname@tuo/home/svn/lab/papers/dir_name dir_name
On all remaining machines: use the last line only.
Allow invokation of PLUMED from VMD.
source ~/shared/vmd-utils/vmd_plumed/plumed_proc.tcl set metric [ Plumed::plumed 1 { lig-> [resname LIG] lig<- POSITION LIST <lig> DIR Z } ]
Then, e.g.
multiplot -y $metric -plot
The first argument (1) is the number of CVs. Limitations: does not support PBC. Make sure you have a psf or prmtop loaded if using masses/charges.
ls *.dcd| xargs -i+ bash -c '(driver -dcd + -pdb filtered.pdb -plumed META_INP -ncv 3; mv COLVAR +.cv)' n=rama; awk '!/FIELDS/{print FILENAME $0}' *.$n > $n.all rm *.$n sort -k5,5 -g rama.all |less
$file --readpdb--> $pdb --loadsystem--+--> $id1 ---+--addgroup---> $gcom1 | | +--> $coor1 +--get_groups---> $glist1 $glist1 ---+---> center_of_mass --> { x y z } | $coor1 ----+
p+geom_point(aes(1:10,5:14,colour="Pippo"))+ geom_line(aes(4:10,4:10,colour="Pluto"))+ scale_colour_manual("Source",c("blue","red"))
http://gettinggeneticsdone.blogspot.com/2010/03/arrange-multiple-ggplot2-plots-in-same.html
Do this stuff in random order
export PYTHONPATH=~/python/lib/python2.5/site-packages/ mkdir -p ~/python//lib/python2.5/site-packages sh setuptools-0.6c11-py2.5.egg --prefix=~/python/ ~/python/bin/easy_install --prefix=~/python/
install epd, add epd to path
module add msmbuilder/svn cp -a /shared/lab/milestoning/msmbuilder2/msmbuilder $HOME src=$HOME/msmbuilder dest=/shared/lab/software/msmbuilder_linux-2.0-SVN cd $src LDFLAGS=-L/shared/lab/software/epd-7.1-2-rh5-x86_64/lib/ python setup.py build LDFLAGS=-L/shared/lab/software/epd-7.1-2-rh5-x86_64/lib/ python setup.py install --home=$dest # msmbuilder/msmbuilder/Scripts -> bin cp -a $src/Extras $dest chmod a+x $dest/Extras/InstallExtras.sh cp -a $src/Docs $dest cp -a $src/Tutorial $dest
convert wallpaper_test.png eps3:wal.eps
Works with input files of any format. The output size should be more or less the same as the input. Add -compress jpeg or -compress zip or -quality XX to force compression if necessary. See http://daicas.net/compressed-images-in-PS-PDF/article.html and http://www.imagemagick.org/script/command-line-options.php?ImageMagick=tbv38oqplsrps97q3p3ga5uus5#compress for details.
http://www.ks.uiuc.edu/Research/vmd/current/ug/node205.html: VMDNOCUDA and
http://developer.download.nvidia.com/compute/cuda/3_1/toolkit/docs/cudatoolkit_release_notes_linux.txt CUDA_VISIBLE_DEVICES
pbc set [pbc get -all] -all pbc wrap -center bb -centersel protein -compound res -all
Making portable videos is almost impossible. -qscale is because it seems to ignore -b (bitrate). The quality/size ends up being the same for all codecs (for what I'm concerned).
in=sh2p ffmpeg -y -i $in.%05d.ppm -vcodec mpeg2video -qscale 10 $in.mpg ffmpeg -y -i $in.%05d.ppm -vcodec msmpeg4v2 -qscale 10 $in.avi ffmpeg -y -i $in.%05d.ppm -vcodec libx264 -threads 0 -vpre ipod640 $in.mp4