-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgenenetwork.conf.rkt
More file actions
56 lines (42 loc) · 2.8 KB
/
genenetwork.conf.rkt
File metadata and controls
56 lines (42 loc) · 2.8 KB
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
;;;; Genenetwork2 configuration file
(redis-conf . '((host . "127.0.0.1")
(port . 6379)
(username . #f)
(password . #f)))
;; Prefix to the redis columns
(feed-prefix . "gn2-")
(feed-client-url . "http://covid19.genenetwork.org")
(tweets-per-user . 2)
;; The log file
(log-file . "gn2-voting-server.log")
;; The port to run the voting.html page from
(server-port . 8023)
;; Use any twitter's advanced search options here
(twitter-search-terms . "(genenetwork OR genenetwork2 OR rat OR mouse OR pangenome OR browser OR workflows OR bioinformatic OR GeneNetwork OR conference OR sequences OR genotype OR phenotype OR guix OR RDF OR SPARQL OR genome OR biology OR Genomics OR OPAR OR genetics OR research OR ontologies OR variation)")
(pubmed-search-terms . "(genenetwork[Title/Abstract] OR genenetwork2[Title/Abstract] OR rat[Title/Abstract] OR mouse[Title/Abstract] OR pangenome[Title/Abstract] OR genome browser[Title/Abstract] NOT (keyboard OR interactive))")
(arxiv-search-terms . '((AND genenetwork title)
(OR genenetwork2 abstract)
(OR genome-browser abstract)
(OR pangenome abstract)
(OR mouse title)
(NOT cursor title)
(NOT cursor abstract)
(NOT interactive title)
(NOT interactive abstract)
(NOT pointer title)
(NOT pointer abstract)
(NOT Computer+Mouse title)
(NOT Computer+Mouse abstract)
(NOT Mouse-tracking+data abstract)
(NOT keyboard title)
(NOT keyboard abstract)
(NOT interactive title)
(NOT interactive abstract)))
(min-retweets . 4)
;; Have a list of users from which you can fetch tweets from
(twitter-users . "wolfgangkhuber,Y_Gliad,MarkGerstein,mstephens999,PaulFlicek,SagivShifman,Jericho,danjgaffney,bartdeplancke,robbie_stats,ClarissaCParker,DavidAshbrook,StatGenDan,GSCollins,MikeBradburn2,tobiaskurth,yudapearl,phuenermund,pjotrprins,GeneNetwork2,commonwl,simonheumos,gedankenstuecke,DCGenomics,pvanheus,miles_benton,wait_sasha,ewanbirney,BenedictPaten,sjackman,webyrd,BioMickWatson,drtkeane,GA4GH,KaczorowskiLab,AMelquiond,justsaysinmice,OPARProject,erikgarrisonDannyArends,JamesEKrause,Eric_Fauman,jlane_boston,arcova,FrontGenetics,AngelicaLeeOli1,bonfacekilz,fermatslibrary,arxiv,francois_sabot,metegenomez,MColebrook,GenoLabgem,pangenomepapers,firefoxx66")
;; All the repos you want to fetch commits from
(repos . '(("genenetwork" . "genenetwork2")))
;; In the update-feed script example, sleep for 'X' amount of hours
;; after which resume updating
(refresh-time/hrs . 24)