【发布时间】:2017-11-23 20:58:59
【问题描述】:
我正在尝试运行此脚本来检查基因分型数据,以便使用插补服务器使用 HRC 或 1000G 进行插补,可以找到 here。它是基于 perl 的。它有这些正在(尝试)加载的包/库。
use strict;
use warnings;
use File::Basename;
use Getopt::Long;
use IO::Uncompress::Gunzip qw(gunzip $GunzipError);
use Term::ReadKey qw/ GetTerminalSize /;
但是,它会引发错误Unable to get Terminal Size. The TIOCGWINSZ ioctl didn't work. The COLUMNS and LINES environment variables didn't work. The resize program didn't work. at /usr/lib64/perl5/vendor_perl/Term/ReadKey.pm line 362.
我该如何解决这个问题?
【问题讨论】:
-
您在哪里/如何运行脚本?它期望在终端中运行。
标签: perl