Germline & Somatic short variant discovery (SNVs + Indels) for WGS & WES.
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
4 роки тому
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. ### Variant Calling
  2. This APP developed for germline and somatic short variant discovery (SNVs + Indels).
  3. **Accepted Data**
  4. * TN matched WES for somatic variant calling
  5. * TN matched WGS for somatic variant calling
  6. * Normal-only WES for germline variant calling
  7. * Normal-only WGS for germline variant calling
  8. The datatype is judged by whether the bed file is set (i.e. the `regions` in inputs).
  9. ---
  10. **Supported Callers**
  11. * The fields corresponding to these callers include `haplotyper`, `tnseq`, `tnscope`, `varscan`.
  12. * All callers are <u>**not activated by default**</u>, which means the default setting is `false`.
  13. * You need to manually set the caller to `true` in the submitted sample.csv.
  14. <u>***Germline***</u>
  15. * Haplotyper
  16. <u>***Somatic***</u>
  17. * TNseq (TNhaplotyper2)
  18. * TNscope
  19. * VarScan
  20. ---
  21. **Annotation Tools**
  22. * The fields corresponding to two tools include `annovar`, `vep`.
  23. * All tools are <u>**not activated by default**</u>, which means the default setting is `false`.
  24. * You need to manually set the caller to `true` in the submitted sample.csv.
  25. ### New Releases
  26. * TNhaplotyper, named as TNseq in `v0.1.0`, has beed substituted by TNhaplotyper2.
  27. * The `corealigner` step has been removed.
  28. * The `vcf2maf` step has been removed. Thus, the final output is the annotated `VCF`.
  29. * Some parameters' details have been changed, such as the `interval_list` has turned into `interval`.
  30. ### Getting Started
  31. We recommend using choppy system and Aliyun OSS service. The command will look like this:
  32. ```
  33. # Activate the choppy environment
  34. $ open-choppy-env
  35. # Install the APP
  36. $ choppy install YaqingLiu/variant-calling [-f]
  37. # List the parameters
  38. $ choppy samples YaqingLiu/variant-calling-latest [--no-default]
  39. # Submit you task with the `samples.csv file` and `project name`
  40. $ choppy batch YaqingLiu/variant-calling-latest samples.csv -p Project [-l project:Label]
  41. # Query the status of all tasks in the project
  42. $ choppy query -L project:Label | grep "status"
  43. ```
  44. **Please note:** The `defaults` can be forcibly replaced by the settings in `samples.csv`. Therefore, there is no need to contact me over this issue.
  45. The parameters that must need contains: sample_id,normal_fastq_1,normal_fastq_2,tumor_fastq_1,tumor_fastq_2
  46. **Please carefully check**
  47. * the reference genome you want to use is hg38 or hg19.
  48. * bed file.
  49. * the caller you want to use.
  50. * PoN VCFs for TNseq and TNscope is supported, but are need to be generated in advance.
  51. * interval padding is default 0, and you can change it.
  52. * the annotation tool is ANNOVAR or VEP.