Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update out dated Arrow documentation #137

Merged
merged 1 commit into from
Aug 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ Note that both of these methods have an optional argument for a path to be provi
arrow_array = nyx.get_arrow_memory_mapping()
```

This functionality is also available in the through the command line using the flag `--arrowOutputType`. If this flag is set to `--arrowOutputType=arrow` then the results will be written to an Arrow IPC file in the output directory and `--arrowOutputType=parquet` will write to a Parquet file.
This functionality is also available in the through the command line using the flag `--outputType`. If this flag is set to `--outputType=arrow` then the results will be written to an Arrow IPC file in the output directory and `--outputType=parquet` will write to a Parquet file.

## Available features
The feature extraction plugin extracts morphology and intensity based features from pairs of intensity/binary mask images and produces a csv file output. The input image should be in tiled [OME TIFF format](https://docs.openmicroscopy.org/ome-model/6.2.0/ome-tiff/specification.html). The plugin extracts the following features:
Expand Down Expand Up @@ -383,7 +383,6 @@ Assuming you [built the Nyxus binary](#building-from-source) as outlined below,
--hpar | (optional) Channel number that should be used as a provider of parent segments. Example: '--hpar=1' | integer
--hchi | (optional) Channel number that should be used as a provider of child segments. Example: '--hchi=0' | integer
--hag | (optional) Name of a method how to aggregate features of segments recognized as children of same parent segment. Valid options are 'SUM', 'MEAN', 'MIN', 'MAX', 'WMA' (weighted mean average), and 'NONE' (no aggregation, instead, same parent child segments will be laid out horizontally) | string
--arrowOutputType | (optional) Type of Arrow file to write the feature results to. Current options are `arrow` for Arrow IPC or `parquet` for Parquet | string

---

Expand Down