Ver código fonte

alter format access

master
YaqingLiu 4 anos atrás
pai
commit
a93383fd2f
2 arquivos alterados com 3 adições e 1 exclusões
  1. +2
    -1
      tasks/access.wdl
  2. +1
    -0
      workflow.wdl

+ 2
- 1
tasks/access.wdl Ver arquivo

@@ -1,6 +1,7 @@
task access {
File faidx
File fasta
File? bed
String method
String min_gap_size
String docker
@@ -9,7 +10,7 @@ task access {

command <<<
if [ ${method}=="amplicon" ]; then
touch access-mappable.bed
cp ${bed} access-mappable.bed
else
cnvkit.py access -s ${min_gap_size} -o access-mappable.bed ${fasta}
fi

+ 1
- 0
workflow.wdl Ver arquivo

@@ -24,6 +24,7 @@ workflow {{ project_name }} {
input:
fasta = fasta,
faidx = faidx,
bed = bed,
method = method,
min_gap_size = min_gap_size,
docker = docker,

Carregando…
Cancelar
Salvar