Skip to content

Commit 201f495

Browse files
committed
[Feature] <Allow reading of DICOM images> #68
Hopefully fixed the github action job And updated pyproject.toml comments
1 parent dda0e88 commit 201f495

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/docker-build-and-run.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
- name: Verify input files
100100
run: |
101101
for file in ivim_simulation_0000.dcm, ivim_simulation_0001.dcm, ivim_simulation_0002.dcm ivim_simulation_0003.dcm ivim_simulation_0004.dcm; do
102-
if [ ! -f "ivim_simulation/$file" ]; then
102+
if [ ! -f "${{ github.workspace }}/ivim_simulation/$file" ]; then
103103
echo "Error: $file not found"
104104
exit 1
105105
fi
@@ -117,7 +117,6 @@ jobs:
117117
run: |
118118
docker run --rm --name TF2.4_IVIM-MRI_CodeCollection \
119119
-v ${{ github.workspace }}:/usr/src/app \
120-
-v ${{ github.workspace }}:/usr/app/output \
121120
tf2.4_ivim-mri_codecollection \
122121
/usr/src/app/ivim_simulation
123122

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "TF2.4_IVIM-MRI-CodeCollection"
33
version = "0.1.0"
4-
description = "IVIM MRI signal simulation and DICOM/NIfTI processing tools"
4+
description = "IVIM MRI signal processing and DICOM/NIfTI processing tools"
55
requires-python = ">=3.9"
66
readme = "README.md"
77
license = {text = "Apache 2"}

0 commit comments

Comments
 (0)