The coverage of 2315 genes selected from the Network of Cancer Genes (NCG).
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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