|
|
|
|
|
|
|
|
String basename = basename(vcf,".vcf") |
|
|
String basename = basename(vcf,".vcf") |
|
|
String hg |
|
|
String hg |
|
|
File annovar_database |
|
|
File annovar_database |
|
|
|
|
|
Boolean only_pass |
|
|
String docker |
|
|
String docker |
|
|
String cluster_config |
|
|
String cluster_config |
|
|
String disk_size |
|
|
String disk_size |
|
|
|
|
|
|
|
|
set -e |
|
|
set -e |
|
|
nt=$(nproc) |
|
|
nt=$(nproc) |
|
|
|
|
|
|
|
|
|
|
|
if [ only_pass ]; then |
|
|
|
|
|
awk -F'\t' '{if(($1~"^#")||($1!~"^#" && $7=="PASS")){print $0}}' ${vcf} > ${sample_id}.INPUT.vcf |
|
|
|
|
|
else |
|
|
|
|
|
cp ${vcf} ${sample_id}.INPUT.vcf |
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
if [ ${hg} == "hg38" ]; then |
|
|
if [ ${hg} == "hg38" ]; then |
|
|
/installations/annovar/table_annovar.pl ${vcf} ${annovar_database} -buildver ${hg} -out ${basename} -remove -protocol refGene,cytoBand,genomicSuperDups,ljb26_all,dbnsfp35c,intervar_20180118,cosmic70,exac03,gnomad211_exome,clinvar_20200316 -operation g,r,r,f,f,f,f,f,f,f -nastring . -vcfinput -thread $nt |
|
|
|
|
|
|
|
|
/installations/annovar/table_annovar.pl ${sample_id}.INPUT.vcf ${annovar_database} -buildver ${hg} -out ${basename} -remove -protocol refGene,cytoBand,genomicSuperDups,ljb26_all,dbnsfp35c,intervar_20180118,cosmic70,exac03,gnomad211_exome,clinvar_20200316 -operation g,r,r,f,f,f,f,f,f,f -nastring . -vcfinput -thread $nt |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
if [ ${hg} == "hg19" ]; then |
|
|
if [ ${hg} == "hg19" ]; then |
|
|
/installations/annovar/table_annovar.pl ${vcf} ${annovar_database} -buildver ${hg} -out ${basename} -remove -protocol refGene,cytoBand,genomicSuperDups,ljb26_all,snp138,cosmic78,intervar_20170202,popfreq_all_20150413,clinvar_20190305 -operation g,r,r,f,f,f,f,f,f -nastring . -vcfinput -thread $nt |
|
|
|
|
|
|
|
|
/installations/annovar/table_annovar.pl ${sample_id}.INPUT.vcf ${annovar_database} -buildver ${hg} -out ${basename} -remove -protocol refGene,cytoBand,genomicSuperDups,ljb26_all,snp138,cosmic78,intervar_20170202,popfreq_all_20150413,clinvar_20190305 -operation g,r,r,f,f,f,f,f,f -nastring . -vcfinput -thread $nt |
|
|
fi |
|
|
fi |
|
|
>>> |
|
|
>>> |
|
|
|
|
|
|