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

running without a panel of normals now elicits a WARNING #308

Closed
sorelfitzgibbon opened this issue Aug 17, 2024 · 1 comment · Fixed by #319
Closed

running without a panel of normals now elicits a WARNING #308

sorelfitzgibbon opened this issue Aug 17, 2024 · 1 comment · Fixed by #319

Comments

@sorelfitzgibbon
Copy link
Contributor

WARN: Access to undefined parameter panel_of_normals_vcf -- Initialise it to a default value eg. `params.panel_of_normals_vcf = some_value

@yashpatel6
Copy link
Contributor

panel_of_normals = params.panel_of_normals_vcf ? "--panel-of-normals ${params.panel_of_normals_vcf}" : ""

Needs to be updated to

panel_of_normals =  params.getOrDefault("panel_of_normals_vcf", null) ? "--panel-of-normals ${params.panel_of_normals_vcf}" : ""

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

Successfully merging a pull request may close this issue.

2 participants