CodeSandbox
If you exceed the Codespace resources, we have prepared a solution using CodeSandbox. These are the steps to follow:
- Go to the website: CodeSandbox.
- Sign in using your GitHub or your Google Account (top right corner).
- Once signed-in, click on
+ Create(top right corner). - Select
Docker CodeSanbox. - On the
Configure windowleave everything as default and click on Create Devbox. - Wait until the microVM is created.
- Now it looks like VS code. Create a new terminal then.
- Run the following commands on the terminal:
curl -s https://get.sdkman.io | bash
source "/root/.sdkman/bin/sdkman-init.sh"
sdk install java 17.0.10-tem
curl -s https://get.nextflow.io | bash
chmod +x nextflow
export PATH=${PATH}:/project/workspace
git clone https://github.com/jeffe107/taxoflow_tutorial
cd taxoflow_tutorial
export NXF_VER=25.10.4
export NXF_SYNTAX_PARSER=v2
- Now you should be into the repository folder, just like on GitHub Codespaces.