Skip to content

Commit

Permalink
introduce new output paths
Browse files Browse the repository at this point in the history
Signed-off-by: neuronflow <[email protected]>
  • Loading branch information
neuronflow committed Feb 14, 2024
1 parent 2d38d2c commit 63c33d5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions brainles_preprocessing/modality.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,19 @@ def __init__(
self,
modality_name: str,
input_path: str,
output_path: str,
bet: bool,
raw_bet_output_path: str,
normalized_bet_output_path: str,
raw_skull_output_path: str,
normalized_skull_output_path: str,
atlas_correction: bool = True,
normalizer: Optional[Normalizer] = None,
) -> None:
self.modality_name = modality_name
self.input_path = turbopath(input_path)
self.output_path = turbopath(output_path)
self.bet = bet
self.raw_bet_output_path = turbopath(raw_bet_output_path)
self.normalized_bet_output_path = turbopath(normalized_bet_output_path)
self.raw_skull_output_path = turbopath(raw_skull_output_path)
self.normalized_skull_output_path = turbopath(normalized_skull_output_path)
self.atlas_correction = atlas_correction
self.normalizer = normalizer
self.current = self.input_path
Expand Down

0 comments on commit 63c33d5

Please sign in to comment.