From 1f5de2de4518d1e05e30cb0d490f4f1459d586f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9?= Date: Wed, 23 Aug 2023 14:03:44 -0700 Subject: [PATCH] Update ntedit.cpp --- ntedit.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ntedit.cpp b/ntedit.cpp index 60d9334..457b5de 100644 --- a/ntedit.cpp +++ b/ntedit.cpp @@ -2146,8 +2146,10 @@ main(int argc, char** argv) // NOLINT // if the file is specified check that it is readable assert_readable(opt::vcf_filename); if (opt::vcf_filename.substr(opt::vcf_filename.find_last_of('.') + 1) == "gz") { // NOLINT - cout << PROGRAM ": warning: *gz files are not yet supported. The VCF will not be read. Please " - "relaunch ntEdit with .vcf after decompressing with unpigz or gunzip\n\n"; + cout << PROGRAM + ": warning: *gz files are not yet supported. The VCF will not be read. Please " + "relaunch ntEdit with .vcf after decompressing with unpigz or gunzip\n\n"; + } else { ifstream myfile(opt::vcf_filename); if (myfile.is_open()) {