stead99 5年前
コミット
f86029d0ad
2個のファイルの変更16行の追加3行の削除
  1. +3
    -3
      inputs
  2. +13
    -0
      workflow.wdl

+ 3
- 3
inputs ファイルの表示

@@ -1,8 +1,8 @@
{
"{{ project_name }}.docker": "registry.cn-shanghai.aliyuncs.com/pgx-docker-registry/sentieon-genomics:v2018.08.01",
"{{ project_name }}.docker": "registry.cn-shanghai.aliyuncs.com/pgx-docker-registry/milaboratory/mixcr:latest",
"{{ project_name }}.sample": "{{ sample_name }}",
"{{ project_name }}.tumor_fastq_2": "{{ tumor_fastq_2 }}",
"{{ project_name }}.tumor_fastq_1": "{{ tumor_fastq_1 }}",
"{{ project_name }}.read1": "{{ read1 }}",
"{{ project_name }}.read2": "{{ read2 }}",
"{{ project_name }}.disk_size": "{{ disk_size }}",
"{{ project_name }}.cluster_config": "{{ cluster if cluster != '' else 'OnDemand ecs.sn1ne.8xlarge img-ubuntu-vpc' }}"
}

+ 13
- 0
workflow.wdl ファイルの表示

@@ -0,0 +1,13 @@
import "./tasks/align.wdl" as align

workflow {{ project_name }} {

File read1
File read2
call align.align as align {
input: read1=read1, read2=read2
}
}

読み込み中…
キャンセル
保存