Skip to content

Commit f6ac19f

Browse files
Merge pull request #203 from jasonwalker80/interleaved_fastq_pipe
DNA Alignment: Pipe Interleaved FASTQ
2 parents 6791f77 + 0fa1053 commit f6ac19f

File tree

2 files changed

+7
-19
lines changed

2 files changed

+7
-19
lines changed

unaligned_bam_to_bqsr/align.cwl

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,11 @@ outputs:
1919
type: File
2020
outputSource: align_and_tag/aligned_bam
2121
steps:
22-
revert_to_fastq:
23-
run: revert_to_fastq.cwl
24-
in:
25-
bam: bam
26-
out:
27-
[fastq, second_end_fastq]
2822
align_and_tag:
2923
run: align_and_tag.cwl
3024
in:
31-
in:
25+
bam: bam
3226
readgroup: readgroup
3327
reference: reference
34-
fastq: revert_to_fastq/fastq
35-
fastq2: revert_to_fastq/second_end_fastq
3628
out:
3729
[aligned_bam]

unaligned_bam_to_bqsr/align_and_tag.cwl

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,21 @@ requirements:
1111
ramMin: 16000
1212
stdout: "refAlign.bam"
1313
arguments:
14-
- position: 5
14+
- position: 4
1515
valueFrom: $(runtime.cores)
1616
inputs:
17-
readgroup:
18-
type: string
17+
bam:
18+
type: File
1919
inputBinding:
2020
position: 1
21-
reference:
21+
readgroup:
2222
type: string
2323
inputBinding:
2424
position: 2
25-
fastq:
26-
type: File
25+
reference:
26+
type: string
2727
inputBinding:
2828
position: 3
29-
fastq2:
30-
type: File
31-
inputBinding:
32-
position: 4
3329
outputs:
3430
aligned_bam:
3531
type: stdout

0 commit comments

Comments
 (0)