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: README.md
+39-5Lines changed: 39 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,27 +21,30 @@ These containerized versions offer:
21
21
22
22
### DIA-NN Containers
23
23
24
-
quantms team do not distribute the DIANN containers for versions superior to 1.8.0. The user has to build the container locally using the following command:
24
+
**Important**: Due to licensing restrictions, DiaNN containers are not publicly distributed. Users must build these containers locally:
25
25
26
26
```bash
27
+
# Build Docker container
28
+
cd diann-2.1.0/
27
29
docker build -t diann:2.1.0 .
28
-
```
29
-
30
-
To build the singularity container, the user has to run the following command:
The date tag (YYYY.MM.DD) is manually set for each release to ensure version stability.
47
+
45
48
## ⚠️ Important License Information
46
49
47
50
Please note the following license restrictions:
@@ -169,6 +172,37 @@ Common issues and solutions:
169
172
- Increase Docker memory allocation in Docker Desktop settings
170
173
- Use `--memory` flag to specify container memory limit
171
174
175
+
3.**OpenMS Singularity Pull Issues**
176
+
177
+
If you encounter an error when pulling OpenMS Singularity images:
178
+
```
179
+
FATAL: While pulling image from oci registry: error fetching image to cache: failed to get checksum for oras://ghcr.io/bigbio/openms-tools-thirdparty-sif:YYYY.MM.DD: GET https://ghcr.io/v2/bigbio/openms-tools-thirdparty-sif/manifests/YYYY.MM.DD: DENIED: requested access to the resource is denied
180
+
```
181
+
182
+
Try the following:
183
+
184
+
- Verify you're using the correct date tag format (YYYY.MM.DD)
185
+
- Check the workflow logs to confirm the exact version tag that was published
186
+
- If using Nextflow, try increasing the pull timeout:
187
+
```
188
+
nextflow run bigbio/quantms -r dev -profile test_lfq,singularity -with-singularity --singularity.pullTimeout '2h'
189
+
```
190
+
- If the issue persists, please open an issue on the GitHub repository
191
+
192
+
4. **DiaNN Container Issues**
193
+
194
+
Remember that DiaNN containers must be built locally due to licensing restrictions:
195
+
196
+
- Follow the build instructions in the "DiaNN Containers" section
197
+
- For quantms pipeline, specify your local DiaNN container path in a custom config file:
0 commit comments