Command line 在命令行中查找错误

Command line 在命令行中查找错误,command-line,Command Line,我试图使用命令行运行某种程序,但出现了一个错误。 命令行是: quantisnp2.exe--outdir D:\output\--config“C:\Program files\QuantiSNP\params.dat”--levels“C:\Program files\QuantiSNP\levels.dat”--sampleid CNV1--性别女性--发射器10--Lsettings 2000000--doXcorrect--基因型--gcdir D:\gc\--输入文件C:\Progr

我试图使用命令行运行某种程序,但出现了一个错误。 命令行是:

quantisnp2.exe--outdir D:\output\--config“C:\Program files\QuantiSNP\params.dat”--levels“C:\Program files\QuantiSNP\levels.dat”--sampleid CNV1--性别女性--发射器10--Lsettings 2000000--doXcorrect--基因型--gcdir D:\gc\--输入文件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

我要看的第一件事是命令末尾的不带引号的
C:\Program files\CNV1.txt
(所有其他文件都带引号)

这很有可能被视为两个参数,
C:\Program
files\CNV1.txt


您可能还想检查
emitters
的拼写,我很确定正确的英文单词应该是
emitters
,当然,这可能是QuantiSNP开发人员不知道如何拼写:-)的情况。

如何在命令行中找到错误所在?我在命令行中写错了什么吗?