aboutsummaryrefslogtreecommitdiff
path: root/scripts/precompute/list-traits-to-compute.scm
blob: 0bcef3e73e9dd152527cbf131b03249e2a1bdcad (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/usr/bin/env guile \
-e main -s

Step p1 lists traits that need to be computed.

This is a script that fetches trait IDs from the GN database
directly. The direct database calls are used right now and ought to be
turned into a REST API.

Run from base dir with

    . .guix-shell -- guile -L . -s ./scripts/precompute/list-traits-to-compute.scm

You may want to forward a mysql port if there is no DB locally

    ssh -L 3306:127.0.0.1:3306 -f -N tux02.genenetwork.org

test connection with mysql client:

    mysql -uwebqtlout -pwebqtlout -A -h 127.0.0.1 -P 3306 db_webqtl -e "show tables;"

to create a clean slate, for now, update Locus_old with

    update ProbeSetXRef set Locus_old=NULL;

you should see

    MariaDB [db_webqtl]> select count(Locus_old) from ProbeSetXRef where Locus_old != NULL limit 5;
    +------------------+
    | count(Locus_old) |
    +------------------+
    |                0 |
    +------------------+

Now list the next 1000 trait IDs:

    . .guix-shell -- guile -L . -s ./scripts/precompute/list-traits-to-compute.scm --first 0 --next 1000

The current logic is to list all datasets that contain a
BXD. (bxd-strain-id-names #:used-for-mapping? #t) fetches all ids and
strain names listed in GN. Note that this differs from the actual
genotype file.

To find the StrainId in a dataset:

MariaDB [db_webqtl]> SELECT StrainId,value from ProbeSetData WHERE Id=115467;
+----------+---------+
| StrainId | value   |
+----------+---------+
|        1 | 9.47169 |
|        2 | 9.21621 |
|        3 |   9.728 |
|        4 | 9.28976 |
|        5 | 9.55523 |
|        6 | 9.63562 ...

to speed things up a little we batch them up and check whether the BXD is part of it.
When that is the case we might as well write the phenotype file because we have the trait values.

!#

(use-modules (dbi dbi)
             (gn db mysql)
             (gn data dataset)
             (gn data hits)
             (gn data strains)
             (gn util convert)
             (gn runner gemma)
             ; (rnrs base)
             (ice-9 getopt-long)
             (ice-9 match)
             (srfi srfi-1)
             )


(define (write-phenotypes first-id count)
  (call-with-db
   (lambda (db)
   (begin
     (let [(bxd-strains (memo-bxd-strain-id-names #:used-for-mapping? #t))]
       (define (run-list-traits-to-compute db prev-id count)
         (let* [(hits (get-precompute-hits db prev-id count))
                (data-ids (map (lambda (hit)
                                 (let* [(data-id (assoc-ref hit "DataId"))
                                        ; (data-id-str (int-to-string data-id))
                                        ]
                                   data-id))
                               hits))
                (data-str-ids (map (lambda (id) (string-append "Id=" (int-to-string id))) data-ids))
                (data-ids-query (string-join data-str-ids " OR "))
                (query (string-append "SELECT Id,StrainId,value FROM ProbeSetData WHERE " data-ids-query))
                ]
           ;; (display query)
           (dbi-query db query)
           (let [(id-traits (get-rows db '()))
                 (nrecs '())]
             (for-each (lambda (r)
                    (let* [(data-id (assoc-ref r "Id"))
                          (strain-id (assoc-ref r "StrainId"))
                          (value (assoc-ref r "value"))
                          (has-lst (assoc-ref nrecs data-id))
                          (lst (if has-lst
                                   (acons strain-id value has-lst)
                                   '())
                               )]
                      (set! nrecs (assoc-set! nrecs data-id lst))))
                       id-traits)
             (for-each (lambda (r)
                         (if (has-bxd? (cdr r))
                             (begin
                               (display (car r))
                               (newline))
                         )) nrecs)
             ; (display nrecs)
           )))
       (run-list-traits-to-compute db first-id count) ;; start precompute
       ;; (write bxd-strains)
       )))))


(define (main args)
  ;; (write args)
  (let* ((option-spec '( (version (single-char #\v) (value #f))
                         (start-id (single-char #\s) (value #t))
                         (next (single-char #\n) (value #t))
                         (help    (single-char #\h) (value #f))))
         (options (getopt-long args option-spec))
         (start-id (string->number (option-ref options 'start-id "0")))
         (next (string->number (option-ref options 'next "5")))
         (help-wanted (option-ref options 'help #f)))
    (if help-wanted
        (format #t "list-traits-to-compute writes JSON traits files from the GN DB
Usage: list-traits-to-compute [options...]
  -s, --start-id num  Start from ID (default 0)
  -n, --next count    In batches of count size (default 5)
  -h, --help          Display this help
")
        (write-phenotypes start-id next)
)))