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.
2 parents 834b4df + dd1f218 commit 8d6e7eeCopy full SHA for 8d6e7ee
FastSurferCNN/utils/common.py
@@ -273,7 +273,7 @@ def copy_orig_name(self) -> str:
273
hasattr(self, "_copy_orig_name")
274
or "The copy_orig_name attribute has not been set!"
275
)
276
- return self._copy_orig_name
+ return self.filename_in_subject_folder(self._copy_orig_name)
277
278
@copy_orig_name.setter
279
def copy_orig_name(self, _copy_orig_name: str):
@@ -565,7 +565,7 @@ def _not_abs(subj_attr):
565
"for relative file paths of input files.".format(**self._flags)
566
567
568
- self._remove_suffix = getattr(args, "remove_suffix") or ""
+ self._remove_suffix = getattr(args, "remove_suffix", "")
569
if self._num_subjects > 1:
570
if getattr(args, "sid", "") not in ["", None]:
571
raise RuntimeError(
0 commit comments