-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathraxml.pbs
More file actions
23 lines (17 loc) · 829 Bytes
/
raxml.pbs
File metadata and controls
23 lines (17 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash
## Introductory Example for running RAxML
## Copyright (c) 2015 The Center for Advanced Research Computing
## at The University of New Mexico
#PBS -lnodes=1:ppn=8
#PBS -lwalltime=24:00:00
# Load the environment modules system
source /etc/profile.d/modules.sh
# Load the RaxML software to access the executable "raxmlHPC-HYBRID"
module load raxml/8.1.17/openmpi/1.8.4/intel/15.0.1
# Determine the total number of processors allocated to this job
export PROCS=$(cat $PBS_NODEFILE | wc -l)
# Determine Core/ node
export CORES=$(grep "processor" /proc/cpuinfo | wc -l)
# Now run it!
# Modify the following line for your particular job:
mpirun -np $PROCS -machinefile $PBS_NODEFILE raxmlHPC-HYBRID -T $CORES -f a -x 12345 -p 12345 -# 50 -m GTRGAMMA -s ASIP_phasedOG.fas -n outputfile.out