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
|
#
# Environment variables used for SGE alignment jobs
#
#
# Email address to notify upon job completion
#
SGE_STATUS_MAILTO=
#
# Memory size for SGE
#
SGE_MEMORY=4g
#
# JVM flags (memory should match SGE_MEMORY)
#
SGE_JVM_FLAGS=-Xmx4g
#
# Aligner
#
ALIGNER=bwa
#
# Full path to native aligner executable directory
#
BWA_ALIGNER_PATH=
LAST_ALIGNER_PATH=
LASTAG_ALIGNER_PATH=
#
# Colorspace option (comment out or leave blank if not using colorspace)
#
#COLORSPACE=--color-space
COLORSPACE=
#
# Full path to the reads file
#
READS=
#
# Full path to reference file in compact format
#
REFERENCE=
#
# Full path to the index directory (i.e., reference cache)
#
REFERENCE_INDEX_DIRECTORY=
#
# 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
|