Skip to content

Commit

Permalink
Update output names for ReblockGVCF (#1443)
Browse files Browse the repository at this point in the history
* Update output names for ReblockGVCF

---------

Co-authored-by: GitHub Action <[email protected]>
  • Loading branch information
jessicaway and actions-user authored Jan 8, 2025
1 parent 642e3f2 commit 6e9963c
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 14 deletions.
6 changes: 3 additions & 3 deletions pipeline_versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ Pipeline Name Version Date of Last Commit
CheckFingerprint 1.0.22 2024-10-28
RNAWithUMIsPipeline 1.0.18 2024-11-04
AnnotationFiltration 1.2.7 2024-11-04
UltimaGenomicsWholeGenomeGermline 1.1.2 2024-11-04
UltimaGenomicsWholeGenomeGermline 1.1.3 2024-12-05
WholeGenomeGermlineSingleSample 3.3.3 2024-11-04
ExomeGermlineSingleSample 3.2.3 2024-11-04
JointGenotypingByChromosomePartTwo 1.5.2 2024-11-04
JointGenotypingByChromosomePartOne 1.5.2 2024-11-04
ReblockGVCF 2.3.2 2024-11-04
ReblockGVCF 2.4.0 2024-12-05
JointGenotyping 1.7.2 2024-11-04
UltimaGenomicsJointGenotyping 1.2.2 2024-11-04
VariantCalling 2.2.4 2024-11-04
UltimaGenomicsWholeGenomeCramOnly 1.0.23 2024-11-04
GDCWholeGenomeSomaticSingleSample 1.3.4 2024-11-04
BroadInternalRNAWithUMIs 1.0.36 2024-11-04
BroadInternalUltimaGenomics 1.1.2 2024-11-04
BroadInternalUltimaGenomics 1.1.3 2024-12-05
BroadInternalArrays 1.1.14 2024-11-04
BroadInternalImputation 1.1.14 2024-11-04
Arrays 2.6.30 2024-11-04
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.4.0
2024-12-05 (Date of Last Commit)

* Updated output names for ReblockGVCF workflow from output_vcf and output_vcf_index to reblocked_gvcf and reblocked_gvcf_index respectively

# 2.3.2
2024-11-04 (Date of Last Commit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "../../../../../../tasks/broad/Utilities.wdl" as utils

workflow ReblockGVCF {

String pipeline_version = "2.3.2"
String pipeline_version = "2.4.0"


input {
Expand Down Expand Up @@ -70,8 +70,8 @@ workflow ReblockGVCF {
}

output {
File output_vcf = Reblock.output_vcf
File output_vcf_index = Reblock.output_vcf_index
File reblocked_gvcf = Reblock.output_vcf
File reblocked_gvcf_index = Reblock.output_vcf_index
}
meta {
allowNestedInputs: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.1.3
2024-12-05 (Date of Last Commit)

* Updated the name of the output for ReblockGVCFs; this does not affect this pipeline

# 1.1.2
2024-11-04 (Date of Last Commit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ workflow UltimaGenomicsWholeGenomeGermline {
filtering_model_no_gt_name: "String describing the optional filtering model; default set to rf_model_ignore_gt_incl_hpol_runs"
}

String pipeline_version = "1.1.2"
String pipeline_version = "1.1.3"


References references = alignment_references.references
Expand Down Expand Up @@ -202,8 +202,8 @@ workflow UltimaGenomicsWholeGenomeGermline {

# Outputs that will be retained when execution is complete
output {
File output_gvcf = ReblockGVCF.output_vcf
File output_gvcf_index = ReblockGVCF.output_vcf_index
File output_gvcf = ReblockGVCF.reblocked_gvcf
File output_gvcf_index = ReblockGVCF.reblocked_gvcf_index
File output_vcf = ConvertGVCFtoVCF.output_vcf
File output_vcf_index = ConvertGVCFtoVCF.output_vcf_index

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.1.3
2024-12-05 (Date of Last Commit)

* Updated the name of the output for ReblockGVCFs; this does not affect this pipeline

# 1.1.2
2024-11-04 (Date of Last Commit)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "../../../../../../../pipelines/broad/qc/CheckFingerprint.wdl" as FP

workflow BroadInternalUltimaGenomics {

String pipeline_version = "1.1.2"
String pipeline_version = "1.1.3"

input {

Expand Down
8 changes: 4 additions & 4 deletions verification/test-wdls/TestReblockGVCF.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ workflow TestReblockGVCF {
# Collect all of the pipeline outputs into single Array[String]
Array[String] pipeline_outputs = flatten([
[ # File outputs
ReblockGVCF.output_vcf_index,
ReblockGVCF.output_vcf,
ReblockGVCF.reblocked_gvcf_index,
ReblockGVCF.reblocked_gvcf,
],

])
Expand Down Expand Up @@ -86,13 +86,13 @@ workflow TestReblockGVCF {
if (!update_truth){
call Utilities.GetValidationInputs as GetGvcf {
input:
input_file = ReblockGVCF.output_vcf,
input_file = ReblockGVCF.reblocked_gvcf,
results_path = results_path,
truth_path = truth_path
}
call Utilities.GetValidationInputs as GetGvcfIndex {
input:
input_file = ReblockGVCF.output_vcf_index,
input_file = ReblockGVCF.reblocked_gvcf_index,
results_path = results_path,
truth_path = truth_path
}
Expand Down

0 comments on commit 6e9963c

Please sign in to comment.