File: sge-align-env-template.sh

package info (click to toggle)
libgoby-java 3.3.1%2Bdfsg2-11
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 58,108 kB
  • sloc: java: 78,105; cpp: 5,011; xml: 3,170; python: 2,108; sh: 1,575; ansic: 277; makefile: 114
file content (58 lines) | stat: -rwxr-xr-x 824 bytes parent folder | download | duplicates (2)
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