This was copied from Stelios's repo -> https://github.com/cajal/at-image.git
The function in the pipeline that runs a rigid, affine, and nonrigid slice to volume registration. should be here -> (https://github.com/cajal/pipeline/blob/55a68e7404490a730bddba6051ef51aaced76a4e/python/pipeline/stack.py#L1637)
image processing and registration utilities of the Tolias Lab
Requirements
- Install Docker and sign into the application.
Check it works by typing
docker version
at the CLI. - You will also need Docker Compose.
This may have been installed with Docker.
If so,
docker compose version
will return something. If not, visit the above link.
To deploy image and launch into jupyterlab:
- clone repository
- navigate to the deploy folder
- in the deploy folder add an empty file called
.env
- in terminal run:
docker compose build jupyterlab
On the first time it will take several minutes to download the Docker image and build.
-
Optional
In the .env file the following environment variables can be added:
`JUPYTER_PORT_CONTAINER=8888` # desired port w/o this variable the default is 8888 `JUPYTER_PASSWORD=some password` # desired password for jupyterlab
-
in terminal run:
docker compose up -d jupyterlab
- In browser, navigate to
localhost:8888
or to whatever port set withJUPYTER_PORT_CONTAINER
if changed from the default