Scalable library for calculating features from intensity-label image data
Project description
Nyxus
A scalable library for calculating features from intensity-label image data
Overview
Nyxus is a feature-rich, highly optimized, Python/C++ application capable of analyzing images of arbitrary size and assembling complex regions of interest (ROIs) split across multiple image tiles and files. This accomplished through multi-threaded tile prefetching and a three phase analysis pipeline shown below.
Nyxus can be used via Python or command line and is available in containerized form for reproducible execution. Nyxus computes over 450 combined intensity, texture, and morphological features at the ROI or whole image level with more in development. Key features that make Nyxus unique among other image feature extraction applications is its ability to operate at any scale, its highly validated algorithms, and its modular nature that makes the addition of new features straightforward.
The docs can be found at Read the Docs.
Getting started
For use in python, the latest version of Nyxus can be installed via the Pip package manager or Conda package manager:
pip install nyxus
or
conda install nyxus -c conda-forge
Usage is very straightforward. Given intensities
and labels
folders, Nyxus pairs up intensity-label pairs and extracts features from all of them. A summary of the avaialble feature are listed below.
from nyxus import Nyxus
nyx = Nyxus(["*ALL*"])
intensityDir = "/path/to/images/intensities/"
maskDir = "/path/to/images/labels/"
features = nyx.featurize_directory (intensityDir, maskDir)
Alternatively, Nyxus can process explicitly defined pairs of intensity-mask images, for example image "i1" with mask "m1" and image "i2" with mask "m2":
from nyxus import Nyxus
nyx = Nyxus(["*ALL*"])
features = nyx.featurize(
[
"/path/to/images/intensities/i1.ome.tif",
"/path/to/images/intensities/i2.ome.tif"
],
[
"/path/to/images/labels/m1.ome.tif",
"/path/to/images/labels/m2.ome.tif"
])
The features
variable is a Pandas dataframe similar to what is shown below.
mask_image | intensity_image | label | MEAN | MEDIAN | ... | GABOR_6 | |
---|---|---|---|---|---|---|---|
0 | p1_y2_r51_c0.ome.tif | p1_y2_r51_c0.ome.tif | 1 | 45366.9 | 46887 | ... | 0.873016 |
1 | p1_y2_r51_c0.ome.tif | p1_y2_r51_c0.ome.tif | 2 | 27122.8 | 27124.5 | ... | 1.000000 |
2 | p1_y2_r51_c0.ome.tif | p1_y2_r51_c0.ome.tif | 3 | 34777.4 | 33659 | ... | 0.942857 |
3 | p1_y2_r51_c0.ome.tif | p1_y2_r51_c0.ome.tif | 4 | 35808.2 | 36924 | ... | 0.824074 |
4 | p1_y2_r51_c0.ome.tif | p1_y2_r51_c0.ome.tif | 5 | 36739.7 | 37798 | ... | 0.854067 |
... | ... | ... | ... | ... | ... | ... | ... |
734 | p5_y0_r51_c0.ome.tif | p5_y0_r51_c0.ome.tif | 223 | 54573.3 | 54573.3 | ... | 0.980769 |
For more information on all of the available options and features, check out the documentation.
Nyxus can also be built from source and used from the command line, or via a pre-built Docker container.
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. The plugin extracts the following features:
Nyxus provides a set of pixel intensity, morphology, texture, intensity distribution features, digital filter based features and image moments
Nyxus feature code | Description |
---|---|
INTEGRATED_INTENSITY | Integrated intensity of the region of interest (ROI) |
MEAN, MAX, MEDIAN, STANDARD_DEVIATION, MODE | Mean/max/median/stddev/mode intensity value of the ROI |
SKEWNESS, KURTOSIS, HYPERSKEWNESS, HYPERFLATNESS | higher standardized moments |
MEAN_ABSOLUTE_DEVIATION | Mean absolute devation |
ENERGY | ROI energy |
ROOT_MEAN_SQUARED | Root of mean squared deviation |
ENTROPY | ROI entropy - a measure of the amount of information in the ROI |
UNIFORMITY | Uniformity - measures how uniform the distribution of ROI intensities is |
UNIFORMITY_PIU | Percent image uniformity, another measure of intensity distribution uniformity |
P01, P10, P25, P75, P90, P99 | 1%, 10%, 25%, 75%, 90%, and 99% percentiles of intensity distribution |
INTERQUARTILE_RANGE | Distribution's interquartile range |
ROBUST_MEAN_ABSOLUTE_DEVIATION | Robust mean absolute deviation |
MASS_DISPLACEMENT | ROI mass displacement |
AREA_PIXELS_COUNT | ROI area in the number of pixels |
COMPACTNESS | Mean squared distance of the object’s pixels from the centroid divided by the area |
BBOX_YMIN | Y-position and size of the smallest axis-aligned box containing the ROI |
BBOX_XMIN | X-position and size of the smallest axis-aligned box containing the ROI |
BBOX_HEIGHT | Height of the smallest axis-aligned box containing the ROI |
BBOX_WIDTH | Width of the smallest axis-aligned box containing the ROI |
MAJOR/MINOR_AXIS_LENGTH, ECCENTRICITY, ORIENTATION, ROUNDNESS | Inertia ellipse features |
NUM_NEIGHBORS, PERCENT_TOUCHING | The number of neighbors bordering the ROI's perimeter and related neighbor methods |
EXTENT | Proportion of the pixels in the bounding box that are also in the region |
CONVEX_HULL_AREA | Area of ROI's convex hull |
SOLIDITY | Ratio of pixels in the ROI common with its convex hull image |
PERIMETER | Number of pixels in ROI's contour |
EQUIVALENT_DIAMETER | Diameter of the circle having circumference equal to the ROI's perimeter |
EDGE_MEAN/MAX/MIN/STDDEV_INTENSITY | Intensity statistics of ROI's contour pixels |
CIRCULARITY | Represents how similar a shape is to circle. Clculated based on ROI's area and its convex perimeter |
EROSIONS_2_VANISH | Number of erosion operations for a ROI to vanish in its axis aligned bounding box |
EROSIONS_2_VANISH_COMPLEMENT | Number of erosion operations for a ROI to vanish in its convex hull |
FRACT_DIM_BOXCOUNT, FRACT_DIM_PERIMETER | Fractal dimension features |
GLCM | Gray level co-occurrence Matrix features |
GLRLM | Gray level run-length matrix based features |
GLSZM | Gray level size zone matrix based features |
GLDM | Gray level dependency matrix based features |
NGTDM | Neighbouring gray tone difference matrix features |
ZERNIKE2D, FRAC_AT_D, RADIAL_CV, MEAN_FRAC | Radial distribution features |
GABOR | A set of Gabor filters of varying frequencies and orientations |
For the complete list of features see Nyxus provided features
Feature groups
Apart from defining your feature set by explicitly specifying comma-separated feature code, Nyxus lets a user specify popular feature groups. Supported feature groups are:
Group code | Belonging features |
---|---|
*all_intensity* | integrated_intensity, mean, median, min, max, range, standard_deviation, standard_error, uniformity, skewness, kurtosis, hyperskewness, hyperflatness, mean_absolute_deviation, energy, root_mean_squared, entropy, mode, uniformity, p01, p10, p25, p75, p90, p99, interquartile_range, robust_mean_absolute_deviation, mass_displacement |
*all_morphology* | area_pixels_count, area_um2, centroid_x, centroid_y, weighted_centroid_y, weighted_centroid_x, compactness, bbox_ymin, bbox_xmin, bbox_height, bbox_width, major_axis_length, minor_axis_length, eccentricity, orientation, num_neighbors, extent, aspect_ratio, equivalent_diameter, convex_hull_area, solidity, perimeter, edge_mean_intensity, edge_stddev_intensity, edge_max_intensity, edge_min_intensity, circularity |
*basic_morphology* | area_pixels_count, area_um2, centroid_x, centroid_y, bbox_ymin, bbox_xmin, bbox_height, bbox_width |
*all_glcm* | glcm_angular2ndmoment, glcm_contrast, glcm_correlation, glcm_variance, glcm_inversedifferencemoment, glcm_sumaverage, glcm_sumvariance, glcm_sumentropy, glcm_entropy, glcm_differencevariance, glcm_differenceentropy, glcm_infomeas1, glcm_infomeas2 |
*all_glrlm* | glrlm_sre, glrlm_lre, glrlm_gln, glrlm_glnn, glrlm_rln, glrlm_rlnn, glrlm_rp, glrlm_glv, glrlm_rv, glrlm_re, glrlm_lglre, glrlm_hglre, glrlm_srlgle, glrlm_srhgle, glrlm_lrlgle, glrlm_lrhgle |
*all_glszm* | glszm_sae, glszm_lae, glszm_gln, glszm_glnn, glszm_szn, glszm_sznn, glszm_zp, glszm_glv, glszm_zv, glszm_ze, glszm_lglze, glszm_hglze, glszm_salgle, glszm_sahgle, glszm_lalgle, glszm_lahgle |
*all_gldm* | gldm_sde, gldm_lde, gldm_gln, gldm_dn, gldm_dnn, gldm_glv, gldm_dv, gldm_de, gldm_lgle, gldm_hgle, gldm_sdlgle, gldm_sdhgle, gldm_ldlgle, gldm_ldhgle |
*all_ngtdm* | ngtdm_coarseness, ngtdm_contrast, ngtdm_busyness, ngtdm_complexity, ngtdm_strength |
*all_easy* | All the features except the most time-consuming GABOR, GLCM, and the group of 2D moment features |
*all* | All the features |
Command line usage
Assuming you built the Nyxus binary as outlined below, the following parameters are available for the CLI:
Parameter | Description | I/O | Type |
---|---|---|---|
--intDir | Intensity image collection | Input | collection |
--segDir | Labeled image collection | Input | collection |
--intSegMapDir | Data collection of the ad-hoc intensity-to-mask file mapping | Input | Collection |
--intSegMapFile | Name of the text file containing an ad-hoc intensity-to-mask file mapping. The files are assumed to reside in corresponding intensity and label collections | Input | string |
--features | Select intensity and shape features required | Input | array |
--filePattern | To match intensity and labeled/segmented images | Input | string |
--csvFile | Save csv file as one csv file for all images or separate csv file for each image | Input | enum |
--pixelDistance | Pixel distance to calculate the neighbors touching cells | Input | integer |
--embeddedpixelsize | Consider the unit embedded in metadata, if present | Input | boolean |
--unitLength | Enter the metric for unit conversion | Input | string |
--pixelsPerunit | Enter the number of pixels per unit of the metric | Input | number |
--outDir | Output collection | Output | csvCollection |
--coarseGrayDepth | Custom number of levels in grayscale denoising used in texture features (default: 256) | Input | integer |
Example: Running Nyxus to process images of specific image channel
Suppose we need to process intensity/mask images of channel 1 :
./nyxus --features=*all_intensity*,*basic_morphology* --intDir=/home/ec2-user/data-ratbrain/int --segDir=/home/ec2-user/data-ratbrain/seg --outDir=/home/ec2-user/work/output-ratbrain --filePattern=.*_c1\.ome\.tif --csvFile=singlecsv
Example: Running Nyxus to process specific image
Suppose we need to process intensity/mask file p1_y2_r68_c1.ome.tif :
./nyxus --features=*all_intensity*,*basic_morphology* --intDir=/home/ec2-user/data-ratbrain/int --segDir=/home/ec2-user/data-ratbrain/seg --outDir=/home/ec2-user/work/output-ratbrain --filePattern=p1_y2_r68_c1\.ome\.tif --csvFile=singlecsv
Example: Running Nyxus to extract only intensity and basic morphology features
./nyxus --features=*all_intensity*,*basic_morphology* --intDir=/home/ec2-user/data-ratbrain/int --segDir=/home/ec2-user/data-ratbrain/seg --outDir=/home/ec2-user/work/output-ratbrain --filePattern=.* --csvFile=singlecsv
Nested features
A separate command line executable "nyxushie" for the hierarchical ROI analysis by finding nested ROIs and aggregating features of child ROIs within corresponding parent features is available. Its command line format is:
nyxushie <segment image collection dir> <file pattern> <channel signature> <parent channel> <child channel> <features dir> [-aggregate=<aggregation method>]
where
<segment image collection dir> is directory of the segment images collection ;
<file pattern> is a regular expression to filter files in <segment image collection dir> ;
<channel signature> is a signature of the channel part in an image file name ;
<parent channel> is an integer channel number where parent ROIs are expected ;
<child channel> is an integer channel number where child ROIs are expected ;
<features dir> is a directory used as the output of parent-child ROI relations and, if aggregation is requested, where CSV files of Nyxus features produced with Nyxus command line option --csvfile=separatecsv is located ;
(optional) <aggregation method> is a method instructing how to aggregate child ROI features under a parent ROI.
Valid aggregation method options are: SUM, MEAN, MIN, MAX, or WMA (weighted mean average).
Example: we need to process collection of mask images located in directory "~/data/image-collection1/seg" considering only images named "train_.*\.tif" whose channel information begins with characters "_ch" (_ch0, _ch1, etc.) telling Nyxushie to treat channel 1 images as source of parent ROIs and channel 0 images as source of child ROIs. The output directory needs to be "~/results/result1". The command line will be
nyxushie ~/data/image-collection1/seg train_.*\\.tif _ch 1 0 ~/results/result1
Nested features Python API
The nested features functionality can also be utilized in Python using the Nested
class in nyxus
. The Nested
class
contains two methods, find_relations
and featurize
.
The find_relations
method takes in a path to the label files, along with a child
filepattern to identify the files in the child channel and a parent filepattern to match the files in the parent channel. The find_relation
method
returns a Pandas DataFrame containing a mapping between parent ROIs and the respective child ROIs.
The featurize
method takes in the parent-child mapping along with the features of the ROIs in the child channel. If a list of aggregate functions
is provided to the constructor, this method will return a pivoted DataFrame where the rows are the ROI labels and the columns are grouped by the features.
Example: Using aggregate functions
from nyxus import Nyxus, Nested
import numpy as np
int_path = 'path/to/intensity'
seg_path = 'path/to/segmentation'
nyx = Nyxus(['GABOR'])
child_features = nyx.featurize(int_path, seg_path, file_pattern='p[0-9]_y[0-9]_r[0-9]_c0\.ome\.tif')
nest = Nested(['sum', 'mean', 'min', ('nanmean', lambda x: np.nanmean(x))])
df = nest.find_relations(seg_path, 'p{r}_y{c}_r{z}_c1.ome.tif', 'p{r}_y{c}_r{z}_c0.ome.tif')
df2 = nest.featurize(df, features)
The parent-child map is
Image Parent_Label Child_Label
0 /path/to/image 72 65
1 /path/to/image 71 66
2 /path/to/image 70 64
3 /path/to/image 68 61
4 /path/to/image 67 65
and the aggregated DataFrame is
GABOR_0 GABOR_1 GABOR_2 ...
sum mean min nanmean sum mean min nanmean sum mean ...
label ...
1 24.010227 0.666951 0.000000 0.666951 19.096262 0.530452 0.001645 0.530452 17.037345 0.473260 ...
2 13.374170 0.445806 0.087339 0.445806 7.279187 0.242640 0.075000 0.242640 6.390529 0.213018 ...
3 5.941783 0.198059 0.000000 0.198059 3.364149 0.112138 0.000000 0.112138 2.426409 0.080880 ...
4 13.428773 0.559532 0.000000 0.559532 12.021938 0.500914 0.008772 0.500914 9.938915 0.414121 ...
5 6.535722 0.181548 0.000000 0.181548 1.833463 0.050930 0.000000 0.050930 2.083023 0.057862 ...
Example: Without aggregate functions
from nyxus import Nyxus, Nested
import numpy as np
int_path = 'path/to/intensity'
seg_path = 'path/to/segmentation'
nyx = Nyxus(['GABOR'])
child_features = nyx.featurize(int_path, seg_path, file_pattern='p[0-9]_y[0-9]_r[0-9]_c0\.ome\.tif')
nest = Nested()
df = nest.find_relations(seg_path, 'p{r}_y{c}_r{z}_c1.ome.tif', 'p{r}_y{c}_r{z}_c0.ome.tif')
df2 = nest.featurize(df, features)
the parent-child map remains the same but the featurize
result becomes
GABOR_0 ...
Child_Label 1 2 3 4 5 6 7 8 9 10 ...
label ...
1 0.666951 NaN NaN NaN NaN NaN NaN NaN NaN NaN ...
2 NaN 0.445806 NaN NaN NaN NaN NaN NaN NaN NaN ...
3 NaN NaN 0.198059 NaN NaN NaN NaN NaN NaN NaN ...
4 NaN NaN NaN 0.559532 NaN NaN NaN NaN NaN NaN ...
5 NaN NaN NaN NaN 0.181548 NaN NaN NaN NaN NaN ...
Building from source
Nyxus can either be build inside a conda
environment or independently outside of it. For the later case, we provide a script to make it easier to download and build all the necessary dependencies.
Inside Conda
Nyxus uses a CMake build system. To build the command line interface, pass -DBUILD_CLI=ON
in the cmake
command. For building with GPU support, use -DUSEGPU=ON
flag in the cmake
command. Here are the few notes on building with GPU support.
- Currently, GPU builds on Mac OS is not supported.
- Due to the limitation of CUDA Development toolkit, upto GCC 9.X versions can be used on Linux.
- On Windows, we assume the correct version of CUDA toolkit and compiler is installed that is compatible with the Microsoft Visual Studio C++ compiler.
Below is an example of how to build Nyxus inside a conda
environment on Linux.
git clone https://github.com/PolusAI/nyxus.git
cd nyxus
conda install -y -c conda-forge --file ci-utils/envs/conda_cpp.txt --file ci-utils/envs/conda_linux_compiler.txt --file ci-utils/envs/conda_py.txt --file ci-utils/envs/conda_linux_gpu.txt
mkdir build
cd build
cmake -DBUILD_CLI=ON -DUSEGPU=ON -DCMAKE_PREFIX_PATH=$CONDA_PREFIX -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX ..
make -j4
If you are building on Mac or Windows, skip the dependencies from ci-utils/envs/conda_linux_compiler.txt
and ci-utils/envs/conda_linux_gpu.txt
To install the python package in the conda
environment on Linux, use the following direction.
git clone https://github.com/PolusAI/nyxus.git
cd nyxus
conda install -y -c conda-forge --file ci-utils/envs/conda_cpp.txt --file ci-utils/envs/conda_linux_compiler.txt --file ci-utils/envs/conda_linux_gpu.txt --file ci-utils/envs/conda_py.txt
CMAKE_ARGS=" -DBUILD_CLI=ON -DUSEGPU=ON -DCMAKE_PREFIX_PATH=$CONDA_PREFIX -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX " python setup.py install
We also provide an example script that downloads conda
, installs the necessary dependencies and then builds both the CLI and the python library on Linux. To run the script, do the following.
git clone https://github.com/PolusAI/nyxus.git
cd nyxus/ci-utils
./build_conda.sh ..
Without Using Conda
To build Nyxus outside of a conda
environment, use the following example.
git clone https://github.com/PolusAI/nyxus.git
cd nyxus
mkdir build
cd build
bash ../ci-utils/install_prereq_linux.sh
cmake -DBUILD_CLI=ON -DUSEGPU=ON -DCMAKE_PREFIX_PATH=./local_install -DCMAKE_INSTALL_PREFIX=./local_install ..
make -j4
Running via Docker
Running Nyxus from a local directory freshly made Docker container is a good idea. It allows one to test-run conteinerized Nyxus before it reaches Docker cloud deployment.
To search available Nyxus images run command
docker search nyxus
and you'll be shown that it's available at least via organization 'polusai'. To pull it, run
docker pull polusai/nyxus
The following command line is an example of running the dockerized feature extractor (image hash 87f3b560bbf2) with only intensity features selected:
docker run -it [--gpus all] --mount type=bind,source=/images/collections,target=/data 87f3b560bbf2 --intDir=/data/c1/int --segDir=/data/c1/seg --outDir=/data/output --filePattern=.* --csvFile=separatecsv --features=entropy,kurtosis,skewness,max_intensity,mean_intensity,min_intensity,median,mode,standard_deviation
Install from sources and package into a Docker image
If you want to build your own Nyxus Docker container we provide a convenient shell script:
./ci-utils/build-docker.sh
Dependencies
Nyxus is tested with Python 3.6+. Nyxus relies on the the following packages:
pybind11 >= 2.8.1
libTIFF >= 3.6.1
Z5 >=2.0.15
Each of these dependencies also have hierarchical dependencies and so we recommend using the conda
build system when building from source.
WIPP Usage
Nyxus is available as plugin for WIPP.
Label image collection: The input should be a labeled image in tiled OME TIFF format (.ome.tif). Extracting morphology features, Feret diameter statistics, neighbors, hexagonality and polygonality scores requires the segmentation labels image. If extracting morphological features is not required, the label image collection can be not specified.
Intensity image collection: Extracting intensity-based features requires intensity image in tiled OME TIFF format. This is an optional parameter - the input for this parameter is required only when intensity-based features needs to be extracted.
File pattern: Enter file pattern to match the intensity and labeled/segmented images to extract features (https://pypi.org/project/filepattern/) Filepattern will sort and process files in the labeled and intensity image folders alphabetically if universal selector(.*.ome.tif) is used. If a more specific file pattern is mentioned as input, it will get matches from labeled image folder and intensity image folder based on the pattern implementation.
Pixel distance: Enter value for this parameter if neighbors touching cells needs to be calculated. The default value is 5. This parameter is optional.
Features: Comma separated list of features to be extracted. If all the features are required, then choose option all.
Csvfile: There are 2 options available under this category. Separatecsv - to save all the features extracted for each image in separate csv file. Singlecsv - to save all the features extracted from all the images in the same csv file.
Embedded pixel size: This is an optional parameter. Use this parameter only if units are present in the metadata and want to use those embedded units for the features extraction. If this option is selected, value for the length of unit and pixels per unit parameters are not required.
Length of unit: Unit name for conversion. This is also an optional parameter. This parameter will be displayed in plugin's WIPP user interface only when embedded pixel size parameter is not selected (ckrresponding check box checked).
Pixels per unit: If there is a metric mentioned in Length of unit, then Pixels per unit cannot be left blank and hence the scale per unit value must be mentioned in this parameter. This parameter will be displayed in plugin's user interface only when embedded pixel size parameter is not selected.
Note: If Embedded pixel size is not selected and values are entered in Length of unit and Pixels per unit, then the metric unit mentioned in length of unit will be considered. If Embedded pixel size, Length of unit and Pixels per unit is not selected and the unit and pixels per unit fields are left blank, the unit will be assumed to be pixels.
Output: The output is a csv file containing the value of features required.
For more information on WIPP, visit the official WIPP page.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Hashes for nyxus-0.4.1-cp310-cp310-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f70696a080d7c79b4f6f109fc97ff1a1c2d47c74281c816c9a14b3829451eb1 |
|
MD5 | 3ad6bc21faade144bce0a66b537a740b |
|
BLAKE2b-256 | d863582c0a0ef0d2e3555bab08b5b13d8195d5b4b54349e338a255c49a0e2ac1 |
Hashes for nyxus-0.4.1-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 982434b5c103866a1c5d81b91f860f8b63fb59235030f65fdf58e1ec3108f28d |
|
MD5 | 58dea89682db947f6879a0aac6ba1d3a |
|
BLAKE2b-256 | 67e76755d01398f4d2efb6c02e409f060b8de7e360173e876514698805dfe3e3 |
Hashes for nyxus-0.4.1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03c764197ee0dbedfdfd5d995ccc4ee23e867b0b5b798825c39f5d967cc900e8 |
|
MD5 | 4ff8572982ac3b9ad6251328f5059786 |
|
BLAKE2b-256 | f11a034e4e12575177e807df7d2c10f210b56a5023434453e7321f595040b6df |
Hashes for nyxus-0.4.1-cp39-cp39-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b93757a5d6c6e1b32ae54e502720ba7837ff0d78fd24ca2a5e1ade4f06f2d2d |
|
MD5 | 7a36121764afef0bd6a693f922ca3aa8 |
|
BLAKE2b-256 | 66ff0b13f1b253c44cd926080c06cd7a4745e5557d2a929676670b2aa62d21d0 |
Hashes for nyxus-0.4.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d59d355deb0a21a6254a89b168522fa5d87c54de673bc1bdda5034a64dd34cf2 |
|
MD5 | 7ef97a5227ab4bbcbcc273a3cde0bcef |
|
BLAKE2b-256 | 642573776f165926feda1454dd4bd731439496e0944d4371a2ade1d167b34c59 |
Hashes for nyxus-0.4.1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b08a7d397ac0592ceba92b89ea6f0a45ea48d547c14aad070a3c15b52a030308 |
|
MD5 | 98fa869e91010267947313beb4c49754 |
|
BLAKE2b-256 | eec1725ac121e9635508c947f807dfd1f1f8989f4548df0290760f729349b234 |
Hashes for nyxus-0.4.1-cp38-cp38-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0e221dc2f8a40aa438f0da071ca4cd4a62b3bc83d0a70d50bb98182d94b25db |
|
MD5 | 5b86473900167be31bfdd12146a44f8b |
|
BLAKE2b-256 | 8d7a2394956c732a1baaa48d79c25deb49d0416161c6806661c02360ea9a0397 |
Hashes for nyxus-0.4.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1e7e24a7214f56060c924c66036ad18ca7bf568487291300892c82cf323e5af |
|
MD5 | 9e00c1144729db16315b5e28164cc3ec |
|
BLAKE2b-256 | 82ea7c3c13da3bd3288f056545f8c416fcc52ba3a9ec0558b3a2baeb08da3947 |
Hashes for nyxus-0.4.1-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e9f1e68bc2a3ce272817367cbc901f03fea1f776de212df92a5a7a28203ddb4 |
|
MD5 | 6c761eca32b2bdedea1f2bb2f3261167 |
|
BLAKE2b-256 | f5b943911e48bb0a272f5d6622beccedf93f6f1c9998c60dadf4159cd835d56d |
Hashes for nyxus-0.4.1-cp37-cp37m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 052888fb4a38fd400b21117668e3bb1337bffe59d14bd4f1ea36c43708ebb1ee |
|
MD5 | d8939fb88397d950c2166c6f69c3135b |
|
BLAKE2b-256 | c747c0c3fded9c8728ad151861c740fb1d4c9e68080ce345761c93c2f3714f02 |
Hashes for nyxus-0.4.1-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 866483dbf777fed869d8fa73874f86a840f4815249188eda2b97f211c3bbe021 |
|
MD5 | f5d5ca5245e20b7ee5551602f829a131 |
|
BLAKE2b-256 | b802c488bc051dd065c0d5675b560e038a0bd6ca82d120bdce328a271bc83f15 |
Hashes for nyxus-0.4.1-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 764a618cc4eaca7b1df973480a84baa1f51adb7dd8e5ad16508beaa3f512b07c |
|
MD5 | de3bfcb396c312d7667ca1ed3941a23d |
|
BLAKE2b-256 | b515361232e6d166ac7bc96ba5d95c06f1903065f3d5371bd81952f76ed8a988 |