Skip to content

Commit

Permalink
remove special character in cleanvcf1_23 (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
epiercehoffman authored Sep 28, 2021
1 parent cd90dc4 commit 1eede50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wdl/CleanVcf1.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ task CleanVcf1_23 {
command <<<
set -euxo pipefail
cat <(zcat ~{cleanmale_vcf}|egrep "##") \
<(paste <(zcat ~{cleanmale_vcf}|egrep -v "##") <(zcat ~{cleanfemale_vcf}|cut -f10-|egrep -v "##") <(zcat ~{cleanother_vcf}|cut -f10-|egrep -v "##") ) \å
<(paste <(zcat ~{cleanmale_vcf}|egrep -v "##") <(zcat ~{cleanfemale_vcf}|cut -f10-|egrep -v "##") <(zcat ~{cleanother_vcf}|cut -f10-|egrep -v "##") ) \
|bgzip \
>combinedsex.vcf.gz
tabix -p vcf combinedsex.vcf.gz
Expand Down

0 comments on commit 1eede50

Please sign in to comment.