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/installation.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
# Installation
2
2
3
-
## Installation the references
3
+
## Installing the references
4
4
5
5
This pipeline requires locally stored genomes in fasta format. To build these, do:
6
6
7
7
```
8
8
nextflow run marchoeppner/gmo-check -profile standard,singularity --run_name build_refs --outdir /path/to/references
9
9
```
10
10
11
-
If you do not singularity on your system, you can also specify docker, podman or conda for software provisioning - see the [usage information](usage.md).
11
+
If you do not have singularity on your system, you can also specify docker, podman or conda for software provisioning - see the [usage information](usage.md).
12
12
13
13
The path specified with `--outdir` can then be given to the pipeline during normal execution as `--reference_base`.
where `--path_to_references` corresponds to the location in which you have [installed](installation.md) the pipeline references.
12
+
where `path_to_references` corresponds to the location in which you have [installed](installation.md) the pipeline references.
13
13
14
14
In this example, the pipeline will assume it runs on a single computer with the singularity container engine available. Other options to provision software are:
15
15
@@ -25,6 +25,8 @@ b) with a site-specific config file
In this example, both `--reference_base` and the choice of software provisioning are already set in your local configuration and don't have to provided as command line argument.
If you are unsure about the read group ID, just make sure that it should be unique for the combination of library, flowcell and lane. Typically it would be constructed from these components - and the easiest way to get it is from the FastQ file iteself (header of read 1, for example).
41
+
If you are unsure about the readgroup ID, just make sure that it is unique for the combination of library, flowcell and lane. Typically it would be constructed from these components - and the easiest way to get it is from the FastQ file itself (header of read 1, for example).
40
42
41
43
## `--genome tomato`[default = tomato]
42
44
@@ -52,18 +54,22 @@ A mandatory name for this run, to be included with the result files.
An email address to which the MultiQC report is send after pipeline completion. This requires for the executing system to have `sendmail` configured.
57
+
An email address to which the MultiQC report is send after pipeline completion. This requires for the executing system to have [sendmail](https://rimuhosting.com/support/settingupemail.jsp?mta=sendmail) configured.
56
58
57
59
## `--tools vsearch`[default = vsearch]
58
60
59
61
This pipeline supports two completely independent tool chains:
60
62
61
63
-`vsearch` using a simple "metagenomics-like" amplicon processing workflow to produce dereplicated sequences from the short reads to then search for pre-defined patterns against a BLAST database (built-in)
62
64
63
-
-`bwa2` uses a classical variant calling approach, with parameters similar to what one would find in cancer analysis to detect low-frequency SNPs in mixed samples.
65
+
-`bwa2` uses a classic variant calling approach, with parameters similar to what one would find in cancer analysis to detect low-frequency SNPs in mixed samples.
64
66
65
67
You can specify either one, or both: `--tools 'vsearch,bwa2'`
66
68
67
69
## `--reference_base`[default = null ]
68
70
69
-
The location of where the pipeline references are installed on your system. This will typically be pre-set in your site-specific config file and is only needed when you run without one.
71
+
The location of where the pipeline references are installed on your system. This will typically be pre-set in your site-specific config file and is only needed when you run without one.
72
+
73
+
## `--outdir results`[default = results]
74
+
75
+
The location where the results are stored. Usually this will be `results`in the location from where you run the nextflow process. However, this option also accepts any other path in your file system(s).
0 commit comments