Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

3 lat temu
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # README.md
  2. > Author: Qingwang Chen
  3. >
  4. > Email: [qwch20@fudan.edu.cn](mailto:qwch20@fudan.edu.cn)
  5. >
  6. > Last Updates: 24/08/2021
  7. #### Brief Introduction
  8. Collect the individual quantifications and aggregate them in a joint database. The the joint graph is fully quantified and we can move on to use it for downstream analyses, for instance to extract different AS events:
  9. --event-types exon_skip,intron_retention,alt_3prime,alt_5prime,mutex_exons,mult_exon_skip
  10. #### Requirements
  11. - choppy
  12. - Ali-Cloud
  13. - Linux
  14. ```
  15. # 激活choppy环境
  16. $ source activate choppy (open-choppy-env)
  17. # 第一次安装
  18. $ choppy install chenqingwang/SplAdder-quantification-merge
  19. # 非第一次安装
  20. $ choppy install chenqingwang/SplAdder-quantification-merge -f
  21. # 查询已安装APP
  22. $ choppy apps
  23. ```
  24. #### Quick Start
  25. ```
  26. # 准备 samples.csv 文件
  27. $ choppy samples chenqingwang/SplAdder-quantification-merge-latest > samples.csv
  28. # 准备无默认参数的samples.csv 文件
  29. $ choppy samples --no-default chenqingwang/SplAdder-quantification-merge-latest > samples.csv
  30. # 提交任务
  31. $ choppy batch chenqingwang/SplAdder-quantification-merge-latest samples.csv -p Your_project_name -l Your_label
  32. # 查询任务运行状况
  33. $ choppy query -L Your_label | grep "status"
  34. # 查询失败任务
  35. $ choppy search -s Failed -p Your_project_name -u chenqingwang --short-format
  36. # 结果文件地址
  37. $ oss://choppy-cromwell-result/test-choppy/Your_project_name/
  38. ```
  39. #### Description
  40. ```
  41. # samples: The file names to be analyzed should be written line by line in this file, and the file should be uploaded to AliCloud.
  42. ```