Docker image with VPT (The Vizgen Post-processing Tool) version 1.3.0 and cellpose version 2.2.3
To build this container you can use the following command:
git clone https://github.com/usegalaxy-eu/docker-vpt.git
cd docker-vpt
docker build -t CONTAINER_NAME .
The container is stored on Quay.io and you can get it via:
docker pull quay.io/bgruening/vpt:1.3.0-1
To analyze your data with the container:
docker run -it -v ./your_local_directory/:/directory_on_container CONTAINER_NAME:tag bash
To use vpt in a conda environment you can use the "vpt_cp2_env.yml" file and then install vpt via:
conda env create -n ENVIRONMENT_NAME -f vpt_cp2_env.yml -y
conda activate ENVIRONMENT_NAME