External Links:
MAKER website
MAKER Tutorial
Both serial and parallel MAKER are installed on HPC systems. To use serial MAKER, you need to set up the MAKER environment first using the command
module load maker/2.31.10-serialTo use parallel MAKER, you need to set up the MAKER environment first using the command
module load makerBelow are two simple sample run scripts that demonstrate the uses MAKER, with the first one for serial MAKER and the second one for parallel MAKER:
#!/bin/csh #BSUB -n 1 #BSUB -W 120 #BSUB -o outLog.%J #BSUB -e errLog.%J module load maker/2.31.10-serial maker
#!/bin/csh #BSUB -n 16 #BSUB -W 120 #BSUB -o outLog.%J #BSUB -e errLog.%J module load maker mpirun makerYou need to replace <MAKER command> by your actual MAKER command.
In the scripts,
#BSUB -n <a number>indicates number of cores you request for running MAKER.
In the scripts,
#BSUB -W 120means that the time limit (Wall time) set for the job is 120 minutes. You need to change that to a number that you expect as the upper time limit for your job.
In the scripts,
#BSUB -o outLog.%J #BSUB -e errLog.%Jset the files that will contain standard output and standard errors, where "%J" will be the LSF job ID number when the files are finally generated. The error file may be empty if there are no errors at all in running your job.
Last modified: June 19 2020 11:03:52.