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
Merge pull request #60 from torres-alexis/DEV_NF_RCP-F_1.0.4_pr_archived
NF_RCP-F_1.0.4
- TrimGalore! will now use autodetect for adaptor type
- V&V migrated from dp_tools version 1.1.8 to 1.3.3
- Fix for sample wise checks reusing same sample
- Workflow usage files will all follow output directory set by workflow user
- Added '_GLbulkRNAseq' filename suffixes
- ERCC notebook updates:
- Empty subplots now hidden
- Changed box-whisker plots from ascending to descending reference concentration order, added x-axis label
- Added matching order to bar plots
Copy file name to clipboardExpand all lines: RNAseq/Workflow_Documentation/NF_RCP-F/README.md
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -101,9 +101,9 @@ All files required for utilizing the NF_RCP-F GeneLab workflow for processing RN
101
101
copy of latest NF_RCP-F version on to your system, the code can be downloaded as a zip file from the release page then unzipped after downloading by running the following commands:
Although Nextflow can fetch Singularity images from a url, doing so may cause issues as detailed [here](https://github.com/nextflow-io/nextflow/issues/1210).
116
116
117
117
To avoid this issue, run the following command to fetch the Singularity images prior to running the NF_RCP-F workflow:
118
-
> Note: This command should be run in the location containing the `NF_RCP-F_1.0.3` directory that was downloaded in [step 2](#2-download-the-workflow-files) above. Depending on your network speed, fetching the images will take ~20 minutes.
118
+
> Note: This command should be run in the location containing the `NF_RCP-F_1.0.4` directory that was downloaded in [step 2](#2-download-the-workflow-files) above. Depending on your network speed, fetching the images will take ~20 minutes.
While in the location containing the `NF_RCP-F_1.0.3` directory that was downloaded in [step 2](#2-download-the-workflow-files), you are now able to run the workflow. Below are three examples of how to run the NF_RCP-F workflow:
137
+
While in the location containing the `NF_RCP-F_1.0.4` directory that was downloaded in [step 2](#2-download-the-workflow-files), you are now able to run the workflow. Below are three examples of how to run the NF_RCP-F workflow:
138
138
> Note: Nextflow commands use both single hyphen arguments (e.g. -help) that denote general nextflow arguments and double hyphen arguments (e.g. --ensemblVersion) that denote workflow specific parameters. Take care to use the proper number of hyphens for each argument.
139
139
140
140
<br>
141
141
142
142
#### 4a. Approach 1: Run the workflow on a GeneLab RNAseq dataset with automatic retrieval of Ensembl reference fasta and gtf files
143
143
144
144
```bash
145
-
nextflow run NF_RCP-F_1.0.3/main.nf \
145
+
nextflow run NF_RCP-F_1.0.4/main.nf \
146
146
-profile singularity \
147
147
--gldsAccession OSD-194
148
148
```
@@ -154,7 +154,7 @@ nextflow run NF_RCP-F_1.0.3/main.nf \
154
154
> Note: The `--ref_source` and `--ensemblVersion` parameters should match the reference source and version number of the local reference fasta and gtf files used
155
155
156
156
```bash
157
-
nextflow run NF_RCP-F_1.0.3/main.nf \
157
+
nextflow run NF_RCP-F_1.0.4/main.nf \
158
158
-profile singularity \
159
159
--gldsAccession OSD-194 \
160
160
--ensemblVersion 107 \
@@ -170,7 +170,7 @@ nextflow run NF_RCP-F_1.0.3/main.nf \
170
170
> Note: Specifications for creating a runsheet manually are described [here](examples/runsheet/README.md).
171
171
172
172
```bash
173
-
nextflow run NF_RCP-F_1.0.3/main.nf \
173
+
nextflow run NF_RCP-F_1.0.4/main.nf \
174
174
-profile singularity \
175
175
--gldsAccession output_directory \
176
176
--runsheetPath </path/to/runsheet>
@@ -180,7 +180,7 @@ nextflow run NF_RCP-F_1.0.3/main.nf \
180
180
181
181
**Required Parameters For All Approaches:**
182
182
183
-
* `NF_RCP-F_1.0.3/main.nf` - Instructs Nextflow to run the NF_RCP-F workflow
183
+
* `NF_RCP-F_1.0.4/main.nf` - Instructs Nextflow to run the NF_RCP-F workflow
184
184
185
185
* `-profile` - Specifies the configuration profile(s) to load, `singularity` instructs Nextflow to setup and use singularity for all software called in the workflow
186
186
@@ -230,7 +230,7 @@ nextflow run NF_RCP-F_1.0.3/main.nf \
230
230
All parameters listed above and additional optional arguments for the RCP workflow, including debug related options that may not be immediately useful for most users, can be viewed by running the following command:
231
231
232
232
```bash
233
-
nextflow run NF_RCP-F_1.0.3/main.nf --help
233
+
nextflow run NF_RCP-F_1.0.4/main.nf --help
234
234
```
235
235
236
236
See `nextflow run -h` and [Nextflow's CLI run command documentation](https://nextflow.io/docs/latest/cli.html#run) for more options and details common to all nextflow workflows.
@@ -255,14 +255,14 @@ The outputs from the Analysis Staging and V&V Pipeline Subworkflows are describe
255
255
**V&V Pipeline Subworkflow**
256
256
257
257
- Output:
258
-
- VV_Logs/VV_log_final.tsv (table containing V&V flags for all checks performed)
259
-
- VV_Logs/VV_log_final_only_issues.tsv (table containing V&V flags ONLY for checks that produced a flag code >= 30)
260
-
- VV_Logs/VV_log_VV_RAW_READS.tsv (table containing V&V flags ONLY for raw reads checks)
0 commit comments