-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodern.clj
39 lines (27 loc) · 854 Bytes
/
modern.clj
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
(ns modern
(:require
[clojure.pprint :refer [pprint]]
[clojuratica.core :as wl]
[clojure.repl :as repl]
[clojuratica.tools.graphics :as graphics]
[clojuratica.base.parse :as parse :refer [custom-parse]]
[clojuratica.lib.helpers :as h]))
;; Eval as data (note the the single quote)
(wl/eval '(Map (Function [x] (+ x 1)) [1 2 3]))
;; Load All WL Symbols
(wl/load-all-symbols (.name *ns*))
(Dot [1 2 3] [4 5 6])
(repl/doc GeoBackground)
(repl/find-doc "molecule")
(pprint (repl/apropos #"(?i)geo"))
(h/help! 'Axes)
(h/help! '(Take
(Sort
(Map
(Function [gene]
[(GenomeData gene "SequenceLength") gene])
(GenomeData)))
n)
:return-links true)
(Information 'GenomeData)
(wl/wl '((WolframLanguageData "GenomeData") "Association"))