Data Catalog
View

Schema Reference

The map of which schema holds which domain in CLINICOGENOMICS — staging views, foundation tables, partner cohorts, variant calls, dashboard marts, LLM-extracted events, and reference seeds.

Schema map

SchemaObjectsHolds
LIMS_PUB~38Foundation tables: wide clinical bases and casefile entry points.
LIMS_PUB_STAGING~52Deduplicated staging views over the LIMS data share.
LIMS_COHORTS~37Partner and internal cohort tables (Vertex, Alnylam, etc.).
VARIANTS~25Variant call tables, VEP-annotated variants, genetic ethnicities.
CLINICAL_LLM~34LLM-extracted clinical event tables plus the raw extraction source.
DASHBOARD~8BI dashboard marts (Vertex / Forian DRV, provider analysis, COMPASS).
LIMS_OPERATIONAL~21Outreach sync-status, DocuSign, cohort history, provider-project tables.
SEEDS~12dbt seed lookup / reference tables.
RNASEQ~8RNA-seq Salmon gene/transcript expression facts plus run/QC dims. See Gene Expression (RNA-seq).
ADSClinical abstraction (Abstracted Data Store) aggregations; staged in ADS_STAGING.
IMAGINGImaging data; staged in IMAGING_STAGING.
ONCOLOGY_ONTOLOGY~26Oncology ontology / ontology-engine tables (ONT_*, ACT_*).
APP_COHORTSApplication-facing cohort tables.
STREAMLITStreamlit app objects.
NOTEBOOKSSnowflake notebooks (also SHARED_NOTEBOOKS).
OMICS0Reserved (empty today; RNA-seq lives in RNASEQ).

LIMS_PUB: foundation

Foundation tables are clustered on casefile_id with a 24-hour target lag. Object names are the Snowflake names; the matching dbt model is given alongside.

Objectdbt modelDescription
CASEFILE_FILTEREDint_casefile_filteredBase casefile with status filters, exclusions, CDC dedup. Primary entry point for all downstream models.
BASE_RENASIGHTbase_renasightRenasight (Organ Health) product base. Primary OH analytics source.
BASE_SIGNATERAbase_signateraSignatera (Oncology) MRD / ctDNA product base (~2.8M rows).
BASE_ALTERAbase_alteraAltera (Oncology) tissue CGP product base (~49.6K rows).
BASE_LATITUDEbase_latitudeLatitude (Oncology) methylation MRD product base (~4.1K rows).
SF_PROVIDER_AGGint_sf_provider_aggSalesforce provider aggregation.

Each oncology base has a patient-grain _PATIENT companion. Oncology identity is CASEBUNDLING_ID, not casefile_id. For per-product detail (grain, key columns, ctDNA vs tissue vs methylation), see Oncology Products.

LIMS_COHORTS: partner cohorts

37 objects in PROD, uppercase, no mart_ prefix. Partner examples: OH_VERTEX_SPONSORED, OH_ALNYLAM_AGXT, OH_ASTRAZENECA_APOL1, OH_NOVARTIS_C3G, ONC_BLADDER. Run SHOW TABLES IN SCHEMA CLINICOGENOMICS.LIMS_COHORTS for the current full list.

VARIANTS

24 objects: raw variant call tables, annotated variants, ethnicity tables, lookup views, and a processing tracker. The four raw SAMPLE_VARIANT_CALLS_* tables have Search Optimization enabled — see Genomics (VARIANTS) Queries. Note: ONC primary identity is CASEBUNDLING_ID, not CASEFILE_ID.

Key join columns

ColumnTypeDescription
casefile_idINTPrimary join key across clinical models.
patient_idINTPatient identifier.
sample_barcodeVARCHARSample tracking identifier.
provider_idINTProvider identifier.
npiVARCHAR(10)National Provider Identifier.
sql
-- Live object list for any schemaSELECT TABLE_NAME, TABLE_TYPEFROM CLINICOGENOMICS.INFORMATION_SCHEMA.TABLESWHERE TABLE_SCHEMA = 'LIMS_PUB';

Exploring with Horizon Catalog

Horizon Catalog is Snowflake’s built-in data catalog and object explorer in Snowsight. Use it to browse databases → schemas → tables and inspect column-level metadata, tags, and lineage without writing SQL — the fastest way to discover what a schema actually contains.

To open it, sign in to Snowsight and use the Catalog / database object explorer to drill into CLINICOGENOMICS, pick a schema, and select a table to see its columns, data types, tags, and lineage.

Reach for Horizon for interactive browsing and column / tag / lineage discovery. Reach for INFORMATION_SCHEMA (e.g. CLINICOGENOMICS.INFORMATION_SCHEMA.COLUMNS / .TABLES) when you need a programmatic, scriptable listing.

sql
-- Column lookup for a specific tableSELECT COLUMN_NAME, DATA_TYPEFROM CLINICOGENOMICS.INFORMATION_SCHEMA.COLUMNSWHERE TABLE_SCHEMA = 'LIMS_PUB'  AND TABLE_NAME = 'BASE_SIGNATERA'ORDER BY ORDINAL_POSITION;