Add tools
The goal of neurodesk is to provide users with a large choice of tools to use in their pipelines. Use the guide below to add a tool to neurodesktop or neurocontainers.
Guiding principles
To decide if a tool should be packaged in a singularity container in neurocontainers or be installed in the neurodesktop container we are currently following these guiding principles:
- neurodesk is not a package manager. This means we are not distributing tools in containers that can easily be installed via a standard package manager
- neurodesk allows users to have multiple versions of tools in parallel via lmod, this means that if different versions of a tool can’t be installed in parallel we package the tool inside a container.
- neurodesk aims to provide tooling to link tools from different containers (such as workflow managers like nipype or nextflow). This means that if a tool is required to coordinate various container-tools, it should be in the neurodesktop container.
Examples:
easy install | coordinates containers | small in size | latest version is ok | useful to most users | Conclusion | |
---|---|---|---|---|---|---|
git | yes | yes | yes | yes | yes | neurodesktop |
lmod | no | yes | yes | yes | yes | neurodesktop |
nipype | yes | yes | yes | yes | yes | neurodesktop |
vscode | yes | yes | yes | yes | yes | neurodesktop |
itksnap | yes | no | yes | yes | yes | container? |
convert3D | yes | no | yes | no | no | container |
fsl | no | no | no | no | no | container |
mrtrix | no | no | no | no | no | container |
freesurfer | no | no | no | no | no | container |
Adding new tools via our interactive container builder:
This is the recommended way for all contributors: https://www.neurodesk.org/developers/new_tools/contribute/
Adding new tools via manual steps
This is only for developers who are familiar with building containers and github:
Adding new recipes
Refer to neurodocker for more information on neurodocker recipes
Build container
Environment Requirements
- Linux environment where you have admin privileges (i.e., can run ‘sudo’)
- Docker
- Recent Python3 Version
Search for “python_requires” in https://github.com/NeuroDesk/neurodocker/blob/master/setup.cfg for minimal version of Python3 required. - If you also have Python2 installed, follow these instructions to ensure the ‘python’ command launches python3: https://stackoverflow.com/questions/68792446/how-to-set-python3-as-default
- If you have several versions of Python3 installed in the environment, typing ‘python’ in the terminal should launch a version with equal or higher version number
- Python pip3
This should be launched by ‘python -m pip’ - git
Install Neurodocker
Neurodocker is the dependency we use to build containers.
- (optional) Sync upstream repository:
If you have the permissions to do so: Press “Fetch upstream” in https://github.com/NeuroDesk/neurodocker to check if our fork of Neurodocker is already up-to-date. Otherwise, open an issue in https://github.com/NeuroDesk/neurocontainers/issues, requesting to pull-in latest changes from Neurodocker upstream into our fork of Neurodocker. One of the admins will attend the issue and perform the operation. - (optional) Add a new neurodocker tool:
If relevant to your project, add an option to neurodocker that installs new software (https://github.com/NeuroDesk/neurodocker) and create a pull request to neurodocker’s main repository (add new tool in a branch!). - Clone our fork of Neurodocker:
git clone https://github.com/NeuroDesk/neurodocker/
- Install neurodocker:
cd neurodocker python -m pip install . cd ..
- Append line to .bashrc for adding the path:
echo 'export PATH=${PATH}:${HOME}/.local/bin' >> ${HOME}/.bashrc
- Close the terminal, and reopen it for the updated PATH to take effect
Fork the Neurocontainers repository
- Fork neurocontainers and setup github actions.
Create a new app
Copy the directory template and rename to NEWAPP in
neurocontainers/recipes
(NEWAPP being the name of the application to be displayed in Neurodesk’s menu; notice it shouldn’t have any special characters):cd neurocontainers/recipes cp -R template NEWAPP
Create your Container Files:
Modifybuild.sh
inneurocontainers/recipes/NEWAPP
to build your application and updateREADME.md
(make sure the version is correct in the README!). Notice that the example build script in the template has instructions to build a container for datalad, that may or may not suite your exact needscd NEWAPP (edit build.sh as required) (edit README.md as required)
Upload your application to object storage first if needed, so you can then download it in
build.sh
(ask for instructions about this if you don’t know the key, and never share it anywhere public!)Building containers
Any NEWAPP under the
recipes/
directory are built and pushed automatically via github actionsBuild and test the container locally
run the build script with the debug flag:
cd recipes/NEWAPP chmod +x build.sh ./build.sh -ds
NOTICE: the README.md file will automatically be updated to reflect the version of the tool given in the build.sh script. For this to work, leave “toolVersion” in the README and do not remove this or alter.
test running some commands within the container that should be available in your local docker container repository.
For example, to open an interactive shell in a container (with the home folder /root bound to /root on host), you may run:
sudo docker run -it -v /root:/root --entrypoint /bin/bash NEWAPP_VERSION:TAG
with VERSION being the version of the app, and TAG the version tag of the container (run ‘sudo docker image list’ to find the tag)
if your application requires a Matlab Runtime and you get an error about shared library “libmwlaunchermain.so” not found, check which version of the runtime was installed by the build script
Update changes in local git repository
git add .github/workflows/NEWAPP.yml recipes/NEWAPP/test.sh recipes/NEWAPP/build.sh recipes/NEWAPP/README.md git config user.email "the email that you use for github" git config user.name "your name" git commit
Push the new or updated app to Neurocontainers
Prerequisite
Generate git personal access token (if you don’t have one already)
- Browse to https://github.com/
- Log into your account
- Press on your picture in upper right corner → Setting → Developer Settings → Personal Access Token
- Press on “generate personal access token”
- Write something in “Notes” (doesn’t matter what, it’s for your own use)
- Check “repo”
- Check “Workflow”
- Press “Generate Token” at the bottom
- Copy the token displayed to somewhere safe, as you will have to user it later
Verify that user has write permission to /neurocommand/local
- If not, run
sudo chmod a+w /neurocommand/local
Step by step guide
Test the container locally, and if successful push repo to trigger the automatic build on GitHub. When asked for your Github password, please provide the personal access token obtained in the previous stage.
git pull git push
Go to https://github.com/neurodesk/neurocontainers/actions. Check that the most recent workflow run in the list terminated successfully (green). Otherwise, click on it, click on “build docker”, and the line that caused the error will be highlighted
Find your new package under https://github.com/orgs/NeuroDesk/packages?repo_name=neurocontainers
Enter the name of the package in the search box, and verify that the full package name shows up in the format toolName_toolVersionObtain buildDate by clicking on the full package name that came up in the search. The build date will be the newest date shown under Recent tagged image versions
If updating an app, use toolName delete the locally installed container of the old app version or old app build:
rm -R /neurocommand/local/containers/toolName_*/ rm -R /neurocommand/local/containers/modules/toolName/
Use toolName, toolVersion and buildDate from the previous two steps to manually download the package by typing the following in a terminal open in Neurodesktop
bash /neurocommand/local/fetch_and_run.sh toolName toolVersion buildDate (when you see the "Singularity>" prompt, type exit and ENTER) ml toolName/toolVersion
For example: If the full package name that comes up in the step 11 is itksnap_3.8.0, and the newest date under Recent tagged image versions is 20210322
The command to use in a terminal open in Neurodesktop is:
bash /neurocommand/local/fetch_and_run.sh itksnap 3.8.0 20210322 (when you see the "Singularity>" prompt, type exit and ENTER) ml toolName/toolVersion
Important note
This step consumes a lot of disk storage (up to tens of Gigs). Please be aware that if your storage is limited, the fetch_and_run.sh command may fail.Depreciation notice
For VNM users use:
bash /neurodesk/local/fetch_and_run.sh toolName toolVersion buildDate ml toolName/toolVersion
Test the new container. Run some commands, to see all is good
If the container doesn’t work yet, it’s sometimes useful to try and troubleshoot it and install missing libraries. This can be achieved by running it in a writable mode with fakeroot enabled:SINGULARITY_BINDPATH=''; singularity shell --writable --fakeroot /neurodesktop-storage/containers/toolName_toolVersion_buildDate/toolName_toolVersion_buildDate.simg
Fork https://github.com/NeuroDesk/neurocommand/ to your Github account
Edit an entry for your package in your fork of
neurocommand/blob/main/neurodesk/apps.json
based on one of the other entries (generating one menu item for opening a terminal inside the containers, and one menu item for the GUI, if relevant). Notice that in the json file, the version field should contain the buildDate rather than the toolVersion !!! toolVersion should be included instead in the text of the menu entry itself, e.g., “fsl 6.0.3”. Also notice that whereas categories appear in the Neurodesktop menu in start case (first letter of each word capitalized), in the json files they are sentence case (all letters lower case).Include an icon file in your fork of neurocommand/neurodesk/icons
Send a pull request from your fork of neurocommand to https://github.com/NeuroDesk/neurocommand/
When the pull request is merged by Neurodesk admins, it will trigger an action to build the singularity container, distribute it in all object storage locations and on CVMFS, and it will update the menus in the desktop image on the next daily build.
Wait at least 24 hours
Download and run the daily build of neurodesktop to check that your app can be launched from the start menu and works properly:
sudo docker pull vnmd/neurodesktop:latest && sudo docker run --shm-size=1gb -it --privileged --user=root --name neurodesktop -v ~/neurodesktop-storage:/neurodesktop-storage -e HOST_UID="$(id -u)" -e HOST_GID="$(id -g)" -p 8888:8888 -e NEURODESKTOP_VERSION=latest vnmd/neurodesktop:latest
Open an issue in https://github.com/NeuroDesk/neurocontainers/issues notifying that your app appears in the start menu and tested. The app will be included in the next release of Neurodesktop, and will be mentioned in the public announcement that accompanies the release. If the app is not in the start menu or not working as expected based on your earlier testing, open an issue as well, and report it.
If somebody wants to use the application before the next release of Neurodesktop is out, you can instruct them to use the command in step 14 above instead of the default commands given in the user install instructions.
Consider contributing a tutorial about the new tool: https://github.com/NeuroDesk/neurodesk.github.io/tree/main/content/en/tutorials