├── LICENSE.md ├── README.md ├── apt.txt ├── data_download.py ├── environment.yml ├── jupyter_desktop ├── jupyter_desktop.py ├── setup.py └── share │ ├── Fiji.desktop │ ├── OMERO.insight.desktop │ ├── dummy.txt │ └── xstartup ├── napari_3d_image_processing.ipynb ├── napari_ilastik.ipynb ├── postBuild └── start /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/README.md -------------------------------------------------------------------------------- /apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/apt.txt -------------------------------------------------------------------------------- /data_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/data_download.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/environment.yml -------------------------------------------------------------------------------- /jupyter_desktop/jupyter_desktop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/jupyter_desktop/jupyter_desktop.py -------------------------------------------------------------------------------- /jupyter_desktop/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/jupyter_desktop/setup.py -------------------------------------------------------------------------------- /jupyter_desktop/share/Fiji.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/jupyter_desktop/share/Fiji.desktop -------------------------------------------------------------------------------- /jupyter_desktop/share/OMERO.insight.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/jupyter_desktop/share/OMERO.insight.desktop -------------------------------------------------------------------------------- /jupyter_desktop/share/dummy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jupyter_desktop/share/xstartup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/jupyter_desktop/share/xstartup -------------------------------------------------------------------------------- /napari_3d_image_processing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/napari_3d_image_processing.ipynb -------------------------------------------------------------------------------- /napari_ilastik.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guiwitz/napari_demo/HEAD/napari_ilastik.ipynb -------------------------------------------------------------------------------- /postBuild: -------------------------------------------------------------------------------- 1 | #python data_download.py 2 | -------------------------------------------------------------------------------- /start: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -eux 3 | 4 | ln -s "$CONDA_DIR/vnc/Desktop" 5 | 6 | exec "$@" 7 | --------------------------------------------------------------------------------