工具 | ParaFly

作者: shwzhao | 来源:发表于2021-09-18 13:41 被阅读0次

很多重复命令(如:建几万个基因树)用 for 循环串行太慢了,可以使用 ParaFly 并行。

  • 操作
    先用 for 循环或者 awk 将要运行的命令放入文件 cmd.sh
ParaFly -c cmd.sh -CPU 20
  • 运行结束后
Number of  Commands: 22967


All commands completed successfully. :-)

  • 参数意义
$ ParaFly
##########################################################
#
# Usage: ParaFly (opts)
#
# Required:
#   -c <str>              :filename containing list of bash-style commands to execute.
#   -CPU <int>            :number_of_threads
#
# Optional:
#   -shuffle              :randomly shuffles the command order.
#   -failed_cmds <str>    :filename to capture failed commands.  default("FailedCommands")
#   -v                    :simple progress monitoring.
#   -vv                   :increased verbosity in progress monitoring.
#
##########################################################

Note: This process creates a file named based on your commands filename with a .completed extension.
This enables a resume functionality, where if rerun, only those commands not completed successfully will be reprocessed.

相关文章

  • 工具 | ParaFly

    很多重复命令(如:建几万个基因树)用 for 循环串行太慢了,可以使用 ParaFly[http://parafl...

  • ParaFly - 命令行并行(批量)

    简介 ParaFly可以利用多线程程序编译指令(OpenMP)进行简单Unix/linux的并行命令处理,其优点是...

  • 2020-07-16常用有趣命令之shell管理

    1.进程的批量kill 2.进程并行化之软件 软件一:ParaFly:https://github.com/Par...

  • 工具工具还是工具

    最近几天参加了一个数据分析的训练营,每天晚上8点钟开始,一直讲到10点多,老师很卖力,干货也很多。今天结营,就在这...

  • 2019-01-08 ps总结

    ps 抠图工具 套索工具 多边套索工具 文字工具 磁性套索工具 魔棒工具 渐变工具 蒙版 图章工具 alt 吸取颜...

  • 【工具箱-2-选区工具】

    【工具箱-2-选区工具】 【矩形选框工具组:】矩形选框工具、椭圆选框工具、单行选框工具、单列选框工具。 个人理解:...

  • AI 2019 Mac版常用快捷键大全

    移动工具:V 选取工具:A 钢笔工具:P 添加锚点工具:+ 删除锚点工具:- 文字工具:T 多边形工具:L 矩形、...

  • PS扣图

    1扣图工具 套索工具 多边套索工具 磁性套索工具 快速选择工具 魔棒工具 橡皮擦工具 背景橡皮擦工具 魔术橡皮擦工...

  • AI热键

    选择工具:v 直接选择工具:a 魔棒工具:y 套索工具:q 钢笔工具:p 转换描点工具:Ctrl+c 文字工具:t...

  • 工具?工具人?

    很多时候,我们发明工具的目的是方便工作,结果,适得其反,不仅没有方便,反而增添了工作量。原来往上级交个什么东西,都...

网友评论

    本文标题:工具 | ParaFly

    本文链接:https://www.haomeiwen.com/subject/ehzegltx.html