Skip to content

Commit

Permalink
Merge pull request #994 from zlskidmore/master
Browse files Browse the repository at this point in the history
fixed bug regarding missing indexed bam in bigwig
  • Loading branch information
zlskidmore authored Jan 20, 2021
2 parents da335d9 + 5637ea5 commit ecac0fd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion definitions/pipelines/rnaseq.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ steps:
stringtie:
run: ../tools/stringtie.cwl
in:
bam: mark_dup/sorted_bam
bam: index_bam/indexed_bam
reference_annotation: reference_annotation
sample_name: sample_name
strand: strand
Expand Down
6 changes: 3 additions & 3 deletions definitions/pipelines/rnaseq_star_fusion.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ steps:
stringtie:
run: ../tools/stringtie.cwl
in:
bam: mark_dup/sorted_bam
bam: index_bam/indexed_bam
reference_annotation: gtf_file
sample_name: sample_name
strand: strand
Expand All @@ -195,7 +195,7 @@ steps:
refFlat: refFlat
ribosomal_intervals: ribosomal_intervals
strand: strand
bam: mark_dup/sorted_bam
bam: index_bam/indexed_bam
out:
[metrics, chart]
bam_to_cram:
Expand All @@ -214,7 +214,7 @@ steps:
cgpbigwig_bamcoverage:
run: ../tools/bam_to_bigwig.cwl
in:
bam: mark_dup/sorted_bam
bam: index_bam/indexed_bam
reference: reference_fasta
out:
[outfile]
6 changes: 3 additions & 3 deletions definitions/pipelines/rnaseq_star_fusion_with_xenosplit.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ steps:
stringtie:
run: ../tools/stringtie.cwl
in:
bam: mark_dup/sorted_bam
bam: index_bam/indexed_bam
reference_annotation: graft_gtf_file
sample_name: sample_name
strand: strand
Expand All @@ -249,13 +249,13 @@ steps:
refFlat: refFlat
ribosomal_intervals: ribosomal_intervals
strand: strand
bam: mark_dup/sorted_bam
bam: index_bam/indexed_bam
out:
[metrics, chart]
cgpbigwig_bamcoverage:
run: ../tools/bam_to_bigwig.cwl
in:
bam: mark_dup/sorted_bam
bam: index_bam/indexed_bam
reference: reference
out:
[outfile]
1 change: 1 addition & 0 deletions definitions/tools/stringtie.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ inputs:
type: File
inputBinding:
position: 4
secondaryFiles: [.bai,^.bai]
outputs:
transcript_gtf:
type: File
Expand Down

0 comments on commit ecac0fd

Please sign in to comment.