Hi
Does anyone know why I might be getting different SNP counts from dbSNP depending on whether i used Entrez or the eutils. I was just looking how many snps there are in cattle and you get about 100,000 in total using Entrez. I looked using the code below using eutils and got about 200,000
my $utils = "http://www.ncbi.nlm.nih.gov/entrez/eutils";
my $esearch = "$utils/esearch.fcgi?" .
"db=$db&retmax=1&usehistory=y&term=";
my $db = 'snp';
my$query = 'bos+taurus[ORG]';
my $esearch_result = get($esearch . $query);
Many thanks
Small correction; search term qualifier should be [ORGN], not [ORG].