bcftools-merge is used to merge VCF files into a singe VCF.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 4 años
hace 5 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
hace 4 años
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. ```shell
  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*