zeeev / wham

Structural variant detection and association testing
Other
101 stars 25 forks source link

Debugging VCF output: FORMAT, REF alleles and mergeIndvs #15

Closed chapmanb closed 9 years ago

chapmanb commented 9 years ago

Zev; Thanks so much for the VCF output work. I'm testing this right now and ran into a couple of small problems included in this patch. I also ran into a couple of larger issues I wasn't sure how to tackle:

Thanks again.

zeeev commented 9 years ago

Brad,

Thanks!

  1. I will add a REF allele (today).
  2. I realize this is a problem. I need to figure out a way to merge VCFs containing differing numbers of individuals. Here is how I have been getting around that:

-A. Run wham with -k -B. cat *vcf | grep -v "#" | sort -k1,1 -k1,1n >> merged.invalid.vcf -C. run mergeIndvs -f merged.invalid.vcf > merged.invalid.joined.vcf -D. Run wham with -b merged.invalid.joined.vcf. This will genotype the SVs.