You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/hpc/06_tools_and_software/03_modules.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,3 +17,21 @@ Below is a list of modules and their associated functions:
17
17
| module avail | check what software packages are available |
18
18
| module help `<module-name>`| A module file may include more detailed help for the software package |
19
19
20
+
21
+
## Bioinformatics modules
22
+
Common bioinformatics packages are made available via wrapper scripts that can be loaded as modules. Users can then invoke individual programs through that wrapper.
23
+
```bash
24
+
/share/apps/bioinformatics/20260224/run-bioinformatics.bash which samtools
25
+
/ext3/mamba/envs/bioinformatics/bin/samtools
26
+
27
+
/share/apps/bioinformatics/20260224/run-bioinformatics.bash which vcftools
28
+
/ext3/mamba/envs/bioinformatics/bin/vcftools
29
+
```
30
+
31
+
Alternatively, load the module to get these tools on your `$PATH`. This approach keeps the user experience consistent while allowing us to manage the underlying environments through containers.
32
+
33
+
You can list the packages available within each bioinformatics stack by running:
34
+
```bash
35
+
/share/apps/bioinformatics/20260224/bin/run-bioinformatics micromamba list
36
+
```
37
+
It will print a list of packages within that `micromamba` environment.
0 commit comments