bcftools-merge is used to merge VCF files into a singe VCF.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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