Skip to content

Commit

Permalink
Fix unit tests: Update outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
kinow committed Jun 2, 2022
1 parent be8428b commit 6ce5a7e
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 27 deletions.
8 changes: 4 additions & 4 deletions wdl2cwl/tests/cwl_files/ATAC.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -1106,14 +1106,14 @@ steps:
- script.bash
outputs:
- id: ATAC.bam_chrM_reads_compliant_output
outputSource: MakeCompliantChrMBAM/compliant_bam_output
outputSource: MakeCompliantChrMBAM.compliant_bam_output
type: File
- id: ATAC.bam_filtered_and_sorted_compliant_output
outputSource: MakeCompliantFilteredAndSortedBAM/compliant_bam_output
outputSource: MakeCompliantFilteredAndSortedBAM.compliant_bam_output
type: File
- id: ATAC.snap_qc_output
outputSource: SnapPre/snap_qc_output
outputSource: SnapPre.snap_qc_output
type: File
- id: ATAC.snap_output
outputSource: SnapCellByBin/snap_output
outputSource: SnapCellByBin.snap_output
type: File
12 changes: 6 additions & 6 deletions wdl2cwl/tests/cwl_files/BuildCembaReferences.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -347,24 +347,24 @@ steps:
- script.bash
outputs:
- id: BuildCembaReferences.reference_fasta_dict
outputSource: CreateReferenceDictionary/ref_dict_output
outputSource: CreateReferenceDictionary.ref_dict_output
type: File
- id: BuildCembaReferences.reference_fasta_index
outputSource: CreateReferenceFastaIndex/ref_index_output
outputSource: CreateReferenceFastaIndex.ref_index_output
type: File
- id: BuildCembaReferences.fwd_converted_reference_fasta
outputSource: Convert/fwd_converted_reference_fasta_output
outputSource: Convert.fwd_converted_reference_fasta_output
type: File
- id: BuildCembaReferences.rev_converted_reference_fasta
outputSource: Convert/rev_converted_reference_fasta_output
outputSource: Convert.rev_converted_reference_fasta_output
type: File
- id: BuildCembaReferences.fwd_bowtie2_index_files
outputSource: IndexForward/bowtie2_index_files
outputSource: IndexForward.bowtie2_index_files
type:
items: File
type: array
- id: BuildCembaReferences.rev_bowtie2_index_files
outputSource: IndexReverse/bowtie2_index_files
outputSource: IndexReverse.bowtie2_index_files
type:
items: File
type: array
6 changes: 3 additions & 3 deletions wdl2cwl/tests/cwl_files/align_and_count.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,11 @@ steps:
- script.bash
outputs:
- id: align_and_count_report.report
outputSource: align_and_count/report
outputSource: align_and_count.report
type: File
- id: align_and_count_report.report_top_hits
outputSource: align_and_count/report_top_hits
outputSource: align_and_count.report_top_hits
type: File
- id: align_and_count_report.viral_core_version
outputSource: align_and_count/viralngs_version
outputSource: align_and_count.viralngs_version
type: string
6 changes: 3 additions & 3 deletions wdl2cwl/tests/cwl_files/align_and_count_multiple_report.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -274,11 +274,11 @@ steps:
contain at least one item.";} else { return "";}}
outputs:
- id: align_and_count_multiple_report.report
outputSource: align_and_count_summary/count_summary
outputSource: align_and_count_summary.count_summary
type: File
- id: align_and_count_multiple_report.report_top_hits
outputSource: align_and_count_summary_top_hits/count_summary
outputSource: align_and_count_summary_top_hits.count_summary
type: File
- id: align_and_count_multiple_report.viral_core_version
outputSource: align_and_count_summary/viralngs_version
outputSource: align_and_count_summary.viralngs_version
type: string
4 changes: 2 additions & 2 deletions wdl2cwl/tests/cwl_files/gwas.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ steps:
- script.bash
outputs:
- id: gwas.logistic
outputSource: run_gwas/logistic
outputSource: run_gwas.logistic
type: File
- id: gwas.manhattan_plot
outputSource: create_plot/manhattan_plot
outputSource: create_plot.manhattan_plot
type: File
10 changes: 5 additions & 5 deletions wdl2cwl/tests/cwl_files/merge_svs.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -574,17 +574,17 @@ steps:
- script.bash
outputs:
- id: mergeSvs.bcftools_merged_sv_vcf
outputSource: filterBlocklistBcftools/filtered_sv_vcf
outputSource: filterBlocklistBcftools.filtered_sv_vcf
type: File
- id: mergeSvs.bcftools_merged_annotated_tsv
outputSource: bcftoolsAnnotateVariants/sv_variants_tsv
outputSource: bcftoolsAnnotateVariants.sv_variants_tsv
type: File
- id: mergeSvs.bcftools_merged_filtered_annotated_tsv
outputSource: bcftoolsAnnotsvFilter/filtered_tsv
outputSource: bcftoolsAnnotsvFilter.filtered_tsv
type: File
- id: mergeSvs.survivor_merged_sv_vcf
outputSource: filterBlocklistSurvivor/filtered_sv_vcf
outputSource: filterBlocklistSurvivor.filtered_sv_vcf
type: File
- id: mergeSvs.survivor_merged_annotated_tsv
outputSource: survivorAnnotateVariants/sv_variants_tsv
outputSource: survivorAnnotateVariants.sv_variants_tsv
type: File
8 changes: 4 additions & 4 deletions wdl2cwl/tests/cwl_files/workflow_inputs.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ steps:
stdout: _stdout
outputs:
- id: foo.first_result
outputSource: first
outputSource: inputs.first
type: string
- id: foo.third_result
outputSource: third
outputSource: inputs.third
type: float
- id: foo.echo_out
outputSource: echo/out
outputSource: echo.out
type: string
- id: foo.echo_result
outputSource: echo/result
outputSource: echo.result
type: string

0 comments on commit 6ce5a7e

Please sign in to comment.