comparison tools/rdock/bin/make_grid.csh @ 3:b02d74d22d05 draft default tip

planemo upload
author marpiech
date Mon, 29 Aug 2016 08:23:52 -0400
parents
children
comparison
equal deleted inserted replaced
2:bd50f811878f 3:b02d74d22d05
1 #!/bin/csh -f
2 # Creates vdW grids for all receptor prm files listed on command line
3 #
4 set gridstep = 0.3
5 set border = 1.0
6
7 foreach grid ('vdw1' 'vdw5')
8 foreach file ($argv)
9 $RBT_ROOT/bin/rbcalcgrid -r${file} -pcalcgrid_${grid}.prm -o_${grid}.grd -g${gridstep} -b${border}
10 end
11 end