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: RNAseq/Workflow_Documentation/NF_RCP/README.md
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -128,9 +128,9 @@ All files required for utilizing the NF_RCP GeneLab workflow for processing RNAs
128
128
copy of latest NF_RCP 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).
143
143
144
144
To avoid this issue, run the following command to fetch the Singularity images prior to running the NF_RCP workflow:
145
-
> Note: This command should be run in the location containing the `NF_RCP_2.0.0` 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. Approximately 8GB of RAM is needed to download and build the Singularity images.
145
+
> Note: This command should be run in the location containing the `NF_RCP_2.0.1` 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. Approximately 8GB of RAM is needed to download and build the Singularity images.
While in the location containing the `NF_RCP_2.0.0` directory that was downloaded in [step 2](#2-download-the-workflow-files), you are now able to run the workflow.
164
+
While in the location containing the `NF_RCP_2.0.1` directory that was downloaded in [step 2](#2-download-the-workflow-files), you are now able to run the workflow.
165
165
166
166
Both workflows automatically load reference files and organism-specific gene annotation files from the [GeneLab annotations table](https://github.com/nasa/GeneLab_Data_Processing/blob/master/GeneLab_Reference_Annotations/Pipeline_GL-DPPD-7110_Versions/GL-DPPD-7110-A/GL-DPPD-7110-A_annotations.csv). For organisms not listed in the table or to use alternative reference files, additional workflow parameters can be specified.
167
167
@@ -175,7 +175,7 @@ Both workflows automatically load reference files and organism-specific gene ann
175
175
#### 4a. Approach 1: Run the workflow on a GeneLab RNAseq dataset with automatic retrieval of reference fasta and gtf files
176
176
177
177
```bash
178
-
nextflow run NF_RCP_2.0.0/main.nf \
178
+
nextflow run NF_RCP_2.0.1/main.nf \
179
179
-profile singularity,local \
180
180
--accession OSD-194
181
181
```
@@ -187,7 +187,7 @@ nextflow run NF_RCP_2.0.0/main.nf \
187
187
#### 4b. Approach 2: Run the workflow on a GeneLab RNAseq dataset with custom reference fasta and gtf files
188
188
189
189
```bash
190
-
nextflow run NF_RCP_2.0.0/main.nf \
190
+
nextflow run NF_RCP_2.0.1/main.nf \
191
191
-profile singularity,local \
192
192
--accession OSD-194 \
193
193
--reference_version 112 \
@@ -205,7 +205,7 @@ nextflow run NF_RCP_2.0.0/main.nf \
205
205
#### 4c. Approach 3: Run the workflow on a non-GeneLab dataset using a user-created runsheet with automatic retrieval of reference fasta and gtf files
206
206
207
207
```bash
208
-
nextflow run NF_RCP_2.0.0/main.nf \
208
+
nextflow run NF_RCP_2.0.1/main.nf \
209
209
-profile singularity,local \
210
210
--runsheet_path </path/to/runsheet>
211
211
```
@@ -217,7 +217,7 @@ nextflow run NF_RCP_2.0.0/main.nf \
217
217
#### 4d. Approach 4: Run the workflow on a non-GeneLab dataset using a user-created runsheet with custom reference fasta and gtf files
218
218
219
219
```bash
220
-
nextflow run NF_RCP_2.0.0/main.nf \
220
+
nextflow run NF_RCP_2.0.1/main.nf \
221
221
-profile singularity \
222
222
--accession OSD-194 \
223
223
--reference_version 112 \
@@ -235,7 +235,7 @@ nextflow run NF_RCP_2.0.0/main.nf \
235
235
236
236
#### Required Parameters For All Approaches:
237
237
238
-
* `NF_RCP_2.0.0/main.nf` - Instructs Nextflow to run the NF_RCP workflow
238
+
* `NF_RCP_2.0.1/main.nf` - Instructs Nextflow to run the NF_RCP workflow
239
239
240
240
* `-profile` - Specifies the configuration profile(s) to load, `singularity` instructs Nextflow to setup and use singularity for all software called in the workflow; use `local` for local execution ([local.config](workflow_code/conf/local.config)) or `slurm` for SLURM cluster execution ([slurm.config](workflow_code/conf/slurm.config))
241
241
> Note: The output directory will be named `GLDS-#` when using a OSD or GLDS accession as input, or `results` when running the workflow with only a runsheet as input.
@@ -313,7 +313,7 @@ nextflow run NF_RCP_2.0.0/main.nf \
313
313
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:
314
314
315
315
```bash
316
-
nextflow run NF_RCP_2.0.0/main.nf --help
316
+
nextflow run NF_RCP_2.0.1/main.nf --help
317
317
```
318
318
319
319
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.
0 commit comments