As an alternative to running this app on the SciLifeLab Serve servers you can run a copy of it on your own computer. This is possible because all apps on our service are packaged as Docker containers. Docker containers include everything that is needed to run a particular piece of software and are easy to run on any machine. Note that your computer may need to have significant CPU and RAM resources to be able to run some of the apps locally.
Step 1. Install Docker
You will need Docker Engine or Docker Desktop running on your computer. Follow official instructions for your operating system to do that.
Step 2. Launch the app
Navigate to Terminal (or Windows Terminal) window and run the following command. This will download the Docker image of this app and subsequently launch it.
docker run --rm -p :
Navigate to http://localhost:/ to open the app.
Step 3. Stop the app
In order to stop the running app you can press Control+C. Keep in mind that your session will not be saved when you stop the app. Every time you start the app it will be starting from the same default state. See this documentation page for how to remove a downloaded image from your computer.