Skip to content
This repository was archived by the owner on Mar 29, 2022. It is now read-only.

Commit a8b2e4e

Browse files
authored
Merge pull request #12 from SD2E/devel
selectively editing out references to singularity in the create_app p…
2 parents 592dbd0 + 227d5c2 commit a8b2e4e

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

docs/create_app.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ looking for is not available? Using the Agave CLI, you can create your own.
1313

1414
The essential components you need to create your own app are:
1515

16-
1. A Docker or Singularity image containing the executable and all runtime dependencies
16+
1. A Docker image containing the executable and all runtime dependencies
1717
2. A wrapper script (generally written in bash) that runs the executable
1818
3. A test script (also written in bash) for testing the executable outside of the Agave environment
1919

docs/create_app_02.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ on hubs such as
1212

1313
This tutorial is a quick and dirty summary of how to build your own Docker image
1414
as if there is not one available for your executable. This is not meant to replace
15-
the full [Docker documentation](https://docs.docker.com/develop/). Please note
16-
that [Singularity images](http://singularity.lbl.gov/docs-hpc) are also amenable
17-
to this infrastructure.
15+
the full [Docker documentation](https://docs.docker.com/develop/).
1816

1917
We will continue with the example of FastQC from the
2018
[previous page](create_app_01.md).
@@ -150,8 +148,7 @@ Once built, test the new image with an example command:
150148
```
151149

152150
*Note: Calling the complete path to executables is sometimes safer than relying
153-
on PATH environment variables, especially when translating between Docker and
154-
Singularity*
151+
on PATH environment variables*
155152

156153
If you see the FastQC help text, the installation likely was successful.
157154
At this time, it might be prudent to set up a test with real data as well. The

docs/create_app_03.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,7 @@ replace `USERNAME` with your Docker ID (or project space where the image is
8585
located). Also in the above file, the `container_exec.sh` script is sourced,
8686
'`perl /FastQC/fastqc`' is the command to execute, and the parameter passed to the
8787
command is the input fastq file (`${fastq}`). The final command in the script
88-
(begging with `DEBUG=1`) is the main container run command. It is written in this
89-
way to be flexible and compatible to both Docker and Singularity.
88+
(begging with `DEBUG=1`) is the main container run command.
9089

9190
At the bottom of the script are a few template functions that you can develop
9291
to validate that the test ran correctly. Here,

0 commit comments

Comments
 (0)