You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Backsub version 0.5.1 -- more lightweight and now supports compression when writing the output TIFF. The default pipeline configuration applies zlib compression.
Copy file name to clipboardExpand all lines: docs/parameters/core.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -836,16 +836,16 @@ workflow:
836
836
837
837
### Outputs
838
838
839
-
* A pyramidal, tiled `.ome.tif`. Nextflow will write the output file to `background/` within the project directory.
839
+
* A pyramidal, tiled `.ome.tif`. Nextflow will write the output file to `background/` within the project directory. By default, the output is compressed.
840
840
* A modified `markers.csv` to match the background subtracted image.
841
841
842
842
### Optional arguments
843
843
844
844
| Parameter | Default | Description |
845
845
| --- | --- | --- |
846
846
| `--pixel-size` | `None` | The resolution of the image in microns-per-pixel. If not provided, it is read from metadata. If that is not possible, 1 is assigned. |
847
-
| `--tile-size` | `1024` | Tile size used for pyramid image generation.|
848
-
| `--chunk-size` | `5000` | Chunk size used for lazy loading and processing the image.|
847
+
| `--tile-size` | `256` | Tile size used for pyramid image generation.|
848
+
| `--compression` | `zlib` | The output pyramidal OME-TIFF will be compressed using the specified compression. Set to "none" for no compression. "lzw", "zlib", or "none" are accepted options. |
849
849
850
850
[Back to Other Modules](./core.html#other-modules){: .btn .btn-purple} [Back to top](./core){: .btn .btn-outline}
Copy file name to clipboardExpand all lines: docs/parameters/other.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -374,7 +374,7 @@ Nextflow will write all outputs to the `cell-states/naivestates/` subdirectory w
374
374
375
375
### Usage
376
376
By default, MCMICRO assumes background subtraction should not be performed. Add `background: true` to [module options]({{site.baseurl}}/parameters/workflow.html#background) to indicate it should be. By default, the `background-method` parameter is set to `backsub`.
377
-
If channels are removed using this module, and `segmentation-channel` is specified, it should be kept in mind that the index provided with `segmentation-channel` would refer to the index after channel removal.
377
+
If channels are removed using this module, and `segmentation-channel` is specified, it should be kept in mind that the index provided with `segmentation-channel` would refer to the index after channel removal. Note that if the corrected outputs are compressed, and a segmentation method fails, `segmentation-recyze` should be used to get around the issue.
378
378
379
379
* Example `params.yml`:
380
380
@@ -393,15 +393,15 @@ workflow:
393
393
394
394
### Outputs
395
395
396
-
* A pyramidal, tiled `.ome.tif`. Nextflow will write the output file to `background/` within the project directory.
396
+
* A pyramidal, tiled `.ome.tif`. Nextflow will write the output file to `background/` within the project directory. By default, the output is compressed.
397
397
* A modified `markers.csv` to match the background subtracted image.
398
398
399
399
### Optional arguments
400
400
401
401
| Parameter | Default | Description |
402
402
| --- | --- | --- |
403
403
| `--pixel-size` | `None` | The resolution of the image in microns-per-pixel. If not provided, it is read from metadata. If that is not possible, 1 is assigned. |
404
-
| `--tile-size` | `1024` | Tile size used for pyramid image generation.|
405
-
| `--chunk-size` | `5000` | Chunk size used for lazy loading and processing the image.|
404
+
| `--tile-size` | `256` | Tile size used for pyramid image generation.|
405
+
| `--compression` | `zlib` | The output pyramidal OME-TIFF will be compressed using the specified compression. Set to "none" for no compression. "lzw", "zlib", or "none" are accepted options. |
406
406
407
407
[Back to Other Modules](./core.html#other-modules){: .btn .btn-purple} [Back to top](./core){: .btn .btn-outline}
0 commit comments