Skip to content

Commit

Permalink
Make the AdapterSS2 wdl accept optional output, e.g. the zarr output. (
Browse files Browse the repository at this point in the history
…#115)

* Make the AdapterSS2 wdl accept optional output, e.g. the zarr output.

* Prepare the release by updating the pipeline_tools_version.
  • Loading branch information
rexwangcc authored Jan 23, 2019
1 parent b19577a commit 5f5b811
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion adapter_pipelines/Optimus/adapter.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ workflow AdapterOptimus {
Int max_cromwell_retries = 0
Boolean add_md5s = false
String pipeline_tools_version = "v0.43.1"
String pipeline_tools_version = "v0.44.0"
call GetInputs as prep {
input:
Expand Down
2 changes: 1 addition & 1 deletion adapter_pipelines/cellranger/adapter.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ workflow Adapter10xCount {
Int max_cromwell_retries = 0
Boolean add_md5s = false
String pipeline_tools_version = "v0.43.1"
String pipeline_tools_version = "v0.44.0"
call GetInputs {
input:
Expand Down
29 changes: 16 additions & 13 deletions adapter_pipelines/ss2_single_sample/adapter.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ workflow AdapterSmartSeq2SingleCell{
Int max_cromwell_retries = 0
Boolean add_md5s = false
String pipeline_tools_version = "v0.43.1"
String pipeline_tools_version = "v0.44.0"
call GetInputs as prep {
input:
Expand Down Expand Up @@ -177,18 +177,21 @@ workflow AdapterSmartSeq2SingleCell{
"value": stranded
}
],
outputs = flatten([[
analysis.aligned_bam,
analysis.bam_index,
analysis.insert_size_metrics,
analysis.quality_distribution_metrics,
analysis.quality_by_cycle_metrics,
analysis.bait_bias_summary_metrics,
analysis.rna_metrics,
analysis.aligned_transcriptome_bam,
analysis.rsem_gene_results,
analysis.rsem_isoform_results
], analysis.group_results, analysis.zarr_output_files]),
outputs = flatten(
select_all(
[[analysis.aligned_bam,
analysis.bam_index,
analysis.insert_size_metrics,
analysis.quality_distribution_metrics,
analysis.quality_by_cycle_metrics,
analysis.bait_bias_summary_metrics,
analysis.rna_metrics,
analysis.aligned_transcriptome_bam,
analysis.rsem_gene_results,
analysis.rsem_isoform_results
], analysis.group_results, analysis.zarr_output_files]
)
),
format_map = format_map,
submit_url = submit_url,
cromwell_url = cromwell_url,
Expand Down

0 comments on commit 5f5b811

Please sign in to comment.