stead99 hace 5 años
padre
commit
f86029d0ad
Se han modificado 2 ficheros con 16 adiciones y 3 borrados
  1. +3
    -3
      inputs
  2. +13
    -0
      workflow.wdl

+ 3
- 3
inputs Ver fichero

@@ -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 Ver fichero

@@ -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
}
}

Cargando…
Cancelar
Guardar