We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72051e2 commit 6d553eeCopy full SHA for 6d553ee
1 file changed
cwltool/singularity.py
@@ -136,13 +136,13 @@ def is_version_3_10_or_newer() -> bool:
136
def _normalize_image_id(string: str) -> str:
137
if ":" not in string:
138
string += "_latest"
139
- return string.replace("/", "_") + ".img"
+ return string.replace(":", "_") + ".img"
140
141
142
def _normalize_sif_id(string: str) -> str:
143
144
145
- return string.replace("/", "_") + ".sif"
+ return string.replace(":", "_") + ".sif"
146
147
148
class SingularityCommandLineJob(ContainerCommandLineJob):
0 commit comments