Ruby IO::popen 和 crossbow

发布于 2024-11-17 18:27:33 字数 530 浏览 3 评论 0原文

http://www.ruby-doc.org/core/classes/IO .html#M000880

希望使用此方法(我认为)

要从 ruby​​ 内运行此命令行命令:

$CROSSBOW_HOME/cb_emr \
    --name "Crossbow-Ecoli" \ 
    --preprocess \ 
    --input=s3n://bgs.crossbow-01/example/e_coli/small.manifest \ 
    --output=s3n://bgs.crossbow-01/example/e_coli/output_small \ 
    --reference=s3n://

上面是我在命令行中输入的内容以直接从控制台运行

所以我很确定我有IO 方法是正确的...但是我在将上面的代码翻译成输入时相当迷失

http://www.ruby-doc.org/core/classes/IO.html#M000880

Looking to use this method ( I think)

To run this commandline command, from within ruby:

$CROSSBOW_HOME/cb_emr \
    --name "Crossbow-Ecoli" \ 
    --preprocess \ 
    --input=s3n://bgs.crossbow-01/example/e_coli/small.manifest \ 
    --output=s3n://bgs.crossbow-01/example/e_coli/output_small \ 
    --reference=s3n://

The above is what I enter in to the command line to run directly from console

So I'm pretty sure I've got the IO method correct... but I'm fairly lost on translating the above code into the input

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄与心 2024-11-24 18:27:34

这应该可以解决问题:

command =<<END_OF_COMMAND
#{ENV["CROSSBOW_HOME"]}/cb_emr \
    --name "Crossbow-Ecoli" \ 
    --preprocess \ 
    --input=s3n://bgs.crossbow-01/example/e_coli/small.manifest \ 
    --output=s3n://bgs.crossbow-01/example/e_coli/output_small \ 
    --reference=s3n://
END_OF_COMMAND

IO.popen(command) do |handle|
  handle.each_line do |line|
     puts line
  end
end

我正在迭代输出的每一行,因为我猜测您可能想以某种方式处理它。

THis should do the trick:

command =<<END_OF_COMMAND
#{ENV["CROSSBOW_HOME"]}/cb_emr \
    --name "Crossbow-Ecoli" \ 
    --preprocess \ 
    --input=s3n://bgs.crossbow-01/example/e_coli/small.manifest \ 
    --output=s3n://bgs.crossbow-01/example/e_coli/output_small \ 
    --reference=s3n://
END_OF_COMMAND

IO.popen(command) do |handle|
  handle.each_line do |line|
     puts line
  end
end

I am iterating over each line of the output, because I'm guessing you may want to process it somehow.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文