Installing Software
Using the BioGrids Environment
Getting Help
Support for Site Administrators
Hardware Support Notes
The BioGrids software collection can be found installed at /programs. All software in the BioGrids collection is run from the the command line in a terminal. Do set up the shell environment the terminal to run the programs, you will need to initialize the BioGrids environment.
Bash users should initialize the BioGrids environment using :
source /programs/biogrids.shrc
Tcsh users should initialize the BioGrids environment with :
source /programs/biogrids.cshrc
On initialization, you should see the BioGrids welcome message
To setup your terminal to automatically load the BioGrids environment, add the following to your configuration file:
For Bash, in ~/.bashrc, add :
if [ -f /programs/biogrids.shrc ] ; then
source /programs/biogrids.cshrc
fi
For tcsh, in ~/.tcshrc or ~/.cshrc, add :
if ( -e /programs/biogrids.cshrc) then
source /programs/biogrids.cshrc
endif
If you would prefer to load the BioGrids environment on demand and not have to type the command above, you can set an alias to a shorter command of your choosing.
For example, for bash in ~/.bashrc :
alias sbg='source /programs/biogrids.shrc'
For tcsh in ~/.tcshrc, this would be
alias sbg 'source /programs/biogrids.cshrc'
Questions or problems? Please email bugs@biogrids.org
This version of the page was edited by James Vincent at 2021-10-12 11:06:29. View the most recent version.