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: Amplicon/Illumina/Workflow_Documentation/NF_AmpIllumina-B/README.md
+8-16Lines changed: 8 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -104,11 +104,11 @@ For options and detailed help on how to run the workflow, run the following comm
104
104
nextflow run main.nf --help
105
105
```
106
106
107
-
> Note: Nextflow commands use both single hyphen arguments (e.g. -help) that denote general nextflow arguments and double hyphen arguments (e.g. --csv_file) that denote workflow specific parameters. Take care to use the proper number of hyphens for each argument.
107
+
> Note: Nextflow commands use both single hyphen arguments (e.g. -help) that denote general nextflow arguments and double hyphen arguments (e.g. --input_file) that denote workflow specific parameters. Take care to use the proper number of hyphens for each argument.
108
108
109
109
<br>
110
110
111
-
#### 4a. Approach 1: Run slurm jobs in singularity containers with OSD accession as input
111
+
#### 4a. Approach 1: Run slurm jobs in singularity containers with OSD or GLDS accession as input
112
112
113
113
```bash
114
114
nextflow run main.nf -resume -profile slurm,singularity --accession GLDS-487 --target_region 16S
*Required only if --accession is not passed as an argument*
147
147
148
-
* `--csv_file` – A 3-column (single-end) or 4-column (paired-end) input csv file (sample_id, forward, [reverse,] paired). Please see the sample [SE_file.csv](workflow_code/SE_file.csv) and [PE_file.csv](workflow_code/PE_file.csv) in this repository for examples on how to format this file.
148
+
* `--input_file` – A 4-column (single-end) or 5-column (paired-end) input csv file with the following headers (sample_id, forward, [reverse,] paired, groups). Please see the sample [SE_file.csv](workflow_code/SE_file.csv) and [PE_file.csv](workflow_code/PE_file.csv) in this repository for examples on how to format this file.
149
149
150
150
* `--F_primer` – Forward primer sequence.
151
151
@@ -191,29 +191,21 @@ Standard nextflow resource usage logs are also produced as follows:
191
191
For options and detailed help on how to run the post-processing workflow, run the following command:
192
192
193
193
```bash
194
-
nextflow run post_processng.nf --help
194
+
nextflow run post_processing.nf --help
195
195
```
196
196
197
197
To generate a README file, a protocols file, a md5sums table and a file association table after running the processing workflow sucessfully, modify and set the parameters in [post_processing.config](workflow_code/post_processing.config) then run the following command:
198
198
199
199
```bash
200
-
nextflow -C post_processing.config run post_processng.nf -resume -profile slurm,singularity
200
+
nextflow -C post_processing.config run post_processing.nf -resume -profile slurm,singularity
201
201
```
202
202
203
203
The outputs of the run will be in a directory called `Post_Processing` by default and they are as follows:
204
-
205
204
- Post_processing/FastQC_Outputs/filtered_multiqc_GLAmpSeq_report.zip (Filtered sequence multiqc report with paths purged)
206
-
207
205
- Post_processing/FastQC_Outputs/raw_multiqc_GLAmpSeq_report.zip (Raw sequence multiqc report with paths purged)
208
-
209
206
- Post_processing/<GLDS_accession>_-associated-file-names.tsv (File association table for curation)
210
-
211
207
- Post_processing/<GLDS_accession>_amplicon-validation.log (Automatic verification and validation log file)
212
-
213
208
- Post_processing/processed_md5sum_GLAmpSeq.tsv (md5sums for the files to be released on OSDR)
214
-
215
209
- Post_processing/processing_info_GLAmpSeq.zip (Zip file containing all files used to run the workflow and required logs with paths purged)
216
-
217
210
- Post_processing/protocol.txt (File describing the methods used by the workflow)
218
-
219
-
- Post_processing/README_GLAmpSeq.txt (README file listing and describing the outputs of the workflow)
211
+
- Post_processing/README_GLAmpSeq.txt (README file listing and describing the outputs of the workflow)
0 commit comments