├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── test_and_deploy.yml ├── .gitignore ├── .napari └── DESCRIPTION.md ├── .pre-commit-config.yaml ├── LICENSE ├── MANIFEST.in ├── README.md ├── artwork └── spotiflow_logo.png ├── docs └── index.md ├── mkdocs.yml ├── napari_spotiflow ├── __init__.py ├── _io_hooks.py ├── _predict_widget.py ├── _sample_data.py ├── napari.yaml ├── resources │ └── spotiflow_transp_small.png └── utils.py ├── pyproject.toml ├── requirements.txt ├── tests ├── data │ ├── test1.csv │ └── test2.csv ├── example.py ├── test_reader.py └── test_widget.py └── tox.ini /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/test_and_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/.github/workflows/test_and_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.napari/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/.napari/DESCRIPTION.md -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/README.md -------------------------------------------------------------------------------- /artwork/spotiflow_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/artwork/spotiflow_logo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/docs/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /napari_spotiflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/napari_spotiflow/__init__.py -------------------------------------------------------------------------------- /napari_spotiflow/_io_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/napari_spotiflow/_io_hooks.py -------------------------------------------------------------------------------- /napari_spotiflow/_predict_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/napari_spotiflow/_predict_widget.py -------------------------------------------------------------------------------- /napari_spotiflow/_sample_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/napari_spotiflow/_sample_data.py -------------------------------------------------------------------------------- /napari_spotiflow/napari.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/napari_spotiflow/napari.yaml -------------------------------------------------------------------------------- /napari_spotiflow/resources/spotiflow_transp_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/napari_spotiflow/resources/spotiflow_transp_small.png -------------------------------------------------------------------------------- /napari_spotiflow/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/napari_spotiflow/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/data/test1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/tests/data/test1.csv -------------------------------------------------------------------------------- /tests/data/test2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/tests/data/test2.csv -------------------------------------------------------------------------------- /tests/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/tests/example.py -------------------------------------------------------------------------------- /tests/test_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/tests/test_reader.py -------------------------------------------------------------------------------- /tests/test_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/tests/test_widget.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weigertlab/napari-spotiflow/HEAD/tox.ini --------------------------------------------------------------------------------