Created
April 27, 2016 14:44
-
-
Save sephraim/9cf3908fd16715d1bdb9916a89e8e1b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## | |
# Remove Duplicates in a VCF | |
# | |
# A duplicate variant is when multiple records have the same | |
# CHROM, POS, REF, and ALT. This script will pick *one* of the | |
# duplicate variants and discard the rest. The record that is | |
# picked is the one that comes first in sorting order. | |
# | |
# Input: | |
# vcf[.gz] or bcf[.gz] | |
# Output: | |
# vcf | |
# | |
# Example usage: | |
# ./remove_duplicates.sh dups.[vcf|bcf][.gz] > nodups.vcf | |
## | |
myvcf="$1" | |
# Print header | |
bcftools view -h -O v "$myvcf" | |
# Sort and remove duplicates per chromosome | |
for i in {1..22} MT X Y | |
do | |
bcftools view -H -r "$i" -O v "$myvcf" | sort -u -k2,2n -k4,4d -k5,5d | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment