Skip to content

Instantly share code, notes, and snippets.

View DanielEWeeks's full-sized avatar

Daniel E. Weeks DanielEWeeks

View GitHub Profile
@elowy01
elowy01 / BCFtools cheat sheet
Last active May 13, 2024 15:47
BCFtools cheat sheet
*bcftools filter
*Filter variants per region (in this example, print out only variants mapped to chr1 and chr2)
qbcftools filter -r1,2 ALL.chip.omni_broad_sanger_combined.20140818.snps.genotypes.hg38.vcf.gz
*printing out info for only 2 samples:
bcftools view -s NA20818,NA20819 filename.vcf.gz
*printing stats only for variants passing the filter:
bcftools view -f PASS filename.vcf.gz