This is a test version of Biostars. For the public version, visit https://www.biostars.org.
neanderthals VCF file

Hi all,

I need VCF file for neanderthals, I already found Bam files for them in UCSC, but i need VCF file to have their SNP variation. i also found denisovian VCF file,but I want VCF file for neanderthals. can anybody help me?

thanks a lot

snp snp

1 answer

Having the BAM file, you can generate a VCF file with samtools

samtools mpileup -v -u -f genome.fa your.bam > variants.vcf

The genoma.fa file is the fasta file used as reference for the mapping to generate the BAM file

Log in to answer this question.