Switch to unified view

a b/inst/queries/geneTranscripts.xq
1
; geneTranscripts
2
(fn [dataset gene]
3
    (xena-query {:select ["name" "position (2)" "position" "exonCount" "exonStarts" "exonEnds"]
4
                 :from [dataset]
5
                 :where [:in :any "name2" [gene]]}))
6
7