Skip to content

Commit

Permalink
removing zarr format variable unsued
Browse files Browse the repository at this point in the history
  • Loading branch information
camilolaiton committed Jun 6, 2024
1 parent 149381b commit b71aed8
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/aind_smartspim_data_transformation/smartspim_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,6 @@ class SmartspimJobSettings(BasicJobSettings):

# Compress settings
random_seed: Optional[int] = 0
compress_write_output_format: Literal["zarr"] = Field(
default="zarr",
description=(
"Output format for compression. Currently, only zarr supported."
),
title="Write Output Format",
)
compressor_name: CompressorName = Field(
default=CompressorName.BLOSC,
description="Type of compressor to use.",
Expand Down Expand Up @@ -201,7 +194,6 @@ def _compress_raw_data(self) -> None:
self._compress_and_write_channels(
read_channel_stacks=read_delayed_channel_stacks,
compressor=compressor,
output_format=self.job_settings.compress_write_output_format,
job_kwargs=self.job_settings.compress_job_save_kwargs,
)
logging.info("Finished compressing source data.")
Expand Down

0 comments on commit b71aed8

Please sign in to comment.