ソースを参照

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 ファイルの表示

@@ -15,7 +15,7 @@ task freebayes {
set -o pipefail
set -e
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 {

+ 1
- 1
tasks/breakChromo.wdl ファイルの表示

@@ -23,6 +23,6 @@ task breakChromo {
}
output {
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"
}
}

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