-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathredrep.profile
More file actions
92 lines (63 loc) · 3.29 KB
/
redrep.profile
File metadata and controls
92 lines (63 loc) · 3.29 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
## Configuration for RedRep
## Change to match your system
###########################
### REQUIRED SETTINGS ###
###########################
# Location of RedRep installation. Main scripts (redrep-xxxx.pl) should be in a subdirectory named "bin",
# accessory scripts in a subdirectory named "bin/util", and libraries in a subdirectory named "lib".
REDREP_INSTALL=/home/redrep/RedRep_2.2/
# shared/network file system (NFS, lustre, etc)? 0=no, 1=yes. If running on a cluster leave at 1. If running on a stand-alone machine that never accesses external storage, may be set to 0. If in doubt, leave at 1.
SHARED_FS=1
##########################
### PERL -- REQUIRED ###
##########################
# PERL must be installed on the system and located or symlinked at /usr/bin/perl.
###########################
### OPTIONAL SETTINGS ###
###########################
# Must uncomment (remove leading #) to use
# Location where temporary and staged files should be placed. Can be overridden with --tmpdir option on RedRep programs.
# Defaults to environment variable $TMPDIR, $TEMP, or $TMP (in that order) if they exist. Otherwise assumes /tmp.
#REDREP_TMPDIR=/tmp
########################################################################################
### SETTINGS BELOW CAN BE USED TO SETUP DEPENDENDIES IF NOT ALREADY IN SYSTEM PATH. ###
########################################################################################
# Location of FASTQC
FASTQC_PATH=/usr/local/FastQC
# Location of cutadapt
CUTADAPT_PATH=/usr/local/cutadapt/bin
# Location of bwa
BWA_PATH=/usr/local/bwa
# Location of samtools
SAMTOOLS_PATH=/usr/local/samtools
# location of cd-hit
CDHIT_PATH=/usr/local/cd-hit-4.7/
# location of usearch
USEARCH_PATH=/usr/local/usearch/
# location of GATK (v4 or higher)
GATK_PATH=/usr/local/GATK/
####################################################################################
### DEPRECATED SETTINGS -- RETAINED FOR COMPATIBILITY WITH OLDER RELEASES ONLY ###
####################################################################################
# DEPRECATED Location of picard-tools jarfile (jarfile name should be included)
#PICARD_JAR_PATH=/usr/local/picard-tools/picard.jar
# DEPRECATED Location of GATK jarfile (jarfile name should be included)
#GATK_JAR_PATH=/usr/local/GATK3/GenomeAnalysisTK.jar
# Location of picard-tools jarfile directory (DEPRECATED in ver 2.1, only set with version 2.0 and previous)
#PICARD_DIR_PATH=
######################################################
######################################################
### NO CHANGES SHOULD BE NEEDED BELOW THIS POINT ###
######################################################
######################################################
export REDREPBIN=${REDREP_INSTALL}/bin
export REDREPLIB=${REDREP_INSTALL}/lib
export REDREPUTIL=${REDREP_INSTALL}/util
export REDREP_TMPDIR
# ${REDREPUTIL}/check_perl_dependencies.pl
export PATH=${REDREPBIN}:${FASTQC_PATH}:${CUTADAPT_PATH}:${BWA_PATH}:${SAMTOOLS_PATH}:${CDHIT_PATH}:${USEARCH_PATH}:${GATK_PATH}:${PATH}
#export PICARDJAR=${PICARD_JAR_PATH}
#export PICARDJARS=${PICARD_DIR_PATH}
#export GATKJAR=${GATK_JAR_PATH}
# Set at 1 if files may be stored on a shared file system (NFS, lustre, and others). Prevents issues with GATK database commands.
export TILEDB_DISABLE_FILE_LOCKING=${SHARED_FS}