Hello,<br>
i'm conncecting to the public mysql database via mysql workbench with <br>
the following login informations:<br>
<br>
server: <a href="http://ensembldb.ensembl.org">ensembldb.ensembl.org</a><br>
port: 3306<br>
user: anonymous<br>
<br>
I was trying to fetch the allel frequencys for a SNP but could not get <br>
all informations I need. So further investigations shows that some data <br>
are missing.<br>
<br>
I looked up the population table to find the id for 1000Genomes:<br>
<br>
SELECT * FROM homo_sapiens_variation_81_38.population WHERE name LIKE <br>
"%1000GENOMES%";<br>
<br>
This give me for example the id 373417 for "1000GENOMES:phase_3:CEU".<br>
<br>
With the id I went to the allele table:<br>
<br>
SELECT * FROM homo_sapiens_variation_81_38.allele WHERE <br>
population_id=373417;<br>
<br>
This ended up in 0 rows returned.<br>
<br>
<br>
I know I could fetch frequency information via the REST-API. But I would <br>
like to use mysql.<br>
<br>
So, am I doing something wrong?<br>
<br>
fin swimmer<br>