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.

3 anos atrás
12345678910111213141516171819202122232425262728293031
  1. # DELLY Somatic Mutation Calling
  2. ## App概述
  3. 输入文件为deduped bam files。肿瘤和配对检测somatic SV,一共包括5种SV,Insertion、Deletion、Inversion、Translocation、Duplication。
  4. ## 流程与参数
  5. 1. DELLY检测突变
  6. ```bash
  7. delly call -g <fastq_file> -o <output_bcf> -x human.hg38.excl.tsv <tumor_bam> <normal_bam>
  8. delly filter -f somatic -o <output_filtered_bcf> -s samples.tsv <output_bcf>
  9. ```
  10. 其中samples.tsv按照如下准备,其中的tumor_name和normal_name要与bam文件中一致
  11. ```bash
  12. tumor_name tumor
  13. normal_name control
  14. ```
  15. 2. 将bcf文件转换成vcf
  16. ```bash
  17. bcftools view <output_filtered> > <vcf>
  18. ```
  19. ## App输出文件
  20. 最终的结果文件在bcf2vcf中,是一个包含了所有SV类型,经过过滤后的vcf文件