Browse Source

fix input bug: add .bai

master
YaqingLiu 5 years ago
parent
commit
59c7cd4e1f
3 changed files with 4 additions and 0 deletions
  1. +1
    -0
      inputs
  2. +1
    -0
      tasks/bamdst.wdl
  3. +2
    -0
      workflow.wdl

+ 1
- 0
inputs View File

{ {
"{{ project_name }}.bam": "{{ bam }}", "{{ project_name }}.bam": "{{ bam }}",
"{{ project_name }}.bam": "{{ bai }}",
"{{ project_name }}.bed": "{{ bed }}", "{{ project_name }}.bed": "{{ bed }}",
"{{ project_name }}.sample": "{{ sample }}", "{{ project_name }}.sample": "{{ sample }}",
"{{ project_name }}.docker": "{{ docker }}", "{{ project_name }}.docker": "{{ docker }}",

+ 1
- 0
tasks/bamdst.wdl View File

task bamdst { task bamdst {


File bam File bam
File bai
File bed File bed
String sample String sample
String docker String docker

+ 2
- 0
workflow.wdl View File

workflow {{ project_name }} { workflow {{ project_name }} {
File bam File bam
File bai
File bed File bed
String sample String sample
String docker String docker
call bamdst.bamdst as bamdst { call bamdst.bamdst as bamdst {
input: input:
bam=bam, bam=bam,
bai=bai,
bed=bed, bed=bed,
sample=sample, sample=sample,
docker=docker, docker=docker,

Loading…
Cancel
Save