Skip to content

Commit

Permalink
better notice
Browse files Browse the repository at this point in the history
Signed-off-by: neuronflow <[email protected]>
  • Loading branch information
neuronflow committed Feb 21, 2024
1 parent c9a24db commit da34200
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions brats_toolkit/util/citation_reminder.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,17 +27,22 @@ def wrapper(*args, **kwargs):
console = Console()
console.rule("[bold red]Deprecation note[/bold red]")
console.print(
"Support for BraTS Toolkit's preprocessor will be deprecated soon, even though it should continue working.",
"Deprecation Notice: Support for the BraTS Toolkit's preprocessor is now deprecated, although it is expected to remain functional.",
justify="center",
)
console.print(
"You can already beta test the new BrainLes preprocessing: https://github.com/BrainLesion/preprocessing",
"Please note that this deprecation does not impact the segmentation and fusion module, which will continue to receive maintenance and support.",
justify="center",
)
console.print(
"Unlike the original preprocessing from BraTS Toolkit, the new pipeline allows for arbitrary sequences, implements multiple backends for registration and brain extration and does not require docker.",
"We recommend transitioning to the BrainLes preprocessing tool available at: https://github.com/BrainLesion/preprocessing for preprocessing tasks.",
justify="center",
)
console.print(
"In contrast to the original BraTS Toolkit preprocessing, the new BrainLes pipeline offers the flexibility of arbitrary sequences, incorporates multiple backends for registration and brain extraction, and eliminates the need for Docker.",
justify="center",
)

console.rule()
console.line()
func(*args, **kwargs)
Expand Down

0 comments on commit da34200

Please sign in to comment.