Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task that isn't supplied an input builds even though the wdl would fail #12

Open
jsotobroad opened this issue May 1, 2017 · 0 comments

Comments

@jsotobroad
Copy link

This doesn't throw an error but maybe should? There is no value passed for vcfs. The circle does turn white instead of black but that didn't make me feel like my wdl wont compile now if I run it as is but that is what would end up happening.

task CombineVCFs {
  Array[String] vcfs
  Array[String] vcf_indices
  String combined_vcf_name
  Int disk_size
  String gcr_project
  Int preemptible_tries
  
  command {

  }
...
}

call CombineVCFs {
      input:
        vcf_indices = IndexTsv.array_of_arrays[idx],
        combined_vcf_name = callset_name + "." + idx + ".vcf.gz",
        disk_size = disk_size,
        gcr_project = gcr_project,
        preemptible_tries = preemptible_tries,
 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant