Closed. This question is off-topic. It is not currently accepting answers. Learn more
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
去年关门了。
尝试用“new lines”命令将语法复制到我的终端,如下所示:
  qiime tools import \
   --type EMPPairedEndSequences \
   --input-path emp-paired-end-sequences \
   --output-path emp-paired-end-sequences.qza

它把每一行作为一个单独的命令,所以我必须把它们作为单独的命令复制。

最佳答案

如果在反斜杠之后和换行符之前有空格(空格或制表符),则换行符将失败。没有这样的空白,你的例子对我来说很好:

qiime tools import \
--type EMPPairedEndSequences \
--input-path emp-paired-end-sequences \
--output-path emp-paired-end-sequences.qza

10-07 16:40