Skip to content

Commit

Permalink
Update ntedit.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
warrenlr committed Aug 23, 2023
1 parent 4970a1b commit 1f5de2d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions ntedit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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()) {
Expand Down

0 comments on commit 1f5de2d

Please sign in to comment.