You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- for i in *vcf; do cat $i | grep -v '#' | sort -k1,1 -k2,2n | cut -f1-10 | grep -v '0/0' | grep -v '\./\.' | cat header - > $i.sorted.vcf; done
|