Integrate the graphs across samples, to form one merged splicing graph (per gene).
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.

3 년 전
3 년 전
3 년 전
3 년 전
3 년 전
3 년 전
3 년 전
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # README.md
  2. > Author: Qingwang Chen
  3. >
  4. > Email: [qwch20@fudan.edu.cn](mailto:qwch20@fudan.edu.cn)
  5. >
  6. > Last Updates: 22/08/2021
  7. #### Brief Introduction
  8. For RNA-seq data, from bams to AS Information files.
  9. #### Requirements
  10. - choppy
  11. - Ali-Cloud
  12. - Linux
  13. ```
  14. # 激活choppy环境
  15. $ source activate choppy (open-choppy-env)
  16. # 第一次安装
  17. $ choppy install chenqingwang/SplAdder-merge
  18. # 非第一次安装
  19. $ choppy install chenqingwang/SplAdder-merge -f
  20. # 查询已安装APP
  21. $ choppy apps
  22. ```
  23. #### Quick Start
  24. ```
  25. # 准备 samples.csv 文件
  26. $ choppy samples chenqingwang/SplAdder-merge-latest > samples.csv
  27. # 准备无默认参数的samples.csv 文件
  28. $ choppy samples --no-default chenqingwang/SplAdder-merge-latest > samples.csv
  29. # 提交任务
  30. $ choppy batch chenqingwang/SplAdder-merge-latest samples.csv -p Your_project_name -l Your_label
  31. # 查询任务运行状况
  32. $ choppy query -L Your_label | grep "status"
  33. # 查询失败任务
  34. $ choppy search -s Failed -p Your_project_name -u chenqingwang --short-format
  35. # 结果文件地址
  36. $ oss://choppy-cromwell-result/test-choppy/Your_project_name/
  37. ```
  38. #### Description
  39. ```
  40. # samples: The file names to be analyzed should be written line by line in this file, and the file should be uploaded to AliCloud.
  41. ```