Skip to content

Commit

Permalink
Remove Alignment Viz output
Browse files Browse the repository at this point in the history
  • Loading branch information
lvreynoso committed Jul 2, 2024
1 parent a7c54be commit 3d6f2ab
Showing 1 changed file with 0 additions and 45 deletions.
45 changes: 0 additions & 45 deletions workflows/short-read-mngs/experimental.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -71,51 +71,6 @@ task GenerateTaxidLocator {
}
}

task GenerateAlignmentViz {
input {
String docker_image_id
String s3_wd_uri
File gsnap_m8_gsnap_deduped_m8
File taxid_annot_sorted_nt_fasta
File taxid_locations_nt_json
File taxid_annot_sorted_nr_fasta
File taxid_locations_nr_json
File taxid_annot_sorted_genus_nt_fasta
File taxid_locations_genus_nt_json
File taxid_annot_sorted_genus_nr_fasta
File taxid_locations_genus_nr_json
File taxid_annot_sorted_family_nt_fasta
File taxid_locations_family_nt_json
File taxid_annot_sorted_family_nr_fasta
File taxid_locations_family_nr_json
File taxid_locations_combined_json
String nt_db
File nt_loc_db
}
command<<<
set -euxo pipefail
idseq-dag-run-step --workflow-name experimental \
--step-module idseq_dag.steps.generate_alignment_viz \
--step-class PipelineStepGenerateAlignmentViz \
--step-name alignment_viz_out \
--input-files '[["~{gsnap_m8_gsnap_deduped_m8}"], ["~{taxid_annot_sorted_nt_fasta}", "~{taxid_locations_nt_json}", "~{taxid_annot_sorted_nr_fasta}", "~{taxid_locations_nr_json}", "~{taxid_annot_sorted_genus_nt_fasta}", "~{taxid_locations_genus_nt_json}", "~{taxid_annot_sorted_genus_nr_fasta}", "~{taxid_locations_genus_nr_json}", "~{taxid_annot_sorted_family_nt_fasta}", "~{taxid_locations_family_nt_json}", "~{taxid_annot_sorted_family_nr_fasta}", "~{taxid_locations_family_nr_json}", "~{taxid_locations_combined_json}"]]' \
--output-files '["align_viz.summary"]' \
--output-dir-s3 '~{s3_wd_uri}' \
--additional-files '{"nt_loc_db": "~{nt_loc_db}", "nt_db": "~{nt_db}"}' \
--additional-attributes '{"nt_db": "~{nt_db}"}'
>>>
output {
String step_description_md = read_string("alignment_viz_out.description.md")
File align_viz_summary = "align_viz.summary"
File? output_read_count = "alignment_viz_out.count"
Array[File] align_viz = glob("align_viz/*.align_viz.json")
Array[File] longest_reads = glob("longest_reads/*.longest_5_reads.fasta")
}
runtime {
docker: docker_image_id
}
}

task GenerateCoverageViz {
input {
String docker_image_id
Expand Down

0 comments on commit 3d6f2ab

Please sign in to comment.