You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.0KB

3 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # README.md
  2. > Author: Qingwang Chen
  3. >
  4. > Email: [qwch20@fudan.edu.cn](mailto:qwch20@fudan.edu.cn)
  5. >
  6. > Last Updates: 16/07/2021
  7. #### Requirements
  8. - choppy
  9. - Ali-Cloud
  10. - Linux
  11. ```
  12. # 激活choppy环境
  13. $ source activate choppy (open-choppy-env)
  14. # 第一次安装
  15. $ choppy install chenqingwang/rtgTools_vcfeval
  16. # 非第一次安装
  17. $ choppy install chenqingwang/rtgTools_vcfeval -f
  18. # 查询已安装APP
  19. $ choppy apps
  20. ```
  21. #### Quick Start
  22. ```
  23. # 准备 samples.csv 文件
  24. $ choppy samples chenqingwang/rtgTools_vcfeval-latest > samples.csv
  25. # 准备无默认参数的samples.csv 文件
  26. choppy samples --no-default chenqingwang/rtgTools_vcfeval-latest > samples.csv
  27. # 提交任务
  28. $ choppy batch chenqingwang/rtgTools_vcfeval-latest samples.csv -p Your_project_name -l Your_label
  29. # 查询任务运行状况
  30. $ choppy query -L Your_label | grep "status"
  31. # 查询失败任务
  32. $ choppy search -s Failed -p Your_project_name -u chenqingwang --short-format
  33. # 结果文件地址
  34. $ oss://choppy-cromwell-result/test-choppy/Your_project_name/
  35. ```