diff --git a/singularity_container.ipynb b/singularity_container.ipynb index e57b4aa5503d010579033096ff16036ea5026657..69ed64db1550561a6c005df3df5f7eeb18a663d6 100644 --- a/singularity_container.ipynb +++ b/singularity_container.ipynb @@ -51,7 +51,57 @@ }, "outputs": [], "source": [ - "!module avail Singularity\n" + "!module avail Singularity" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "As you might have already noticed that we already loaded a Singularity module while starting up this notebook. You can check the version of the Singularity loaded below:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!singularity --version" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Basic singularity command line functions:\n", + "\n", + "To check the basic functions or command line options provided run help on the singularity " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!singularity --help" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "To check more information about a particular parameter, use help in conjunction with that parameter" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!singularity build help" ] } ],