在命令行中查找错误
我正在尝试使用命令行运行某种程序,但出现错误。 命令行为:
quantisnp2.exe --outdir D:\output\ --config "C:\Program files\QuantiSNP\params.dat" --levels "C:\Program files\QuantiSNP\levels.dat " --sampleid CNV1 --性别女性 --emitters 10 --Lsettings 2000000 --doX Correct --genotypes --gcdir D:\gc\ --input-files C:\Program 文件\CNV1.txt
QuantiSNP:Single-file mode input find.
QuantiSNP:Processing file: C:|Program
QuantiSNP:Local CG content directory specified. Local CG content correction will be used.
??? Error using ==>textread at 167
File not found.
Error in ==> quantisnp2 at 293
I am trying to run some kind of programm using command line, but I got an error.
The command line is:
quantisnp2.exe --outdir D:\output\ --config "C:\Program files\QuantiSNP\params.dat" --levels "C:\Program files\QuantiSNP\levels.dat" --sampleid CNV1 --gender female --emiters 10 --Lsettings 2000000 --doXcorrect --genotypes --gcdir D:\gc\ --input-files C:\Program files\CNV1.txt
QuantiSNP:Single-file mode input find.
QuantiSNP:Processing file: C:|Program
QuantiSNP:Local CG content directory specified. Local CG content correction will be used.
??? Error using ==>textread at 167
File not found.
Error in ==> quantisnp2 at 293
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我要查看的第一件事是命令末尾未加引号的
C:\Program files\CNV1.txt
(所有其他命令都被引用)。很有可能被视为两个参数,
C:\Program
和files\CNV1.txt
。您可能还想检查
emitters
的拼写,我很确定正确的英文单词是emitters
,当然,这可能是 QuantiSNP 的情况开发人员不知道如何拼写:-)The first thing I'd be looking at is the unquoted
C:\Program files\CNV1.txt
at the end of the command (all your other ones are quoted).There's a good chance that's being treated as two arguments,
C:\Program
andfiles\CNV1.txt
.You may also want to check the spelling of
emiters
, I'm pretty certain the correct English word would beemitters
though, of course, this could be a case of the QuantiSNP developers not knowing how to spell :-)