Germline & Somatic short variant discovery (SNVs + Indels) for WGS & WES.
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.

преди 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 години
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. >**Supported Callers**
  10. * The fields corresponding to these callers include `haplotyper`, `tnseq`, `tnscope`, `varscan`.
  11. * All callers are <u>**not activated by default**</u>, which means the default setting is `false`.
  12. * You need to manually set the caller to `true` in the submitted sample.csv.
  13. <u>***Germline***</u>
  14. * Haplotyper
  15. <u>***Somatic***</u>
  16. * TNseq (TNhaplotyper2)
  17. * TNscope
  18. * VarScan
  19. >**Annotation Tools**
  20. * The fields corresponding to two tools include `annovar`, `vep`.
  21. * All tools are <u>**not activated by default**</u>, which means the default setting is `false`.
  22. * You need to manually set the caller to `true` in the submitted sample.csv.
  23. ### New Releases
  24. * TNhaplotyper, named as TNseq in `v0.1.0`, has beed substituted by TNhaplotyper2.
  25. * The `corealigner` step has been removed.
  26. * The `vcf2maf` step has been removed. Thus, the final output is the annotated `VCF`.
  27. * Some parameters' details have been changed, such as the `interval_list` has turned into `interval`.
  28. ### Getting Started
  29. We recommend using choppy system and Aliyun OSS service. The command will look like this:
  30. ```
  31. # Activate the choppy environment
  32. $ open-choppy-env
  33. # Install the APP
  34. $ choppy install YaqingLiu/variant-calling [-f]
  35. # List the parameters
  36. $ choppy samples YaqingLiu/variant-calling-latest [--no-default]
  37. # Submit you task with the `samples.csv file` and `project name`
  38. $ choppy batch YaqingLiu/variant-calling-latest samples.csv -p Project [-l project:Label]
  39. # Query the status of all tasks in the project
  40. $ choppy query -L project:Label | grep "status"
  41. ```
  42. **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.
  43. The parameters that must need contains: sample_id,normal_fastq_1,normal_fastq_2,tumor_fastq_1,tumor_fastq_2
  44. **Please carefully check**
  45. * the reference genome you want to use is hg38 or hg19.
  46. * bed file.
  47. * the caller you want to use.
  48. * PoN VCFs for TNseq and TNscope is supported, but are need to be generated in advance.
  49. * interval padding is default 0, and you can change it.
  50. * the annotation tool is ANNOVAR or VEP.