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

Wire Glimpse phasing runtime params into outer workflow #207

Merged
merged 1 commit into from
Mar 3, 2025
Merged
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
6 changes: 5 additions & 1 deletion GlimpseImputationPipeline/Glimpse2ImputationAndCheckQC.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ workflow Glimpse2ImputationAndCheckQC {
String? check_qc_docker
Int? check_qc_cpu
Int? check_qc_mem_gb
Int? glimpse_phase_cpu
Int? glimpse_phase_mem_gb
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In our local change I called these cpu_phase and mem_gb_phase to mirror the values in Glimpse2Imputaiton but for this PR thought it'd be good to better match check_qc_[cpu|mem_gb]. Happy to update however desired

}

call Glimpse2Imputation.Glimpse2Imputation {
Expand All @@ -62,7 +64,9 @@ workflow Glimpse2ImputationAndCheckQC {
docker_extract_num_sites_from_reference_chunk = docker_extract_num_sites_from_reference_chunk,
mem_scaling_factor_phase = mem_scaling_factor_phase,
cpu_ligate = cpu_ligate,
mem_gb_ligate = mem_gb_ligate
mem_gb_ligate = mem_gb_ligate,
cpu_phase = glimpse_phase_cpu,
mem_gb_phase = glimpse_phase_mem_gb
}

call Glimpse2CheckQC.Glimpse2CheckQC {
Expand Down
Loading