1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
#
# Environment variables used for PBS alignment jobs
#
#
# "Master" node for PBS jobs
#
PBS_MASTER=chico
#
# PBS queue for submission (use "fat" on direwulf/redwulf)
#
PBS_QUEUE=normal
#
# Email address to notify upon job completion
#
PBS_STATUS_MAILTO=
#
# Memory size for PBS
#
PBS_MEMORY=4gb
#
# JVM flags (memory should match PBS_MEMORY)
#
JVM_FLAGS=-Xmx4g
#
# Aligner
#
ALIGNER=bwa
#
# Full path to native aligner executable
#
BWA_ALIGNER_EXEC=
LASTAG_ALIGNER_EXEC=
#
# Colorspace option (comment out or leave blank if not using colorspace)
#
#COLORSPACE=--color-space
COLORSPACE=
#
# Full path to reference file in compact format
#
REFERENCE=
#
# Full path to the index directory (i.e., reference cache)
#
REFERENCE_INDEX_DIRECTORY=
#
# Full path to the reads file
#
READS=
#
# Number of bytes to read per chunk
# If this is not set then the entire read is processed in a single job
#
CHUNK_SIZE=10000000
|