Skip to content

Commit 489bcb4

Browse files
committed
update workflow files for new tximport script
1 parent 5f1826d commit 489bcb4

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

modules/local/tximport/main.nf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ process TXIMPORT {
1616
path "*gene_counts.tsv" , emit: counts_gene
1717
path "*gene_counts_length_scaled.tsv", emit: counts_gene_length_scaled
1818
path "*gene_counts_scaled.tsv" , emit: counts_gene_scaled
19+
path "*gene_lengths.tsv" , emit: lengths_gene
1920
path "*transcript_tpm.tsv" , emit: tpm_transcript
2021
path "*transcript_counts.tsv" , emit: counts_transcript
22+
path "*transcript_lengths.tsv" , emit: lengths_transcript
2123
path "versions.yml" , emit: versions
2224

2325
when:

subworkflows/local/quantify_pseudo/main.nf

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,14 @@ workflow QUANTIFY_PSEUDO_ALIGNMENT {
7979
results = ch_pseudo_results // channel: [ val(meta), results_dir ]
8080
multiqc = ch_pseudo_multiqc // channel: [ val(meta), files_for_multiqc ]
8181

82-
tpm_gene = TXIMPORT.out.tpm_gene // channel: [ val(meta), counts ]
83-
counts_gene = TXIMPORT.out.counts_gene // channel: [ val(meta), counts ]
84-
counts_gene_length_scaled = TXIMPORT.out.counts_gene_length_scaled // channel: [ val(meta), counts ]
85-
counts_gene_scaled = TXIMPORT.out.counts_gene_scaled // channel: [ val(meta), counts ]
86-
tpm_transcript = TXIMPORT.out.tpm_transcript // channel: [ val(meta), counts ]
87-
counts_transcript = TXIMPORT.out.counts_transcript // channel: [ val(meta), counts ]
82+
tpm_gene = TXIMPORT.out.tpm_gene // path *gene_tpm.tsv
83+
counts_gene = TXIMPORT.out.counts_gene // path *gene_counts.tsv
84+
lengths_gene = TXIMPORT.out.lengths_gene // path *gene_lengths.tsv
85+
counts_gene_length_scaled = TXIMPORT.out.counts_gene_length_scaled // path *gene_counts_length_scaled.tsv
86+
counts_gene_scaled = TXIMPORT.out.counts_gene_scaled // path *gene_counts_scaled.tsv
87+
tpm_transcript = TXIMPORT.out.tpm_transcript // path *gene_tpm.tsv
88+
counts_transcript = TXIMPORT.out.counts_transcript // path *transcript_counts.tsv
89+
lengths_transcript = TXIMPORT.out.lengths_transript // path *transcript_lengths.tsv
8890

8991
merged_gene_rds = SE_GENE.out.rds // path: *.rds
9092
merged_gene_rds_length_scaled = SE_GENE_LENGTH_SCALED.out.rds // path: *.rds

tower.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ reports:
44
"**/star_salmon/**/deseq2.plots.pdf":
55
display: "All samples STAR Salmon DESeq2 QC PDF plots"
66
"**/star_salmon/salmon.merged.gene_counts.tsv":
7+
display: "All samples STAR Salmon mean transcript length per gene"
8+
"**/star_salmon/salmon.merged.gene_lengths.tsv":
9+
display: "All samples STAR Salmon transcript lengths"
10+
"**/star_salmon/salmon.merged.transcript_lengths.tsv":
711
display: "All samples STAR Salmon merged gene raw counts"
812
"**/star_salmon/salmon.merged.gene_tpm.tsv":
913
display: "All samples STAR Salmon merged gene TPM counts"
@@ -14,6 +18,10 @@ reports:
1418
"**/salmon/**/deseq2.plots.pdf":
1519
display: "All samples Salmon DESeq2 QC PDF plots"
1620
"**/salmon/salmon.merged.gene_counts.tsv":
21+
display: "All samples Salmon mean transcript length per gene"
22+
"**/salmon/salmon.merged.gene_lengths.tsv":
23+
display: "All samples Salmon transcript lengths"
24+
"**/salmon/salmon.merged.transcript_lengths.tsv":
1725
display: "All samples Salmon merged gene raw counts"
1826
"**/salmon/salmon.merged.gene_tpm.tsv":
1927
display: "All samples Salmon merged gene TPM counts"
@@ -24,6 +32,10 @@ reports:
2432
"**/kallisto/**/deseq2.plots.pdf":
2533
display: "All samples Kallisto DESeq2 QC PDF plots"
2634
"**/kallisto/kallisto.merged.gene_counts.tsv":
35+
display: "All samples Kallisto mean transcript length per gene"
36+
"**/kallisto/kallisto.merged.gene_lengths.tsv":
37+
display: "All samples Kallisto transcript lengths"
38+
"**/kallisto/kallisto.merged.transcript_lengths.tsv":
2739
display: "All samples Kallisto merged gene raw counts"
2840
"**/kallisto/kallisto.merged.gene_tpm.tsv":
2941
display: "All samples Kallisto merged gene TPM counts"

0 commit comments

Comments
 (0)