# ProbeSet Metadata ## 'probeset' ## Generated Triples: The following SQL query was executed: ```sql SELECT IF(NULLIF(TRIM(ProbeSet.Name), '') IS NULL, '', TRIM(ProbeSet.Name)) AS ProbeSetIdName, ProbeSet.Id, ProbeSet.Name, ProbeSet.alias, IFNULL(GeneChip.Name, '') AS GeneChipName, NULLIF(TRIM(ProbeSet.TargetId), '') AS TargetId, ProbeSet.Symbol, ProbeSet.description, NULLIF(TRIM(ProbeSet.Probe_set_target_region), '') AS Probe_set_target_region, ProbeSet.Chr, IFNULL(ProbeSet.Mb, '') AS Mb, ProbeSet.Mb, ProbeSet.Chr, ProbeSet.Strand_Probe, ProbeSet.GeneId, ProbeSet.OMIM, ProbeSet.HomoloGeneID, ProbeSet.UniProtID, ProbeSet.Symbol, ProbeSet.Symbol, ProbeSet.Symbol, ProbeSet.Symbol, ProbeSet.Symbol, Species.Name, ProbeSet.RefSeq_TranscriptId, GeneList_rn33.kgId, (GeneList.txStart * 1000000) AS TranscriptStartMm10, (GeneList_rn33.txStart * 1000000) AS TranscriptStartRn7, GeneList.Chromosome, GeneList_rn33.Chromosome, (GeneList.txEnd * 1000000) AS TranscriptEndMm10, (GeneList_rn33.txEnd * 1000000) AS TranscriptEndRn7, ProbeSet.Symbol, ProbeSet.GeneId, Species.FullName, ProbeSet.Symbol, ProbeSet.GeneId, Species.name, ProbeSet.GeneId, ProbeSet.GeneId, Species.Name, ProbeSet.Strand_Probe, IFNULL(ProbeSet.Probe_set_specificity, '') AS Probe_set_specificity, IFNULL(ProbeSet.Probe_set_BLAT_score, '') AS Probe_set_BLAT_score, IFNULL(ProbeSet.Probe_set_Blat_Mb_start, '') AS Probe_set_Blat_Mb_start, IFNULL(ProbeSet.Probe_set_Blat_Mb_end, '') AS Probe_set_Blat_Mb_end, ProbeSet.BlatSeq, ProbeSet.TargetSeq FROM ProbeSet LEFT JOIN GeneChip ON GeneChip.Id = ProbeSet.ChipId LEFT JOIN GeneList ON GeneList.GeneID = ProbeSet.GeneId LEFT JOIN GeneList_rn33 ON GeneList.geneSymbol = ProbeSet.Symbol LEFT JOIN Species ON GeneChip.SpeciesId = Species.Id ``` The above query results to triples that have the form: ```text gn:probesetProbesetidname -> rdf:type -> gnc:Probeset gn:probesetProbesetidname -> rdfs:label -> ProbeSet(Name) gn:probesetProbesetidname -> skos:altLabel -> ProbeSet(alias) gn:probesetProbesetidname -> gnt:hasChip -> gn:platformGenechipname gn:probesetProbesetidname -> gnt:hasTargetId -> TargetId gn:probesetProbesetidname -> gnt:symbol -> ProbeSet(Symbol) gn:probesetProbesetidname -> dct:description -> ProbeSetdescription gn:probesetProbesetidname -> gnt:targetsRegion -> Probe_set_target_region gn:probesetProbesetidname -> gnt:chr -> ProbeSet(Chr) gn:probesetProbesetidname -> gnt:mb -> "Mb"^^xsd:double gn:probesetProbesetidname -> gnt:location -> Chr ProbeSet(Chr) @ ProbeSet(Mb) gn:probesetProbesetidname -> dct:references -> . a gnc:NCBIGeneLink gn:probesetProbesetidname -> dct:references -> . a gnc:omimLink gn:probesetProbesetidname -> dct:references -> . a gnc:homologeneLink gn:probesetProbesetidname -> dct:references -> . a gnc:uniprotLink gn:probesetProbesetidname -> dct:references -> . a gnc:stringLink gn:probesetProbesetidname -> dct:references -> . a gnc:gtexLink gn:probesetProbesetidname -> dct:references -> . a gnc:ebiGwasLink gn:probesetProbesetidname -> dct:references -> . a gnc:proteinAtlasLink gn:probesetProbesetidname -> dct:references -> gn:probesetProbesetidname -> dct:references -> . a gnc:PantherLink gn:probesetProbesetidname -> dct:references -> gn:probesetProbesetidname -> dct:references -> gn:probesetProbesetidname -> dct:references -> . a gnc:gemmaLink gn:probesetProbesetidname -> dct:references -> gn:probesetProbesetidname -> gnt:strandProbe -> ProbeSet(Strand_Probe) gn:probesetProbesetidname -> gnt:hasSpecificity -> Probe_set_specificity gn:probesetProbesetidname -> gnt:hasBlatScore -> Probe_set_BLAT_score gn:probesetProbesetidname -> gnt:hasBlatMbStart -> "Probe_set_Blat_Mb_start"^^xsd:double gn:probesetProbesetidname -> gnt:hasBlatMbEnd -> "Probe_set_Blat_Mb_end"^^xsd:double gn:probesetProbesetidname -> gnt:hasBlatSeq -> ProbeSetBlatSeq gn:probesetProbesetidname -> gnt:hasTargetSeq -> ProbeSetTargetSeq ``` Here's an example query: ```sparql PREFIX gn: PREFIX probeset: PREFIX gnc: PREFIX gnt: PREFIX rdf: PREFIX rdfs: PREFIX dct: PREFIX owl: PREFIX xsd: PREFIX qb: PREFIX sdmx-measure: PREFIX skos: SELECT * WHERE { ?s rdf:type gnc:Probeset . ?s rdfs:label "100322_at" . ?s skos:altLabel "IGHG2A; AU044919; MGC102604; MGC102659; Ighg" . ?s gnt:hasChip gn:platformMg_u74av2 . ?s ?p ?o . } ``` Expected Result: ```rdf gn:probeset100322_at rdf:type gnc:Probeset . gn:probeset100322_at rdfs:label "100322_at" . gn:probeset100322_at skos:altLabel "IGHG2A; AU044919; MGC102604; MGC102659; Ighg" . gn:probeset100322_at gnt:hasChip gn:platformMg_u74av2 . gn:probeset100322_at gnt:symbol "Ighg" . gn:probeset100322_at dct:description "immunoglobulin heavy chain gamma polypeptide" . gn:probeset100322_at gnt:chr "12" . gn:probeset100322_at gnt:mb "114.322406"^^xsd:double . gn:probeset100322_at gnt:location "Chr 12 @ 114.322406 on the minus strand" . gn:probeset100322_at dct:references . a gnc:NCBIGeneLink . gn:probeset100322_at dct:references . a gnc:stringLink . gn:probeset100322_at dct:references . a gnc:gtexLink . gn:probeset100322_at dct:references . a gnc:ebiGwasLink . gn:probeset100322_at dct:references . a gnc:proteinAtlasLink . gn:probeset100322_at dct:references . a gnc:PantherLink . gn:probeset100322_at dct:references . a gnc:genemaniaLink . gn:probeset100322_at dct:references . Ighg . gn:probeset100322_at dct:references . a gnc:gemmaLink . gn:probeset100322_at gnt:strandProbe "-" . gn:probeset100322_at gnt:hasSpecificity "3.1" . gn:probeset100322_at gnt:hasBlatScore "62" . gn:probeset100322_at gnt:hasBlatMbStart "114.322406"^^xsd:double . gn:probeset100322_at gnt:hasBlatMbEnd "114.322571"^^xsd:double . gn:probeset100322_at gnt:hasBlatSeq "TGGTCACAGCTTTCCGCTCACGTTCACTGAAACGGGCTGATGCTGCACCAACTGTATCTTCCCACCATCCAGTAAGCTTGGGCCCGGTGGTTACTGGAACTGGATCCGGAAATTCCCAGGGAATATTACCTGCAGTTGAATTCTGTGACTACT" . gn:probeset100322_at gnt:hasTargetSeq "tggtcacagctttccgctcacgttcggtgctgggaccaagctggaactgaaacgggctgatgctgcaccaactgtatccatcttcccaccatccagtaagcttgggcccggtgggggcnnnnngnnnngnnnnnnntnnnnnnngnnngncnnnnngnnnnncnnntcngaggtgcagcttcaggagtcaggacctngcctngnnaaaccttctcagactctgtccctcacctgttctgtcactggcnactccatcaccagtgnttactggaactggatccggaaattcccagggaataaacttgantacatgggntacataanctacagtggtnncacttactacaatccatctctcaaaagtcgaatctccatnactnnagacacatccaagaaccantattacctgcagttgaattctgtgactact" . ```