Skip to content

Commit e5b4a39

Browse files
committed
add updates
1 parent 7d24135 commit e5b4a39

File tree

8 files changed

+21
-10
lines changed

8 files changed

+21
-10
lines changed

RNAseq/Pipeline_GL-DPPD-7XXX_Versions/GL-DPPD-7XXX.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ This initial release of the RNAseq pipeline documentation details the workflow s
2626

2727
Differences with default workflow:
2828
- STAR is replaced with Bowtie 2 for alignment
29-
- RSEM is replaced with FeatureCounts for gene quantification
29+
- RSEM is replaced with featureCounts for gene quantification
3030
- kentUtils gtfToGenePred and genePredToBed are replaced with gtfToBed.py
3131
- rRNA genes are removed from featureCounts results on a dataset-wide basis. rRNA removal logs are all reported in the same file.
32-
- Rather than importing RSEM Sample.Genes.Results using tximport, the entire FeatureCounts table is imported into R for normalization and DGE analysis.
32+
- Rather than importing RSEM Genes.Results files for each sample using tximport, the entire FeatureCounts table is imported into R for normalization and DGE analysis.
3333

3434

3535
---

RNAseq/README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@
33
> **The document [`GL-DPPD-7101-G.md`](Pipeline_GL-DPPD-7101_Versions/GL-DPPD-7101-G.md) holds an overview and example commands for how GeneLab processes RNAseq datasets. See the [Repository Links](#repository-links) descriptions below for more information. Processed data output files and a GeneLab data processing summary is provided for each GLDS dataset in the [Open Science Data Repository (OSDR)](https://osdr.nasa.gov/bio/repo/).**
44
55
---
6-
<img src="images/pipeline_diagram.png" align="center" alt=""/>
7-
<img src="images/RNAseq_pipeline_diagram.png" align="center" alt=""/>
6+
RNAseq:
7+
<img src="images/RNAseq_eukaryotes_pipeline_diagram.png" align="center" alt=""/>
8+
9+
RNAseq (Prokaryotes):
10+
11+
<img src="images/RNAseq_prokaryotes_pipeline_diagram.png" align="center" alt=""/>
812

913
---
1014
## Repository Links
@@ -13,6 +17,10 @@
1317

1418
- Contains the current and previous GeneLab RNAseq consensus processing pipeline (RCP) versions documentation
1519

20+
* [**Pipeline_GL-DPPD-7XXX_Versions**](Pipeline_GL-DPPD-7XXX_Versions)
21+
22+
- Contains the current and previous GeneLab RNAseq (Prokaryotes) consensus processing pipeline (RCP) versions documentation
23+
1624
* [**RNAseq_Tool_Install**](RNAseq_Tool_Install)
1725

1826
- Contains instructions and associated yaml files to install the conda environments containing tools used to process RNAseq datasets using the GeneLab RCP, versions A-E

RNAseq/Workflow_Documentation/NF_RCP/CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [2.0.0](https://github.com/nasa/GeneLab_Data_Processing/tree/NF_RCP-G_2.0.0/RNAseq/Workflow_Documentation/NF_RCP-G) - 2025-01-21
8+
## [2.0.0](https://github.com/nasa/GeneLab_Data_Processing/tree/NF_RCP-G_2.0.0/RNAseq/Workflow_Documentation/NF_RCP) - 2025-01-24
99

1010
### Added
1111

12-
- Microbes pipeline support via `--microbes` parameter
13-
- In short, reads are aligned to a reference genome using Bowtie2 rather than STAR, gene counts are quantified using FeatureCounts rather than RSEM. Other steps remain unchanged.
12+
- Prokaryotes pipeline support via `--microbes` parameter
13+
- In short, reads are aligned to a reference genome using Bowtie 2 rather than STAR, gene counts are quantified using featureCounts rather than RSEM. Other steps remain unchanged.
1414
- Unaligned reads FASTQ output from STAR
1515
- Variance-stabilizing transformation (VST) counts output
1616
- Parallel rRNA-removed DGE analysis and results. Additional 04-DESeq2_NormCounts_rRNArm/ and 05-DESeq2_DGE_rRNArm/ directories are created for rRNA-removed DGE results.

RNAseq/Workflow_Documentation/NF_RCP/workflow_code/modules/rseqc.nf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,10 @@ process INNER_DISTANCE {
6464

6565
script:
6666
def log_fname = "${ meta.id }.inner_distance_freq.txt"
67+
def max_length = Math.max(150, max_read_length)
68+
6769
"""
68-
inner_distance.py -r ${ genome_bed } -i ${ bam_file } -k ${ params.rseqc_sample_count } -l -${ max_read_length_ch } -u 350 -o ${ meta.id }
70+
inner_distance.py -r ${ genome_bed } -i ${ bam_file } -k ${ params.rseqc_sample_count } -l -${ max_length } -u 350 -o ${ meta.id }
6971
7072
# VERSIONS
7173
echo '"${task.process}":' > versions.yml

RNAseq/Workflow_Documentation/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ GeneLab has wrapped each step of the pipeline into a workflow with validation an
88

99
|Pipeline Version|Current Workflow Version (for respective pipeline version)|Nextflow Version|
1010
|:---------------|:---------------------------------------------------------|:---------------|
11-
|*[GL-DPPD-7101-F.md](../Pipeline_GL-DPPD-7101_Versions/GL-DPPD-7101-F.md)|[NF_RCP-F_1.0.4](NF_RCP-F)|22.10.1|
12-
|*[GL-DPPD-7101-G.md](../Pipeline_GL-DPPD-7101_Versions/GL-DPPD-7101-G.md)|[NF_RCP-G_2.0.0](NF_RCP-G)|24.10.3|
11+
|*[GL-DPPD-7101-F.md](../Pipeline_GL-DPPD-7101_Versions/GL-DPPD-7101-F.md)|[NF_RCP-F_1.0.4](https://github.com/nasa/GeneLab_Data_Processing/tree/NF_RCP-F_1.0.4/RNAseq/Workflow_Documentation/NF_RCP-F)|22.10.1|
12+
|*[GL-DPPD-7101-G.md](../Pipeline_GL-DPPD-7101_Versions/GL-DPPD-7101-G.md)|[NF_RCP-G_2.0.0](NF_RCP)|24.10.3|
13+
|*[GL-DPPD-7XXX.md](../Pipeline_GL-DPPD-7XXX_Versions/GL-DPPD-7XXX.md)|[NF_RCP-X_2.0.0](NF_RCP)|24.10.3|
1314

1415
*Current GeneLab Pipeline/Workflow Implementation
1516

Loading
Loading

RNAseq/images/pipeline_diagram.png

-103 KB
Binary file not shown.

0 commit comments

Comments
 (0)