As the error says, the file is not compressed. In linux the file extension is essentially optional. The file could be named my.vcf.txt yet be compressed.
Use the file command to get file type in linux:
% echo test > my.vcf.gz
% file my.vcf.gz
my.vcf.gz: ASCII text
!! The same happens to me when I accidentally do this! I never found a way to recover the instance. I think There's some escaped characters that terminals the garbled strings returning the instance to normal characters. Similar to output colors to the terminal eg \033[0m to end color.
Nice solution! Normally I run "head" on it which ruins my Putty instance.
!! The same happens to me when I accidentally do this! I never found a way to recover the instance. I think There's some escaped characters that terminals the garbled strings returning the instance to normal characters. Similar to output colors to the terminal eg
\033[0m
to end color.