Skip to content

Commit cf55cb8

Browse files
committed
Document csbdocker DPPOP image name
1 parent 593f7cf commit cf55cb8

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ LD_LIBRARY_PATH=/usr/local/cntk/cntk/dependencies/lib:/usr/local/cntk/cntk/lib:/
7474
After publishing/pulling the base image `csbdocker/cntk-dotnet:1.0.1-cntk2.7-dotnet10`, build the DPPOP container from the repository root:
7575

7676
```powershell
77-
docker build -t dppop .
77+
docker build -t csbdocker/dppop .
7878
```
7979

8080
Run it with input files mounted under `/data`:
8181

8282
```powershell
83-
docker run --rm --mount "type=bind,source=C:/my-data,target=/data" dppop --proteome /data/proteome.fasta --proteins-of-interest /data/targets.fasta --model nonplant --output /data/results.tsv
83+
docker run --rm --mount "type=bind,source=C:/my-data,target=/data" csbdocker/dppop --proteome /data/proteome.fasta --proteins-of-interest /data/targets.fasta --model nonplant --output /data/results.tsv
8484
```
8585

8686
## Development Notes

plans/zenodo_base_image.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,8 @@ This deletes the entire `apt-get install libnuma1` + `tar -xzf legacy-runtime.ta
217217
### Acceptance
218218

219219
- `.\build.cmd RunTests` (per [AGENTS.md](AGENTS.md)) passes locally on a .NET 10 SDK.
220-
- `docker build -t dppop .` (using the published base from Docker Hub) succeeds with no local `artifacts/` content present.
221-
- `docker run --rm --mount type=bind,source=...,target=/data dppop --proteome ... --proteins-of-interest ... --model nonplant --output /data/results.tsv` produces output matching the existing golden tests in [tests/DPPOP.Tests](tests/DPPOP.Tests).
220+
- `docker build -t csbdocker/dppop .` (using the published base from Docker Hub) succeeds with no local `artifacts/` content present.
221+
- `docker run --rm --mount type=bind,source=...,target=/data csbdocker/dppop --proteome ... --proteins-of-interest ... --model nonplant --output /data/results.tsv` produces output matching the existing golden tests in [tests/DPPOP.Tests](tests/DPPOP.Tests).
222222

223223
---
224224

src/DPPOP.CLI/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ dppop --proteome proteome.fasta --proteins-of-interest targets.fasta --model non
1313
Build the container from the repository root after publishing or pulling the CNTK/.NET base image:
1414

1515
```powershell
16-
docker build -t dppop .
16+
docker build -t csbdocker/dppop .
1717
```
1818

1919
Run it with mounted input data under `/data`:
2020

2121
```powershell
22-
docker run --rm --mount "type=bind,source=C:/my-data,target=/data" dppop --proteome /data/proteome.fasta --proteins-of-interest /data/targets.fasta --output /data/results.tsv
22+
docker run --rm --mount "type=bind,source=C:/my-data,target=/data" csbdocker/dppop --proteome /data/proteome.fasta --proteins-of-interest /data/targets.fasta --output /data/results.tsv
2323
```
2424

2525
### Local container smoke test

0 commit comments

Comments
 (0)