Do not run your job interactively (unless you want Karol to hate you).
You have to use a script (say runme.csh) that contains all the instructions to run the program on their cluster, and to transfer the files back and forth between the ABCC machine you connect to (e.g., nciiris.ncifcrf.gov) and the node of the cluster on which you job is running (which you find out by typing qstat -ans).
A typical ``runme.csh'' script, that you submit to the queue using qsub runme.csh, looks like this:
#PBS -S /bin/csh
#PBS -N job_name
#PBS -l pcput=20:00:00,cput=20:00:20,pvmem=400mb,ncpus=2
rcp nciiris:your_input_files /usr/tmp/$user/.
source /usr/local/fbscapp/accelrys/cshrc
set CHARMM=/usr/local/fbscapp/accelrys/I2000.1/mpi6m3/charmm.exe
set input="stream=your_input_file"
cd /usr/tmp/$user/
mpirun -np 2 -cpr $CHARMM $input < stream.inp > your_output_file
rcp /usr/tmp/$user/your_output_files nciiris:/usr/tmp/$user
A few comments :
Xavier Siebert
2005-05-27