#!/bin/tcsh

#------------------------------------------------------------
#sets up tcsh wrapper for qsub to work with ksh scripts

#Should only be called through launch_qsub
#syntax: grid_engine_wrapper script 
#------------------------------------------------------------ 
set script = $1

if ( -e ~/.cshrc ) then
	source ~/.cshrc
endif
unset noclobber
unalias rm

$script $2 $3 $4 $5 $6 $7 $8 $9
exit


