small-fish-gui 2.0.2__py3-none-any.whl → 2.0.3__py3-none-any.whl
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/__init__.py +2 -2
- small_fish_gui/batch/integrity.py +2 -2
- small_fish_gui/batch/pipeline.py +46 -11
- small_fish_gui/batch/prompt.py +102 -41
- small_fish_gui/batch/update.py +26 -13
- small_fish_gui/batch/utils.py +1 -1
- small_fish_gui/gui/__init__.py +1 -0
- small_fish_gui/gui/_napari_widgets.py +418 -6
- small_fish_gui/gui/layout.py +332 -112
- small_fish_gui/gui/napari_visualiser.py +107 -22
- small_fish_gui/gui/prompts.py +161 -48
- small_fish_gui/gui/testing.ipynb +231 -24
- small_fish_gui/gui/tooltips.py +7 -1
- small_fish_gui/hints.py +23 -7
- small_fish_gui/interface/__init__.py +7 -1
- small_fish_gui/interface/default_settings.py +118 -0
- small_fish_gui/interface/image.py +43 -11
- small_fish_gui/interface/settings.json +50 -0
- small_fish_gui/interface/testing.ipynb +4354 -0
- small_fish_gui/interface/user_settings.py +96 -0
- small_fish_gui/main_menu.py +13 -1
- small_fish_gui/pipeline/{_signaltonoise.py → _bigfish_wrapers.py} +59 -7
- small_fish_gui/pipeline/_colocalisation.py +23 -24
- small_fish_gui/pipeline/_preprocess.py +46 -32
- small_fish_gui/pipeline/actions.py +48 -5
- small_fish_gui/pipeline/detection.py +71 -141
- small_fish_gui/pipeline/segmentation.py +360 -268
- small_fish_gui/pipeline/spots.py +3 -3
- small_fish_gui/pipeline/utils.py +5 -1
- small_fish_gui/README.md → small_fish_gui-2.0.3.dist-info/METADATA +35 -0
- small_fish_gui-2.0.3.dist-info/RECORD +46 -0
- {small_fish_gui-2.0.2.dist-info → small_fish_gui-2.0.3.dist-info}/WHEEL +1 -1
- small_fish_gui/.github/workflows/python-publish.yml +0 -39
- small_fish_gui/LICENSE +0 -24
- small_fish_gui/batch/values.txt +0 -65
- small_fish_gui/default_values.py +0 -51
- small_fish_gui/gui/screenshot/general_help_screenshot.png +0 -0
- small_fish_gui/gui/screenshot/mapping_help_screenshot.png +0 -0
- small_fish_gui/gui/screenshot/segmentation_help_screenshot.png +0 -0
- small_fish_gui/illustrations/DetectionVitrine_filtre.png +0 -0
- small_fish_gui/illustrations/DetectionVitrine_signal.png +0 -0
- small_fish_gui/illustrations/FocciVitrine.png +0 -0
- small_fish_gui/illustrations/FocciVitrine_no_spots.png +0 -0
- small_fish_gui/illustrations/Segmentation2D.png +0 -0
- small_fish_gui/illustrations/Segmentation2D_with_labels.png +0 -0
- small_fish_gui/logo.png +0 -0
- small_fish_gui/pipeline/testing.ipynb +0 -3636
- small_fish_gui/requirements.txt +0 -19
- small_fish_gui-2.0.2.dist-info/METADATA +0 -75
- small_fish_gui-2.0.2.dist-info/RECORD +0 -59
- {small_fish_gui-2.0.2.dist-info → small_fish_gui-2.0.3.dist-info}/licenses/LICENSE +0 -0
small_fish_gui/pipeline/spots.py
CHANGED
|
@@ -48,7 +48,7 @@ def compute_Spots(
|
|
|
48
48
|
return pd.DataFrame()
|
|
49
49
|
|
|
50
50
|
if type(cluster_id) == type(None) : #When user doesn't select cluster
|
|
51
|
-
cluster_id = [np.
|
|
51
|
+
cluster_id = [np.nan]*len(spots)
|
|
52
52
|
|
|
53
53
|
index = list(zip(*spots))
|
|
54
54
|
index = tuple(index)
|
|
@@ -59,14 +59,14 @@ def compute_Spots(
|
|
|
59
59
|
else :
|
|
60
60
|
in_nuc_list = list(nucleus_label.astype(bool)[index])
|
|
61
61
|
else :
|
|
62
|
-
in_nuc_list = np.
|
|
62
|
+
in_nuc_list = np.nan
|
|
63
63
|
if type(cell_label) != type(None) :
|
|
64
64
|
if cell_label.ndim == 3 :
|
|
65
65
|
cell_label_list = list(cell_label[index])
|
|
66
66
|
else :
|
|
67
67
|
cell_label_list = list(cell_label[index[-2:]]) #Only plane coordinates
|
|
68
68
|
else :
|
|
69
|
-
cell_label_list = np.
|
|
69
|
+
cell_label_list = np.nan
|
|
70
70
|
id_list = np.arange(len(spots))
|
|
71
71
|
|
|
72
72
|
coord_list = list(zip(*index))
|
small_fish_gui/pipeline/utils.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import numpy as np
|
|
2
|
+
import platform
|
|
2
3
|
|
|
3
4
|
from math import ceil
|
|
4
5
|
from itertools import zip_longest
|
|
@@ -13,4 +14,7 @@ def from_label_get_centeroidscoords(label: np.ndarray):
|
|
|
13
14
|
n should be replace with 1,2.. according to the axe you wish to access."""
|
|
14
15
|
|
|
15
16
|
centroid = regionprops_table(label, properties= ["label","centroid"])
|
|
16
|
-
return centroid
|
|
17
|
+
return centroid
|
|
18
|
+
|
|
19
|
+
def using_mps():
|
|
20
|
+
return platform.system() == "Darwin" and torch.backends.mps.is_available()
|
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: small_fish_gui
|
|
3
|
+
Version: 2.0.3
|
|
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
|
+
Project-URL: Homepage, https://github.com/SmallFishGUI/small_fish_gui
|
|
6
|
+
Project-URL: Wiki, https://github.com/SmallFishGUI/small_fish_gui/wiki
|
|
7
|
+
Project-URL: Issues, https://github.com/SmallFishGUI/small_fish_gui/issues
|
|
8
|
+
Author-email: Slimani Floric <floric.slimani@live.fr>
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.12
|
|
14
|
+
Requires-Dist: af-eraser>=0.1.0
|
|
15
|
+
Requires-Dist: aicspylibczi>=3.3.1
|
|
16
|
+
Requires-Dist: big-fish-reloaded==0.6.2
|
|
17
|
+
Requires-Dist: cellpose>=4.0.6
|
|
18
|
+
Requires-Dist: czifile>=2019.7.2
|
|
19
|
+
Requires-Dist: freesimplegui>=5.1.1
|
|
20
|
+
Requires-Dist: imageio>=2.34.0
|
|
21
|
+
Requires-Dist: napari-console>=0.0.9
|
|
22
|
+
Requires-Dist: napari-plugin-engine>=0.2.0
|
|
23
|
+
Requires-Dist: napari-plugin-manager>=0.1.0a2
|
|
24
|
+
Requires-Dist: napari-svg>=0.1.10
|
|
25
|
+
Requires-Dist: napari>=0.4.19.post1
|
|
26
|
+
Requires-Dist: napari[all]
|
|
27
|
+
Requires-Dist: numpy>=1.26
|
|
28
|
+
Requires-Dist: openpyxl>=3.1.2
|
|
29
|
+
Requires-Dist: pandas>=2.1.1
|
|
30
|
+
Requires-Dist: pyarrow>=11.0.0
|
|
31
|
+
Requires-Dist: scikit-image>=0.19.1
|
|
32
|
+
Requires-Dist: scikit-learn>=1.3.2
|
|
33
|
+
Requires-Dist: scipy
|
|
34
|
+
Description-Content-Type: text/markdown
|
|
35
|
+
|
|
1
36
|
# Small Fish - A User-Friendly Graphical Interface for smFISH Image Quantification
|
|
2
37
|
|
|
3
38
|
[](https://opensource.org/licenses/BSD-2-Clause)
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
small_fish_gui/__init__.py,sha256=L_lJwkpdlIGo4eXl6wIvnwALDNwtZ0acL3OeWxoNi0Y,2163
|
|
2
|
+
small_fish_gui/__main__.py,sha256=xwpFMDuo0kkYvPamyhlTHJ68bymDfbRpPzKy3SKwezY,1639
|
|
3
|
+
small_fish_gui/hints.py,sha256=NEKqCbjXF3guHnc1dzq_LYYGlTxIV6z6wtdwVlmgHos,3349
|
|
4
|
+
small_fish_gui/main_menu.py,sha256=z0ZlidWNGHLYYnBx2Z1i2IX_EGQr-HtIlsOQl-yTw4o,6273
|
|
5
|
+
small_fish_gui/utils.py,sha256=LM6QW2ono_LIRv7JXIIq7ZxxbDXqBtZ5uR9gjKJfwM8,1903
|
|
6
|
+
small_fish_gui/batch/__init__.py,sha256=ku2_Yate-UG89Q0BmE2B9kFV4kOz-u9Lf2lj6VsdFXs,127
|
|
7
|
+
small_fish_gui/batch/input.py,sha256=mqnP8LBhyNbtlcqjVlUiVeuHw4YxOX3GgzJbq03isKE,1477
|
|
8
|
+
small_fish_gui/batch/integrity.py,sha256=3m3faYeIM6-l5-6butv0sc56dKTz56GNiID0bps_mL8,5085
|
|
9
|
+
small_fish_gui/batch/output.py,sha256=cKZBsO48HaKfxfa6cwcBKw3YRILBCcdC8rpYd2OTEVs,520
|
|
10
|
+
small_fish_gui/batch/pipeline.py,sha256=oVylDQ3v88Wz1BuGoVBTchPGBkVFKRhMMXclSYkr6kY,14462
|
|
11
|
+
small_fish_gui/batch/prompt.py,sha256=LIjzVijpvZ9YShQ2-FRjit2RoJZhSMyebcKnsx_99vs,22001
|
|
12
|
+
small_fish_gui/batch/test.py,sha256=FcoCngSeueociwVoG8V3C6lQO7rrRHUfIVA2hJKr4v4,213
|
|
13
|
+
small_fish_gui/batch/update.py,sha256=Gv1805-xUtrJ3BK0HdflBSnSFAEB5RmnAPk6peAR9CA,6169
|
|
14
|
+
small_fish_gui/batch/utils.py,sha256=apHxp72OdjTSUyj4ZwN75NYc12Am4m7N9Sw03TrjLMk,1870
|
|
15
|
+
small_fish_gui/gui/__init__.py,sha256=idpRSg2FFawF0ydfc7Y8ep6gQ4_jhroL_jZURlRE_BM,920
|
|
16
|
+
small_fish_gui/gui/_napari_widgets.py,sha256=xXa-da5MYEWCpwlnE7LkURXSjxvAcF2EHj9-jm482Rk,34934
|
|
17
|
+
small_fish_gui/gui/animation.py,sha256=MnYsA1kxQZ72L_H0knxOs41lG0ZZv1re7gSgYNmZY00,983
|
|
18
|
+
small_fish_gui/gui/layout.py,sha256=Js3fwYDQ8Ejxw_dAGN53gKSGCLNiIKxHyiv49vjLA7g,30905
|
|
19
|
+
small_fish_gui/gui/napari_visualiser.py,sha256=mipNwfcUDVZSZjlnZDbVe9E4p_2cBsxFDoQX6vqhsbk,13935
|
|
20
|
+
small_fish_gui/gui/prompts.py,sha256=vWLLJZ7jdYIbjT71qHGiE1o9-pTrc607shnKW6EZi8I,18361
|
|
21
|
+
small_fish_gui/gui/testing.ipynb,sha256=2E51kT3BcXvOvOSdmYIy4Cxbe-4HtnOjzPTZQHDZJJw,69148
|
|
22
|
+
small_fish_gui/gui/theme.py,sha256=30nujS48ZRdD1HVbzdEBkiAWlhow1AGgXSQNZcGEsaQ,118
|
|
23
|
+
small_fish_gui/gui/tooltips.py,sha256=av_oVmDTT69_wbSlek1mDmnLhB9JUyuEheqVB6rriqw,1376
|
|
24
|
+
small_fish_gui/interface/__init__.py,sha256=nqMwHG-l1yMm8iaD6hhCdji5RiKImzNFQcbdLSf9RLw,519
|
|
25
|
+
small_fish_gui/interface/default_settings.py,sha256=vI4-Pl_MpAGuCp7SjWdnpYvWwde_3rfvm9Mb_smaDho,3442
|
|
26
|
+
small_fish_gui/interface/image.py,sha256=0icuHuKFuSZ-YUTIskz-S2HcJ3wXtOrW37iPg8tknHg,3440
|
|
27
|
+
small_fish_gui/interface/inoutput.py,sha256=toB2SNNZNiupZTT2-zQKJ6ewI-_DJTVrXIkdq8TMWXY,5793
|
|
28
|
+
small_fish_gui/interface/settings.json,sha256=WqMjgN1Ex01hXruJ1Kkho4nPi9PbEPpOIplT5IIkHxQ,1366
|
|
29
|
+
small_fish_gui/interface/testing.ipynb,sha256=I8iGdcYsds4iBxL417D_PXt7bZcEkHAjWAgXA9DNlSM,323719
|
|
30
|
+
small_fish_gui/interface/testing.py,sha256=AUdqmFJ6kBvFTOLRfZZJBBe3nm1key2bGpUDXJRaueI,2561
|
|
31
|
+
small_fish_gui/interface/user_settings.py,sha256=vMpj-s9tzMKQy1CdJ3SO-6yAknU-ZIMT0RZQs8WAGPY,2620
|
|
32
|
+
small_fish_gui/pipeline/__init__.py,sha256=Oww6dcuvnktl5jFKLriz8ZXObKo9MkneE739A8C1reY,739
|
|
33
|
+
small_fish_gui/pipeline/_bigfish_wrapers.py,sha256=WcIu5HLc4bUuU8qmsINP5snXef3Tx9zJDNKES-SiftA,9776
|
|
34
|
+
small_fish_gui/pipeline/_colocalisation.py,sha256=m6wRgf_nESqvkvkD2RRyTj3ekKKvk43ehvXZ-sXYX84,21714
|
|
35
|
+
small_fish_gui/pipeline/_custom_errors.py,sha256=tQ-AUhgzIFpK30AZiQQrtHCHyGVRDdAoIjzL0Fk-1pA,43
|
|
36
|
+
small_fish_gui/pipeline/_preprocess.py,sha256=zfwhNoAUkVv1TYlyffNQkSTitMXTDokADabBeHuB58U,15766
|
|
37
|
+
small_fish_gui/pipeline/actions.py,sha256=lPKyX12qEJNnQ4ArYqCRkLrFzwzGgIEl1_HpSFtTMKo,20476
|
|
38
|
+
small_fish_gui/pipeline/detection.py,sha256=Gi1H01P8n7EsthY1NsyRR407DwXxvrJB9S91aMBfc0A,35961
|
|
39
|
+
small_fish_gui/pipeline/segmentation.py,sha256=rlDxHrbhokEJngmaGTjWHRp06XXraQWUWWUHA4sROq0,32065
|
|
40
|
+
small_fish_gui/pipeline/spots.py,sha256=3kMe404RHOsNLRZQV6RdpxrHqaRRiGK4_qKSx6jesDM,6738
|
|
41
|
+
small_fish_gui/pipeline/test.py,sha256=w4ZMGDmUDXxVgWTlZ2TKw19W8q5gcE9gLMKe0SWnRrw,2827
|
|
42
|
+
small_fish_gui/pipeline/utils.py,sha256=dYV7WAJ375xM5RdaljjxeKvBC1niQvBl1E55SeIiIYo,563
|
|
43
|
+
small_fish_gui-2.0.3.dist-info/METADATA,sha256=KBV5T--5i-x6ek7K1hVoQScF9p8Z3jWK2COHcoY_GE4,5817
|
|
44
|
+
small_fish_gui-2.0.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
45
|
+
small_fish_gui-2.0.3.dist-info/licenses/LICENSE,sha256=-iFy8VGBYs5VsHglKpk4D-hxqQ2jMJaqmfq_ulIzDks,1303
|
|
46
|
+
small_fish_gui-2.0.3.dist-info/RECORD,,
|
|
@@ -1,39 +0,0 @@
|
|
|
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 }}
|
small_fish_gui/LICENSE
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
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.
|
small_fish_gui/batch/values.txt
DELETED
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
List of keys for batch 'values' dict instance :
|
|
2
|
-
|
|
3
|
-
Batch_folder
|
|
4
|
-
0
|
|
5
|
-
image_path
|
|
6
|
-
3D stack
|
|
7
|
-
multichannel
|
|
8
|
-
Dense regions deconvolution
|
|
9
|
-
do_cluster_computation
|
|
10
|
-
Segmentation
|
|
11
|
-
Napari correction
|
|
12
|
-
x
|
|
13
|
-
y
|
|
14
|
-
z
|
|
15
|
-
c
|
|
16
|
-
t
|
|
17
|
-
cyto_model_name
|
|
18
|
-
cytoplasm_channel
|
|
19
|
-
cytoplasm_diameter
|
|
20
|
-
nucleus_model_name
|
|
21
|
-
nucleus channel
|
|
22
|
-
nucleus_diameter
|
|
23
|
-
segment_only_nuclei
|
|
24
|
-
show_segmentation
|
|
25
|
-
saving path
|
|
26
|
-
filename
|
|
27
|
-
threshold
|
|
28
|
-
threshold penalty
|
|
29
|
-
channel to compute
|
|
30
|
-
voxel_size_z
|
|
31
|
-
voxel_size_y
|
|
32
|
-
voxel_size_x
|
|
33
|
-
spot_size_z
|
|
34
|
-
spot_size_y
|
|
35
|
-
spot_size_x
|
|
36
|
-
log_kernel_size_z
|
|
37
|
-
log_kernel_size_y
|
|
38
|
-
log_kernel_size_x
|
|
39
|
-
minimum_distance_z
|
|
40
|
-
minimum_distance_y
|
|
41
|
-
minimum_distance_x
|
|
42
|
-
nucleus channel signal
|
|
43
|
-
alpha
|
|
44
|
-
beta
|
|
45
|
-
gamma
|
|
46
|
-
deconvolution_kernel_z
|
|
47
|
-
deconvolution_kernel_y
|
|
48
|
-
deconvolution_kernel_x
|
|
49
|
-
cluster size
|
|
50
|
-
min number of spots
|
|
51
|
-
show_interactive_threshold_selector
|
|
52
|
-
spots_extraction_folder
|
|
53
|
-
spots_filename
|
|
54
|
-
do_spots_csv
|
|
55
|
-
do_spots_excel
|
|
56
|
-
do_spots_feather
|
|
57
|
-
output_folder
|
|
58
|
-
batch_name
|
|
59
|
-
save segmentation
|
|
60
|
-
save detection
|
|
61
|
-
extract spots
|
|
62
|
-
csv
|
|
63
|
-
xlsx
|
|
64
|
-
feather
|
|
65
|
-
2
|
small_fish_gui/default_values.py
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
""""
|
|
2
|
-
Constant submodule to have a common reference for parameters default values
|
|
3
|
-
"""
|
|
4
|
-
import os
|
|
5
|
-
|
|
6
|
-
#Image
|
|
7
|
-
IS_MULTICHANNEL = False
|
|
8
|
-
IS_3D_STACK = False
|
|
9
|
-
CHANNEL = 0
|
|
10
|
-
NUC_CHANNEL = 1
|
|
11
|
-
|
|
12
|
-
#Segmentation
|
|
13
|
-
FLOW_THRESHOLD = 0.4
|
|
14
|
-
CELLPROB_THRESHOD = 0.
|
|
15
|
-
CYTO_MODEL = "cpsam"
|
|
16
|
-
NUC_MODEL = "cpsam"
|
|
17
|
-
CYTO_DIAMETER = 90
|
|
18
|
-
NUC_DIAMETER = 60
|
|
19
|
-
ANISOTROPY = 1.
|
|
20
|
-
SHOW_SEGMENTATION = True
|
|
21
|
-
SEGMENT_ONLY_NUCLEI = False
|
|
22
|
-
DO_3D_SEMGENTATION = False
|
|
23
|
-
VISUAL_PATH = os.getcwd()
|
|
24
|
-
SAVE_SEGMENTATION_VISUAL = False
|
|
25
|
-
|
|
26
|
-
#Detection
|
|
27
|
-
THRESHOLD = None
|
|
28
|
-
THRESHOLD_PENALTY = 1
|
|
29
|
-
DO_DENSE_REGIONS_DECONVOLUTION = False
|
|
30
|
-
DO_CLUSTER_COMPUTATION = False
|
|
31
|
-
DO_CLUSTER_COMPUTATION = False
|
|
32
|
-
SHOW_NAPARI_CORRECTOR = True
|
|
33
|
-
INTERACTIVE_THRESHOLD = False
|
|
34
|
-
|
|
35
|
-
#Deconvolution
|
|
36
|
-
ALPHA = 0.5
|
|
37
|
-
BETA = 1.
|
|
38
|
-
GAMMA = 3.
|
|
39
|
-
|
|
40
|
-
#Clustering
|
|
41
|
-
CLUSTER_SIZE = 400
|
|
42
|
-
MIN_NUMBER_SPOTS = 5
|
|
43
|
-
|
|
44
|
-
#Coloc
|
|
45
|
-
COLOC_RANGE = 400
|
|
46
|
-
COLOC_VOXEL_SIZE = (1,2,3)
|
|
47
|
-
|
|
48
|
-
#Spots Extraction
|
|
49
|
-
DO_CSV = False
|
|
50
|
-
DO_EXCEL = False
|
|
51
|
-
SPOT_EXTRACTION_FOLDER = os.getcwd()
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
small_fish_gui/logo.png
DELETED
|
Binary file
|