Yfitter is a program for assigning Y chromosome haplogroups to individuals sequenced at low coverage. It is designed to be used in a samtools/bcftools pipeline. Yfitter also supports haplogrouping using chip genotype data.
Categories
Bio-InformaticsLicense
GNU General Public License version 3.0 (GPLv3)Follow YFitter
Other Useful Business Software
Our Free Plans just got better! | Auth0
You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
Rate This Project
Login To Rate This Project
User Reviews
-
Nice tool! However it is a bit tricky to make it work. This is how I managed to do with advice from the developer of the tool. First, extract the Y chromosome from the input bam (we don't need the other chromosomes). Use a recent version of samtools, like 1.2: samtools view -hb input_bam Y > chrY.bam Then, make a bcf file. You need an older version of samtools [version 0.1.19]: samtools mpileup -gf path_to/human_genome.fasta chrY.bam > chrY.bcf Then, again with version 0.1.19, get the genotype likelihoods for the interesting sites (karafet): bcftools view -Q -l karafet_sites_b37.pos chrY.bcf > chrY.qcall Finally, run Yfitter: Yfitter -m karafet_tree_b37.xml chrY.qcall > results.YFit