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

Change backticks to single quotes in several error messages #7995

Merged
merged 1 commit into from
Aug 18, 2022
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: 3 additions & 3 deletions scripts/variantstore/wdl/GvsImportGenomes.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ workflow GvsImportGenomes {
if ((num_samples > max_auto_batch_size) && !(defined(load_data_batch_size))) {
call Utils.TerminateWorkflow as DieDueToTooManySamplesWithoutExplicitLoadDataBatchSize {
input:
message = "Importing " + num_samples + " samples but `load_data_batch_size` not explicitly specified; limit for auto batch-sizing is " + max_auto_batch_size + " samples."
message = "Importing " + num_samples + " samples but 'load_data_batch_size' not explicitly specified; limit for auto batch-sizing is " + max_auto_batch_size + " samples."
}
}

Expand Down Expand Up @@ -56,8 +56,8 @@ workflow GvsImportGenomes {
if ((input_length != length(external_sample_names)) || (input_indexes_length != length(external_sample_names))) {
call Utils.TerminateWorkflow as DieDueToMismatchedVcfAndIndexLengths {
input:
message = "The lengths of workflow inputs `external_sample_names` (" + length(external_sample_names) +
"), `input_vcfs` (" + input_length + ") and `input_vcf_indexes` (" + input_indexes_length + ") should be the same.\n\n" +
message = "The lengths of workflow inputs 'external_sample_names' (" + length(external_sample_names) +
"), 'input_vcfs' (" + input_length + ") and 'input_vcf_indexes' (" + input_indexes_length + ") should be the same.\n\n" +
"If any of these counts are zero an incorrect or non-existent attribute may have been referenced."
}
}
Expand Down