aboutsummaryrefslogtreecommitdiff
path: root/examples/dump-probeset.scm
blob: 4d5f9a5efbdbaa785fc2ccf440d9375379fb0e19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#! /usr/bin/env guile
!#

(use-modules (srfi srfi-1)
             (srfi srfi-26)
             (ice-9 match)
             (ice-9 regex)
             (dump strings)
             (dump sql)
             (dump triples)
             (dump special-forms))



(define %connection-settings
  (call-with-input-file (list-ref (command-line) 1)
    read))


(define-dump dump-probeset
  (tables (ProbeSet
           (left-join GeneChip "ON GeneChip.Id = ProbeSet.ChipId")))
  (schema-triples
   (gnt:name rdfs:range rdfs:Literal)
   (gnt:probeset rdfs:range rdfs:Literal))
  (triples (ontology
            'probeset:
            (string-trim-both
             (regexp-substitute/global
              #f "[^A-Za-z0-9:]"
              (field ("IFNULL(NULLIF(TRIM(ProbeSet.Name), ''), ProbeSet.Id)"
                      name))
              'pre "_" 'post)))
    (set rdf:type 'gn-id:probeset)
    (set gnt:chipOf (string->identifier "platform" (field GeneChip Name)))
    (set gnt:name (field ProbeSet Name))
    (set gnt:symbol (delete-substrings (field ProbeSet Symbol) "\""))
    (set gnt:description (sanitize-rdf-string
                              (field ProbeSet description)))
    (set gnt:chr (field ProbeSet Chr))
    (set gnt:mb (annotate-field (field ("IFNULL(ProbeSet.Mb, '')" Mb)) '^^xsd:double))
    (set gnt:blatSeq (sanitize-rdf-string
                          (string-trim-both (field ProbeSet BlatSeq))))
    (set gnt:targetSeq (sanitize-rdf-string (field ProbeSet TargetSeq)))
    (set gnt:uniProtReference (ontology 'uniprot:
                                            (field ProbeSet UniProtID)))))




(dump-with-documentation
 (name "ProbeSet Metadata")
 (connection %connection-settings)
 (table-metadata? #f)
 (prefixes
  '(("probeset:" "<http://genenetwork.org/probeset/>")
    ("rdf:" "<http://www.w3.org/1999/02/22-rdf-syntax-ns#>")
    ("rdfs:" "<http://www.w3.org/2000/01/rdf-r")
    ("uniprot:" "<http://purl.uniprot.org/uniprot/>")))
 (inputs
  (list dump-probeset))
 (outputs
  '(#:documentation "./docs/dump-probeset.md"
    #:rdf "./verified-data/dump-probeset.ttl")))