Hi Wilber0x,
To make a long story short (please correct me if I am wrong) you have:
1) a vcf file from hybrids
2) a list of SNPs from an organism A ( what kind of format?)
You can annotate your vcf file using tools like:
http://snpeff.sourceforge.net/SnpSift.html#annotate
java -jar SnpSift.jar annotate dbSnp132.vcf variants.vcf > variants_annotated.vcf
there is no need to use a file in vcf format for annotation (dbSnp132.vcf in the example)
Just replace this with a text file having at least those info below
chr1 3000020 rs1133275841 T A
chr1 3000023 rs1133585662 C A
chr1 3000126 rs580370473 G T
chr1 3000185 rs585444580 G T
chr1 3000234 rs579469519 G A
chr1 3000258 rs582985490 G T
chr1 3000259 rs586234354 T G
chr1 3000280 rs580430667 C T
chr1 3000281 rs584188706 A G
chr1 3000287 rs587313017 A G
chr1 3000315 rs581375106 T G
chr1 3000321 rs583231582 G T
The ID field in your vcf file will get the rs code if the SNP is present
The other option is to intersect the coordinates of vcf with those of the list.
However, I don t recommend this, since maybe you have to slightly modify the files
Good luck
Thank you. SNPs from organism A are also in a vcf file.
that s fine, you can use it as it is