]> git.donarmstrong.com Git - biopieces.git/blob - bp_conf/bashrc
0a113aee592c30a3c4b1a7f8502d2a09e4f9dadc
[biopieces.git] / bp_conf / bashrc
1 ### >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
2
3 ### Stuff that enables Biopieces.
4
5 ### BP_DIR, BP_DATA, BP_TMP, and BP_LOG should all be set in ~/.bashrc
6 ### see http://code.google.com/p/biopieces/wiki/Installation
7
8 ### The below bin directory should hold biopiece executables - regardsles of programming language.
9
10 export BP_BIN="$BP_DIR/bp_bin"              # Directory with biopiece executables.
11
12 ### The following directories hold the biopiece libraries, modules, gems, etc - one per programming language.
13
14 export BP_PERL="$BP_DIR/code_perl"          # Direcotory with Perl code.
15 export BP_C="$BP_DIR/code_c"                # Direcotory with C code.
16 export BP_PYTHON="$BP_DIR/code_python"      # Direcotory with Pyton code.
17 export BP_RUBY="$BP_DIR/code_ruby"          # Direcotory with Ruby code.
18
19 ### Here we add the biopiece variable to the existing PATH.
20
21 export PATH="$PATH:$BP_BIN"
22
23 ### Here we add the Biopieces Perl modules to PERL5LIB.
24
25 export PERL5LIB="$PERL5LIB:$BP_PERL"
26
27 ### Here we add the Biopieces Ruby libraries to RUBYLIB.
28
29 export RUBYLIB="$RUBYLIB:$BP_RUBY"
30
31 ### >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
32
33
34 ### Martin A. Hansen, June 2008