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

add array imputation quota consumed wdl #1425

Merged
merged 3 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .dockstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ workflows:
subclass: WDL
primaryDescriptorPath: /pipelines/broad/arrays/imputation_beagle/LiftoverVcfs.wdl

- name: ArrayImputationQuotaConsumed
subclass: WDL
primaryDescriptorPath: /pipelines/broad/arrays/imputation_beagle/ArrayImputationQuotaConsumed.wdl

- name: RNAWithUMIsPipeline
subclass: WDL
primaryDescriptorPath: /pipelines/broad/rna_seq/RNAWithUMIsPipeline.wdl
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# 0.0.1
2024-11-13 (Date of Last Commit)

* Pipeline still in developmental state
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
version 1.0

import "../../../../tasks/broad/ImputationTasks.wdl" as tasks

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 tasks.CountSamples {
input:
vcf = multi_sample_vcf
}

output {
Int quota_consumed = CountSamples.nSamples
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# 0.0.1
2024-11-13 (Date of Last Commit)

* Pipeline still in developmental state
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ version 1.0

# This script is under review. It is not actively tested or maintained at this time.
workflow CreateImputationRefPanelBeagle {
String pipeline_version = "0.0.1"

input {
Array[File] ref_vcf
Array[File] ref_vcf_index
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# 0.0.1
2024-11-13 (Date of Last Commit)

* Pipeline still in developmental state
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# 0.0.1
2024-11-13 (Date of Last Commit)

* Pipeline still in developmental state
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# 0.0.1
2024-11-13 (Date of Last Commit)

* Pipeline still in developmental state
2 changes: 1 addition & 1 deletion pipelines/broad/arrays/imputation_beagle/LiftoverVcfs.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version 1.0
# Liftover VCFs from hg19 to hg38
workflow LiftoverVcfs {

String pipeline_version = "1.0.0"
String pipeline_version = "0.0.1"

input {
File vcf_path
Expand Down