We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d13bc5 commit 9ecfc19Copy full SHA for 9ecfc19
1 file changed
brats/model/project/mlcube.py
@@ -56,7 +56,8 @@ def infer(
56
parameters_file: str = typer.Option(..., "--parameters_file")
57
):
58
filename = "BraTS_example_seg.nii.gz"
59
- shutil.copyfile(data_path+filename, output_path+filename)
+ shutil.copyfile(os.path.join(data_path, filename), os.path.join(output_path, filename))
60
+ print("Done!")
61
62
63
if __name__ == "__main__":
0 commit comments