Newer
Older
“kpepper”
committed
#!/bin/bash
##################################################
# Script that can be used to set up specific #
# environment variables for Artemis and related #
# applications. #
# Uncomment as required and either run from your #
# shell .profile or copy and paste the variables #
# directly into your shell profile. #
“kpepper”
committed
# #
##################################################
#
# Set the location of a specific JRE to use
# for all Artemis related applications.
#
#export ARTEMIS_JAVA_JRE=
#
# Set specific java JVM flags for memory management etc.
#
#export ARTEMIS_JVM_FLAGS=
#
# Chado database connectivity.
#
#export PGHOST=
#export PGPORT=
#export PGDATABASE=
#export PGUSER=
########### Variables for locally installed Blast databases ##############
#
# Use the following path setting to specify
# where blast+ and fasta executables can be found.
# Change as required.
#
#export PATH=/usr/local/ncbi/blast/bin/:/usr/local/fasta/bin/:$PATH
“kpepper”
committed
#
# Specify locally installed Blast databases.
# [See NCBI Blast+ documentation]
“kpepper”
committed
# e.g. /data/blastdb/Supported/UNIPROT/current:/data/blastdb/Supported/EMBL/current/con etc
#
#export BLASTDB=
#
# Fasta36 FASTLIBS environment variable.
# [See Fasta documentation]
# Specifies location of library choice file.
#
#export FASTLIBS=
“kpepper”
committed