Skip to content

Commit

Permalink
Fix failure log expected filename, add needed wdl outputs to short-re…
Browse files Browse the repository at this point in the history
…ad-mngs postprocess
  • Loading branch information
lvreynoso committed Feb 10, 2024
1 parent 8681e5a commit cb549f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion workflows/amr/run.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ task RunSpades {
output {
File contigs = "spades/contigs.fasta"
File? scaffolds = "spades/scaffolds.fasta"
File? failure_log = "spades_failure.tsv"
File? failure_log = "spades_failure.json"
}
runtime {
docker: docker_image_id
Expand Down
2 changes: 2 additions & 0 deletions workflows/short-read-mngs/postprocess.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ task RunAssembly {
File? assembly_spades_output_log = "assembly/spades/spades.log"
File? output_read_count = "assembly_out.count"
File? version = "assembly_version.txt"
File? failure_log = "spades_failure.json"
}
runtime {
docker: docker_image_id
Expand Down Expand Up @@ -680,6 +681,7 @@ workflow czid_postprocess {
File? assembly_out_assembly_spades_output_log = RunAssembly.assembly_spades_output_log
File? spades_version = RunAssembly.version
File? assembly_out_count = RunAssembly.output_read_count
File? spades_failure_tracking_log = RunAssembly.failure_log
File coverage_out_assembly_contig_coverage_json = GenerateCoverageStats.assembly_contig_coverage_json
File coverage_out_assembly_contig_coverage_summary_csv = GenerateCoverageStats.assembly_contig_coverage_summary_csv
File? coverage_out_count = GenerateCoverageStats.output_read_count
Expand Down

0 comments on commit cb549f1

Please sign in to comment.