You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
selectx.count::decimal/y.countfrom (
selectcount(*) from biosample5
where not (geo_coord_extracted is nulland geo_text_extracted is null)
) x
join (
selectcount(*) from biosample5
) y on1=1
potential Serratus coverage after geocoding: 41.71%
-- # serratus sra with potential geospatial data: 2410955selectcount(*) from (
select bio_sample from srarun
intersect
select biosample_id from biosample5
where not (geo_coord_extracted is nulland geo_text_extracted is null)
) as q
inner join srarun
on (q.bio_sample=srarun.bio_sample)
-- # serratus sra: 5780798selectcount(*) from ( select run from srarun group by run ) as q
biosamples to be geocoded: 2,490,233
selectcount(*) from biosample5
where geo_coord_extracted is nulland geo_text_extracted is not null
size of text domain to be geocoded: 49,578
selectcount(distinct geo_text_extracted) from biosample2