Page History
...
When one queries by dbSNP rs identifier, an example SQL query looks like:
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
select count(distinct patient_num) |
...
from observation_fact |
...
where contains(observation_blob, 'FAM148 AND (stop_loss OR missense)') |
When one queries by gene name, an example SQL query looks like:
...
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
select count(distinct patient_num) |
...
from observation_fact |
...
where contains(observation_blob, 'rs183605470 AND heterozygous') |