浏览代码

chromosome breaks

master
LUYAO REN 5 年前
父节点
当前提交
9e992fcea2
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      tasks/Freebayes.wdl
  2. +1
    -1
      tasks/breakChromo.wdl

+ 1
- 1
tasks/Freebayes.wdl 查看文件

set -o pipefail set -o pipefail
set -e set -e
nt=$(nproc) nt=$(nproc)
freebayes -f ${ref_dir}/${fasta} --genotype-qualities --max-complex-gap ${half_read_length} ${chr_bam} > ${sample_name}_${chromosome}_fb.vcf
/opt/freebayes/bin/freebayes -f ${ref_dir}/${fasta} --genotype-qualities --max-complex-gap ${half_read_length} ${chr_bam} > ${sample_name}_${chromosome}_fb.vcf
>>> >>>


runtime { runtime {

+ 1
- 1
tasks/breakChromo.wdl 查看文件

} }
output { output {
File chr_bam = "${sample_name}_${chromosome}.bam" File chr_bam = "${sample_name}_${chromosome}.bam"
File chr_bam_bai = "samtools index ${sample_name}_${chromosome}.bam.bai"
File chr_bam_bai = "${sample_name}_${chromosome}.bam.bai"
} }
} }

正在加载...
取消
保存