You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/configuration/local.md
+17-4Lines changed: 17 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ First, install docker on your system: [Docker Installation Instructions](https:/
11
11
12
12
Then, simply run the analysis pipeline:
13
13
```bash
14
-
nextflow run nf-core/eager -profile docker --reads '<path to your reads>'
14
+
nextflow run nf-core/eager -profile docker --reads '<path to your reads>' --pairedEnd
15
15
```
16
16
17
17
Nextflow will recognise `nf-core/eager` and download the pipeline from GitHub. The `-profile docker` configuration lists the [nf-core/eager](https://hub.docker.com/r/nfcore/eager/) image that we have created and is hosted at dockerhub, and this is downloaded.
@@ -23,9 +23,13 @@ The public docker images are tagged with the same version numbers as the code, w
23
23
24
24
25
25
## Singularity image
26
-
Many HPC environments are not able to run Docker due to security issues. [Singularity](http://singularity.lbl.gov/) is a tool designed to run on such HPC systems which is very similar to Docker. Even better, it can use create images directly from dockerhub.
26
+
Many HPC environments are not able to run Docker due to security issues. [Singularity](http://singularity.lbl.gov/) is a tool designed to run on such HPC systems which is very similar to Docker. There is a particular profile that will download the singularity image for you.
27
27
28
-
To use the singularity image for a single run, use `-with-singularity 'docker://nfcore/eager'`. This will download the docker container from dockerhub and create a singularity image for you dynamically.
28
+
```bash
29
+
nextflow run nf-core/eager -profile singularity --reads '<path to your reads>' --pairedEnd
30
+
```
31
+
32
+
Additionally, it can use create images directly from dockerhub. To use the singularity image for a single run, use `-with-singularity 'docker://nfcore/eager'`. This will download the docker container from dockerhub and create a singularity image for you dynamically.
29
33
30
34
If you intend to run the pipeline offline, nextflow will not be able to automatically download the singularity image for you. Instead, you'll have to do this yourself manually first, transfer the image file and then point to that.
0 commit comments