version 1.0 workflow QuotaConsumed { String pipeline_version = "0.0.1" input { Int chunkLength = 25000000 Int chunkOverlaps = 5000000 File multi_sample_vcf File ref_dict Array[String] contigs String reference_panel_path_prefix String genetic_maps_path String output_basename Boolean split_output_to_single_sample = false # file extensions used to find reference panel files String interval_list_suffix = ".interval_list" String bref3_suffix = ".bref3" } call ReturnHardcodedInt output { Int quota_consumed = ReturnHardcodedInt.quota_consumed } } task ReturnHardcodedInt { String ubuntu_docker = "ubuntu:20.04" command { touch empty_file } runtime { docker: ubuntu_docker disk: "10 GB" memory: "1000 MiB" cpu: 1 } output { Int quota_consumed = 50 } }