...
Some tool "suites" that have many sub-program binaries, are not made available on the standard PATH. The /stor/system/opt directory on your system contains installation directories for these tools, which can be added to your PATH as needed. Examples include multiple versions of the sratoolkit and the picard-tools suites. E.g.:
Code Block | ||
---|---|---|
| ||
export PATH="/stor/system/opt/sratoolkit.2.8.2-ubuntu64/bin:$PATH" |
Programs in /mnt/bioi/tools
All compute servers have a shared, read-only /mnt/bioi directory mounted that contains many useful bioinformatics resources such as annotations and other references in /mnt/bioi/ref_genome and external data in /mnt/bio/data).T
he Specifically, the /mnt/bioi/tools direcotyr directory contains several tool suites and their associated data (e.g. cellranger, GSEA), and each tool suite directory has multiple tool version sub-directories. Like the suites in /stor/system/opt, the associated binaries are not on your PATH by default, but can be added as needed, e.g.:
Code Block | ||
---|---|---|
| ||
export PATH="/mnt/bioi/tools/cellranger/8.0.0/bin":$PATH
export PATH="/mnt/bioi/tools/UCSC_utils/2023_08:$PATH" |
Multiple software versions
...