浏览代码

上传文件至 ''

master
meng 2 年前
父节点
当前提交
9fc2ed20c9
共有 4 个文件被更改,包括 60 次插入0 次删除
  1. 二进制
      README.md
  2. +12
    -0
      defaults
  3. +15
    -0
      inputs
  4. +33
    -0
      workflow.wdl

二进制
README.md 查看文件


+ 12
- 0
defaults 查看文件

@@ -0,0 +1,12 @@
{
"tumour_bam":"",
"tumour_bam_bai":"",
"normal_bam":"",
"normal_bam_bai":"",
"ref_fasta":"GRCh38.d1.vd1.fa",
"ref_dir":"oss://hcc1395/reference_genome/GRCh38.d1.vd1",
"sample_id":"",
"docker":"registry.cn-shanghai.aliyuncs.com/hcc1395_aliyun/strelka:v2.9.10",
"cluster_config":"OnDemand ecs.sn1ne.4xlarge img-ubuntu-vpc",
"disk_size":"500"
}

+ 15
- 0
inputs 查看文件

@@ -0,0 +1,15 @@
{
"{{ project_name }}.tumour_bam": "{{ tumour_bam }}",
"{{ project_name }}.tumour_bam_bai": "{{ tumour_bam_bai }}",
"{{ project_name }}.normal_bam": "{{ normal_bam }}",
"{{ project_name }}.normal_bam_bai": "{{ normal_bam_bai }}",
"{{ project_name }}.ref_fasta": "{{ref_fasta}}",
"{{ project_name }}.ref_dir": "{{ ref_dir }}",
"{{ project_name }}.sample_id": "{{ sample_id }}",
"{{ project_name }}.manta_indel_vcf": "{{ manta_indel_vcf }}",
"{{ project_name }}.manta_indel_vcf_index": "{{ manta_indel_vcf_index }}",
"{{ project_name }}.docker_stralka": "{{ docker_stralka }}",
"{{ project_name }}.cluster_config": "{{ cluster_config }}",
"{{ project_name }}.disk_size": "{{ disk_size }}"

}

+ 33
- 0
workflow.wdl 查看文件

@@ -0,0 +1,33 @@
import "./tasks/stralka.wdl" as stralka

workflow {{ project_name }} {
File tumour_bam
File tumour_bam_bai
File normal_bam
File normal_bam_bai
String ref_fasta
File ref_dir
String sample_id
File? manta_indel_vcf
File? manta_indel_vcf_index
# excute env
String docker_stralka
String cluster_config
String disk_size

call stralka.strelka_calling as stralka{
input:
tumour_bam=tumour_bam,
tumour_bam_bai=tumour_bam_bai,
normal_bam=normal_bam,
normal_bam_bai=normal_bam_bai,
ref_fasta=ref_fasta,
ref_dir=ref_dir,
sample_id=sample_id,
docker=docker_stralka,
cluster_config=cluster_config,
disk_size=disk_size
}

}

正在加载...
取消
保存