Mercurial > repos > marpiech > norwich_tools_docking2
diff tools/rdock/bin/make_grid.csh @ 1:30e2440b2173 draft
planemo upload
author | marpiech |
---|---|
date | Mon, 29 Aug 2016 08:38:19 -0400 (2016-08-29) |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tools/rdock/bin/make_grid.csh Mon Aug 29 08:38:19 2016 -0400 @@ -0,0 +1,11 @@ +#!/bin/csh -f +# Creates vdW grids for all receptor prm files listed on command line +# +set gridstep = 0.3 +set border = 1.0 + +foreach grid ('vdw1' 'vdw5') + foreach file ($argv) + $RBT_ROOT/bin/rbcalcgrid -r${file} -pcalcgrid_${grid}.prm -o_${grid}.grd -g${gridstep} -b${border} + end +end