from fastq to bam files
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.2KB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # RNA Sequencing Alignment Pipeline
  2. > Author: Li Zhihu; Qingwang Chen
  3. >
  4. > E-mail:qwchen20@fudan.edu.cn
  5. >
  6. > Git: http://choppy.3steps.cn/renluyao/RNAseq_germline_datapotal.git
  7. >
  8. > Last Updates: 2020/12/02
  9. # Brief Introduction
  10. For RNA-seq data, from bams to AS Information files.
  11. # Requirements
  12. choppy
  13. Ali-Cloud
  14. Linux
  15. ```
  16. # 激活choppy环境
  17. $ source activate choppy (open-choppy-env)
  18. # 第一次安装
  19. $ choppy install chenqingwang/RNAseq-alignment
  20. # 非第一次安装
  21. $ choppy install chenqingwang/RNAseq-alignment -f
  22. # 查询已安装APP
  23. $ choppy apps
  24. ```
  25. # Quick Start
  26. ```
  27. # 准备 samples.csv 文件
  28. $ choppy samples chenqingwang/RNAseq-alignment-latest > samples.csv
  29. # 准备无默认参数的samples.csv 文件
  30. choppy samples --no-default chenqingwang/RNAseq-alignment-latest > samples.csv
  31. # 提交任务
  32. $ choppy batch chenqingwang/RNAseq-alignment-latest samples.csv -p Your_project_name -l Your_label
  33. # 查询任务运行状况
  34. $ choppy query -L Your_label | grep "status"
  35. # 查询失败任务
  36. $ choppy search -s Failed -p Your_project_name -u chenqingwang --short-format
  37. # 结果文件地址
  38. $ oss://choppy-cromwell-result/test-choppy/Your_project_name/
  39. ```