Procházet zdrojové kódy

Update: VEP ncbi_build

master
YaqingLiu před 3 roky
rodič
revize
cd2666a59f
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      tasks/VEP.wdl

+ 2
- 2
tasks/VEP.wdl Zobrazit soubor

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

Načítá se…
Zrušit
Uložit