Skip to content

Commit 3d209cd

Browse files
committed
Fix script name in ReadMe file
1 parent d305c6e commit 3d209cd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -218,17 +218,17 @@ Maestro may be used to get a glimpse of the exported data:
218218

219219
* list of used wells, together with plate layout info:
220220
```
221-
python remaster.py show wells EXPORT_FOLDER_PATH
221+
python maestro.py show wells EXPORT_FOLDER_PATH
222222
```
223223

224224
* list of channels:
225225
```
226-
python remaster.py show channels EXPORT_FOLDER_PATH
226+
python maestro.py show channels EXPORT_FOLDER_PATH
227227
```
228228

229229
* image acquisition settings in each channel:
230230
```
231-
python remaster.py show settings EXPORT_FOLDER_PATH
231+
python maestro.py show settings EXPORT_FOLDER_PATH
232232
```
233233

234234

maestro.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ def correct_tiles(
277277
'zip': tifffile.COMPRESSION.DEFLATE,
278278
}[output_file_compression],
279279
'software': 'tifffile.py/maestro',
280-
'metadata': None
280+
'metadata': None,
281281
}
282282

283283
tiles_folder_path.mkdir(exist_ok=True, parents=True)
@@ -354,7 +354,7 @@ def correct_tiles(
354354
shape=(nz, nch, ny, nx),
355355
storedshape=(nz*nch, 1, 1, ny, nx, 1),
356356
axes='ZCYX',
357-
**extra_metadata
357+
**extra_metadata,
358358
)
359359
description = ome_xml.tostring()
360360

0 commit comments

Comments
 (0)