small-fish-gui 1.0.1__tar.gz → 1.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/PKG-INFO +1 -1
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/pyproject.toml +1 -1
- small_fish_gui-1.0.3/src/small_fish_gui/.github/workflows/python-publish.yml +39 -0
- small_fish_gui-1.0.3/src/small_fish_gui/LICENSE +24 -0
- small_fish_gui-1.0.3/src/small_fish_gui/README.md +43 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/__main__.py +1 -1
- small_fish_gui-1.0.3/src/small_fish_gui/requirements.txt +17 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/LICENSE +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/README.md +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/__init__.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/gui/__init__.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/gui/animation.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/gui/general_help_screenshot.png +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/gui/help_module.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/gui/layout.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/gui/mapping_help_screenshot.png +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/gui/prompts.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/gui/segmentation_help_screenshot.png +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/gui/test.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/interface/__init__.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/interface/image.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/interface/output.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/interface/parameters.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/interface/testing.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/pipeline/_colocalisation.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/pipeline/_custom_errors.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/pipeline/_detection_visualisation.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/pipeline/_preprocess.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/pipeline/_segmentation.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/pipeline/_signaltonoise.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/pipeline/actions.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/pipeline/detection.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/pipeline/main.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/pipeline/test.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/start.py +0 -0
- {small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: small_fish_gui
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.3
|
|
4
4
|
Summary: Small Fish is a python application for the analysis of smFish images. It provides a ready to use graphical interface to combine famous python packages for cell analysis without any need for coding.
|
|
5
5
|
Project-URL: Homepage, https://github.com/2Echoes/small_fish
|
|
6
6
|
Project-URL: Issues, https://github.com/2Echoes/small_fish/issues
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# This workflow will upload a Python Package using Twine when a release is created
|
|
2
|
+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
|
|
3
|
+
|
|
4
|
+
# This workflow uses actions that are not certified by GitHub.
|
|
5
|
+
# They are provided by a third-party and are governed by
|
|
6
|
+
# separate terms of service, privacy policy, and support
|
|
7
|
+
# documentation.
|
|
8
|
+
|
|
9
|
+
name: Upload Python Package
|
|
10
|
+
|
|
11
|
+
on:
|
|
12
|
+
release:
|
|
13
|
+
types: [published]
|
|
14
|
+
|
|
15
|
+
permissions:
|
|
16
|
+
contents: read
|
|
17
|
+
|
|
18
|
+
jobs:
|
|
19
|
+
deploy:
|
|
20
|
+
|
|
21
|
+
runs-on: ubuntu-latest
|
|
22
|
+
|
|
23
|
+
steps:
|
|
24
|
+
- uses: actions/checkout@v4
|
|
25
|
+
- name: Set up Python
|
|
26
|
+
uses: actions/setup-python@v3
|
|
27
|
+
with:
|
|
28
|
+
python-version: '3.x'
|
|
29
|
+
- name: Install dependencies
|
|
30
|
+
run: |
|
|
31
|
+
python -m pip install --upgrade pip
|
|
32
|
+
pip install build
|
|
33
|
+
- name: Build package
|
|
34
|
+
run: python -m build
|
|
35
|
+
- name: Publish package
|
|
36
|
+
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
|
|
37
|
+
with:
|
|
38
|
+
user: __token__
|
|
39
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
BSD 2-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023, Floric Slimani
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
16
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
17
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
18
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
19
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
20
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
21
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
22
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
23
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
24
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# Small Fish
|
|
2
|
+
**Small Fish** is a python application for the analysis of smFish images. It provides a ready to use graphical interface to combine famous python packages for cell analysis without any need for coding.
|
|
3
|
+
|
|
4
|
+
Cell segmentation is peformed using *cellpose* (published work) : https://github.com/MouseLand/cellpose
|
|
5
|
+
|
|
6
|
+
Spot detection is performed via *big-fish* (published work) : https://github.com/fish-quant/big-fish
|
|
7
|
+
|
|
8
|
+
Time stacks are not yet supported.
|
|
9
|
+
|
|
10
|
+
## Installation
|
|
11
|
+
|
|
12
|
+
It is higly recommanded to create a specific [conda](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html) or [virtual](https://docs.python.org/3.6/library/venv.html) environnement to install small fish.
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
conda create -n small_fish python=3.8
|
|
16
|
+
activate small_fish
|
|
17
|
+
```
|
|
18
|
+
Then download the small_fish package :
|
|
19
|
+
```bash
|
|
20
|
+
pip install small_fish_gui
|
|
21
|
+
```
|
|
22
|
+
<b> (Recommended) </b> Results visualisation is achieved through *Napari* which you can install with :
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pip install napari[all]
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Run Small fish
|
|
29
|
+
|
|
30
|
+
First activate your python environnement :
|
|
31
|
+
```bash
|
|
32
|
+
activate small_fish
|
|
33
|
+
```
|
|
34
|
+
Then launch Small fish :
|
|
35
|
+
```bash
|
|
36
|
+
python -m small_fish_gui
|
|
37
|
+
```
|
|
38
|
+
## Developpement
|
|
39
|
+
|
|
40
|
+
Optional features to include in future versions :
|
|
41
|
+
- batch processing
|
|
42
|
+
- time stack (which would include cell tracking)
|
|
43
|
+
- 3D segmentation
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
big-fish==0.6.2
|
|
2
|
+
cellpose==3.0.7
|
|
3
|
+
czifile==2019.7.2
|
|
4
|
+
imageio==2.34.0
|
|
5
|
+
napari==0.4.19.post1
|
|
6
|
+
napari-console==0.0.9
|
|
7
|
+
napari-plugin-engine==0.2.0
|
|
8
|
+
napari-plugin-manager==0.1.0a2
|
|
9
|
+
napari-svg==0.1.10
|
|
10
|
+
numpy==1.24.4
|
|
11
|
+
pandas==1.5.3
|
|
12
|
+
PySimpleGUI==4.60.5
|
|
13
|
+
scipy==1.9.1
|
|
14
|
+
scikit-image==0.19.1
|
|
15
|
+
scikit-learn==1.3.2
|
|
16
|
+
openpyxl==3.1.2
|
|
17
|
+
pyarrow==11.0.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/gui/general_help_screenshot.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/gui/mapping_help_screenshot.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{small_fish_gui-1.0.1 → small_fish_gui-1.0.3}/src/small_fish_gui/pipeline/_colocalisation.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|