選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
liuruimei f00747b505 更新 'inputs' 3年前
tasks first commit 3年前
README.md first commit 3年前
inputs 更新 'inputs' 3年前
workflow.wdl first commit 3年前

README.md

DELLY Somatic Mutation Calling

App概述

输入文件为deduped bam files。肿瘤和配对检测somatic SV,一共包括5种SV,Insertion、Deletion、Inversion、Translocation、Duplication。

流程与参数

  1. DELLY检测突变
delly call -g <fastq_file> -o <output_bcf> -x human.hg38.excl.tsv <tumor_bam> <normal_bam>

delly filter -f somatic -o <output_filtered_bcf> -s samples.tsv <output_bcf>

其中samples.tsv按照如下准备,其中的tumor_name和normal_name要与bam文件中一致

tumor_name	tumor
normal_name	control
  1. 将bcf文件转换成vcf
bcftools view <output_filtered> > <vcf>

App输出文件

最终的结果文件在bcf2vcf中,是一个包含了所有SV类型,经过过滤后的vcf文件