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.

пре 6 година
пре 6 година
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. **Author:** HGBS
  2. **Git:** http://choppy.3steps.cn/LiXiangNan/hrd_score.git
  3. **Last Updates:** 23/01/2019
  4. **Description**
  5. > 本APP适用于乳腺癌WGS数据HRD score的计算,此APP需要以ascatNgs结果作为输入。
  6. ## App使用指南
  7. ### 安装App
  8. ```bash
  9. # 激活choppy环境
  10. source activate choppy-latest
  11. # 安装app
  12. choppy install LiXiangNan/hrd_score
  13. ```
  14. ### 参数说明
  15. 查看帮助文档:
  16. 输入Rscript calculate_HRD.R --help
  17. ```bash
  18. $ Rscript calculate_HRD.R --help
  19. Arguments:
  20. --out_dir=out_directory The output directory
  21. --Tumor_LogR_file=tumor_LogR The output tumor LogR file from ascatNgs
  22. --Tumor_BAF_file=tumor_BAF The output tumor BAF file from ascatNgs
  23. --Germline_LogR_file=Normal_LogR The output normal LogR file from ascatNgs
  24. --Germline_BAF_file=Normal_BAF The output normal BAF file from ascatNgs
  25. --HRD_file_prefix=prefix The name prefix of HRD score results
  26. --help Print help information
  27. Except --help, The other parameters must be set in orders!
  28. ```
  29. ### 输入与输出:
  30. 输入文件为ascatNgs输出的LogR及BAF文件,如:
  31. ```bash
  32. *.tumour.LogR.txt 为tumor样本LogR文件
  33. *.normal.LogR.txt 为normal样本LogR文件
  34. *.tumour.BAF.txt 为tumor样本BAF文件
  35. *.normal.BAF.txt 为normal样本BAF文件
  36. ```
  37. 输出文件后缀为.txt文件:
  38. ```bash
  39. prefix.txt prfix为指定的输出文件名前缀
  40. ```
  41. ### 提交任务
  42. ```bash
  43. choppy Rscript calculate_HRD.R --out_dir=out_directory --Tumor_LogR_file=tumor_LogR \
  44. --Tumor_BAF_file=tumor_BAF --Tumor_BAF_file=tumor_BAF --Germline_BAF_file=Normal_BAF \
  45. --Germline_BAF_file=Normal_BAF
  46. ```
  47. ## 更多使用信息
  48. 详见[Choppy使用说明](http://docs.3steps.cn))