浏览代码

更新 'workflow.wdl'

master
meng 2 年前
父节点
当前提交
2097c51d24
共有 1 个文件被更改,包括 24 次插入36 次删除
  1. +24
    -36
      workflow.wdl

+ 24
- 36
workflow.wdl 查看文件





workflow {{ project_name }} { workflow {{ project_name }} {
#sample info
File? normal_deduped_bam
File? normal_deduped_bam_bai
File? tumor_deduped_bam
File? tumor_deduped_bam_bai
String sample_id
String Seq_platform
#reference fasta
#sample info
File? normal_deduped_bam
File? normal_deduped_bam_bai
File? tumor_deduped_bam
File? tumor_deduped_bam_bai
String sample_id
String Seq_platform
#reference fasta
String ref_fasta String ref_fasta
File ref_fasta_dir File ref_fasta_dir
String ref_bed
File annot_gff File annot_gff
File dbsnp_dir
File dbmills_dir
String dbsnp
String db_mills
File dbsnp_dir
File dbmills_dir
String dbsnp
String db_mills
File germline_resource File germline_resource
File germline_resource_tbi File germline_resource_tbi
File annovar_database File annovar_database
File? regions
File baseline
File hg38_CDS
File? regions
File baseline
File hg38_CDS


#docker #docker
String docker_fastp
String docker_fastp
String docker_sentieon String docker_sentieon
String SENTIEON_LICENSE String SENTIEON_LICENSE
String docker_qualimap String docker_qualimap
String docker_strelka String docker_strelka
String docker_bcftools String docker_bcftools
String docker_annovar String docker_annovar
String docker_tmb
String docker_MSIsensor
String docker_tmb
String docker_MSIsensor


#config #config
String cluster_config
String disk_size
String cluster_config
String disk_size
Boolean? fastqc Boolean? fastqc
Boolean bamqc Boolean bamqc
Boolean Annovar Boolean Annovar
Boolean AF_filter
Boolean AF_filter




if (normal_deduped_bam != ""){ if (normal_deduped_bam != ""){


} }


call MSIsensor.MSIsensor as MSIsensor {
input:
sample=sample_id,
fasta=ref_fasta,
ref_dir=ref_fasta_dir,
normal_bam=Sentieon_BQSR_normal.recaled_bam,
normal_bam_index=Sentieon_BQSR_normal.recaled_bam_index,
tumor_bam=Sentieon_BQSR_tumor.recaled_bam,
tumor_bam_index=Sentieon_BQSR_tumor.recaled_bam_index,
baseline=baseline,
docker=docker_MSIsensor,
cluster_config="OnDemand bcs.ps.g.large img-ubuntu-vpc",
disk_size=disk_size
}





call Haplotyper.Haplotyper as Haplotyper { call Haplotyper.Haplotyper as Haplotyper {
ref_fasta = ref_fasta, ref_fasta = ref_fasta,
ref_dir = ref_fasta_dir, ref_dir = ref_fasta_dir,
sample_id = sample_id, sample_id = sample_id,
ref_bed = ref_bed,
docker=docker_strelka, docker=docker_strelka,
cluster_config="OnDemand bcs.ps.g.6xlarge img-ubuntu-vpc", cluster_config="OnDemand bcs.ps.g.6xlarge img-ubuntu-vpc",
disk_size=disk_size disk_size=disk_size

正在加载...
取消
保存