bcftools-merge is used to merge VCF files into a singe VCF.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

4 年前
4 年前
4 年前
4 年前
12345678910111213141516171819202122232425262728293031
  1. #### Introduction
  2. The bcftools-merge is used to merge VCF files into a singe VCF.
  3. A common scenario is that after generating all VCF files you want to include in the panel, you can use bcftools-merge to merge them into a single Panel of Normal VCF.
  4. #### Usage
  5. ```bash
  6. # Enter the Choppy work environment
  7. open-choppy-env
  8. # App `bcftools-merge` should be installed for the first time
  9. choppy install YaqingLiu/bcftools-merge
  10. # Create input file `samples.json`
  11. touch samples.json
  12. # Submit your job
  13. choppy batch YaqingLiu/bcftools-merge-latest samples.json -p project_name
  14. ```
  15. #### Input File
  16. Input file `samples.json` should be in the form of json.
  17. For example:
  18. ```json
  19. {
  20. "vcf": [
  21. "oss://choppy-cromwell-result/test-choppy/..._pon.vcf",
  22. "oss://choppy-cromwell-result/test-choppy/..._pon.vcf",
  23. "oss://choppy-cromwell-result/test-choppy/..._pon.vcf"
  24. ],
  25. "panel_id": "PON_20200923",
  26. "sample_id": "PON_20200923"
  27. }
  28. ```
  29. *PS: sample_id is necessary for Choppy system*