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
Replaced the original samtools example with bwa-mem2 because the most
recently updated samtools version contains multiple builds and does not
exist in the shpc registry yet. bwa-mem2 has a straightforward
installation
_Fig 3. Using `Shelley build samtools/1.21` to install a tool module._
122
+

123
+
124
+
</details>
125
+
126
+
Confirm the module was built succesfully:
127
+
128
+
```bash
129
+
module avail
130
+
```
131
+
132
+
<detailsmarkdown="1">
133
+
<summary>Example output</summary>
134
+
135
+

136
+
137
+
</details>
138
+
139
+
Load the module:
140
+
141
+
```bash
142
+
module load bwa-mem2
143
+
```
144
+
145
+
Finally, run `bwa-mem2`:
146
+
147
+
```bash
148
+
bwa-mem2 version
149
+
# 2.2.1
150
+
```
119
151
120
-
{% include callout.html type="tip" content="Use `Shelley search` when you know what you want to do but not the tool name. For example, `Shelley search 'variant calling'` returns tools relevant to that task." %}
152
+
{% include callout.html type="tip" content="Use `shelley search` when you know what you want to do but not the tool name. For example, `shelley search 'variant calling'` returns tools relevant to that task." %}
121
153
122
154
### Why Shelley over manual sHPC? {#why-shelley}
123
155
@@ -131,7 +163,7 @@ create and register a local registry, ensure it takes precedence, then run the i
131
163
With Shelley, regardless of whether the version is in the sHPC registry or not it handles the registry check, CVMFS path resolution, local entry creation, and the sHPC installation.
132
164
133
165
```bash
134
-
shelley build samtools/1.20
166
+
shelley build bwa-mem2/2.3
135
167
```
136
168
137
169
The result is identical: a working `module load` command,
0 commit comments