ソースを参照

Update: VEP ncbi_build

master
YaqingLiu 3年前
コミット
cd2666a59f
1個のファイルの変更2行の追加2行の削除
  1. +2
    -2
      tasks/VEP.wdl

+ 2
- 2
tasks/VEP.wdl ファイルの表示

@@ -25,9 +25,9 @@ task VEP {
awk -F'\t' '{if(($1~"^#")||($1!~"^#" && $7=="PASS")){print $0}}' ${vcf} > ${basename}.PASS.vcf
# Define ncbi_build
if [ hg == "hg19" ]; then
if [ ${hg} == "hg19" ]; then
ncbi_build="GRCh37"
elif [ hg == "hg38" ]; then
elif [ ${hg} == "hg38" ]; then
ncbi_build="GRCh38"
ncol=`awk -F'\t' '{if($1!~"^#"){print NF}}' ${basename}.PASS.vcf | uniq`

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