Permalink
Please sign in to comment.
Showing
with
76 additions
and 1 deletion.
- +1 −1 pom.xml
- +16 −0 src/main/java/org/broadinstitute/compositetask/CompositeTask.java
- +10 −0 src/main/java/org/broadinstitute/compositetask/WdlSyntaxErrorFormatter.java
- +8 −0 test-files/syntax-error/6/errors
- +8 −0 test-files/syntax-error/6/source.wdl
- +8 −0 test-files/syntax-error/7/errors
- +8 −0 test-files/syntax-error/7/source.wdl
- +8 −0 test-files/syntax-error/8/errors
- +9 −0 test-files/syntax-error/8/source.wdl
| @@ -0,0 +1,8 @@ | ||
| +org.broadinstitute.parser.SyntaxError: Variable filtered_bam_name used to construct an output filename and also as an output variable. One of these variable names must change. | ||
| + | ||
| +Line 3, Column 18: | ||
| + output: File("${filtered_bam_name}.bam") as filtered_bam_name; | ||
| + ^ | ||
| +Line 3, Column 49: | ||
| + output: File("${filtered_bam_name}.bam") as filtered_bam_name; | ||
| + ^ |
| @@ -0,0 +1,8 @@ | ||
| +composite_task CufflinksPipeline { | ||
| + step FilterBamForAlignedReads[version=8] { | ||
| + output: File("${filtered_bam_name}.bam") as filtered_bam_name; | ||
| + } | ||
| + step Cufflinks[version=29] { | ||
| + input: input.bam=filtered_bam_name; | ||
| + } | ||
| +} |
| @@ -0,0 +1,8 @@ | ||
| +org.broadinstitute.parser.SyntaxError: Variable filtered_bam_name used to construct an output filename and also as an output variable. One of these variable names must change. | ||
| + | ||
| +Line 3, Column 18: | ||
| + output: File("${abc}.${filtered_bam_name}.bam") as filtered_bam_name; | ||
| + ^ | ||
| +Line 3, Column 56: | ||
| + output: File("${abc}.${filtered_bam_name}.bam") as filtered_bam_name; | ||
| + ^ |
| @@ -0,0 +1,8 @@ | ||
| +composite_task CufflinksPipeline { | ||
| + step FilterBamForAlignedReads[version=8] { | ||
| + output: File("${abc}.${filtered_bam_name}.bam") as filtered_bam_name; | ||
| + } | ||
| + step Cufflinks[version=29] { | ||
| + input: input.bam=filtered_bam_name; | ||
| + } | ||
| +} |
| @@ -0,0 +1,8 @@ | ||
| +org.broadinstitute.parser.SyntaxError: Variable xyz used to construct an output filename and also as an output variable. One of these variable names must change. | ||
| + | ||
| +Line 3, Column 18: | ||
| + output: File("${abc}.${xyz}.bam") as filtered_bam_name, | ||
| + ^ | ||
| +Line 4, Column 35: | ||
| + File("${abc}.bam") as xyz; | ||
| + ^ |
| @@ -0,0 +1,9 @@ | ||
| +composite_task CufflinksPipeline { | ||
| + step FilterBamForAlignedReads[version=8] { | ||
| + output: File("${abc}.${xyz}.bam") as filtered_bam_name, | ||
| + File("${abc}.bam") as xyz; | ||
| + } | ||
| + step Cufflinks[version=29] { | ||
| + input: input.bam=xyz; | ||
| + } | ||
| +} |
0 comments on commit
556fd07