其他分享
首页 > 其他分享> > ld分析和画图

ld分析和画图

作者:互联网

#PBS -N q338
#PBS -l nodes=1:ppn=8
#PBS -q middle

cd $PBS_O_WORKDIR


./lddecay.sh 338

lddecay.sh如下

#!/bin/bash
#lddecay,annovar
if [ ! -d "lddecay" ]
then 
    mkdir lddecay
    /public/home/caisl/lee/soft/PopLDdecay-3.41/bin/PopLDdecay -InVCF ${1}.filter.vcf -OutStat LD
    gunzip LD.stat*
    /public/home/caisl/lee/soft/PopLDdecay-3.41/bin/Plot_OnePop.pl -InFile LD.stat -output all.graph
    mv LD* lddecay
    mv all.graph* lddecay
else
    echo "lddecay has finished, next"
fi

标签:分析,bin,ld,lddecay,PBS,LD,画图,PopLDdecay,home
来源: https://www.cnblogs.com/xiaosagege/p/16418569.html