-
Notifications
You must be signed in to change notification settings - Fork 1
/
bottomInfo.R
41 lines (40 loc) · 2.16 KB
/
bottomInfo.R
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
bottomInfo = function(){
wellPanel(
h3('NeuroExpresso data and marker genes'),
p('The data in NeuroExpresso compiled as part of a project aiming to select marker genes for mouse brain cell types
and calculate marker gene profiles.'),
p('The data in neuroexpresso and marker genes identified in the study can be accessed ',
a(href = 'http://pavlab.msl.ubc.ca/supplement-to-mancarci-et-al-neuroexpresso/',
target="_blank",'here.')),
p('R package for calculation of marker gene profiles can be found ',
a(href='https://github.com/oganm/markerGeneProfile',
target = '_blank','here.')),
h3('How to cite'),
p('If using NeuroExpresso or the data provided, please cite:'),
a(href = 'http://www.eneuro.org/content/4/6/ENEURO.0212-17.2017',
target="_blank",
'B. Ogan Mancarci et al., “Cross-Laboratory Analysis of Brain Cell Type Transcriptomes with Applications to Interpretation of Bulk Tissue Data,” ENeuro, November 20, 2017, ENEURO.0212-17.2017, https://doi.org/10.1523/ENEURO.0212-17.2017.'),
h3('Contact'),
p('If you have questions or problems, mail',
a(href="mailto:ogan.mancarci@msl.ubc.ca",
target= '_blank', 'Ogan Mancarci'),
". Please mention NeuroExpresso by name to ensure avoiding spam detectors"),
p('To report bugs, open an issue on the',a(href="https://github.com/oganm/neuroexpresso/issues",target= '_blank', 'github repo'))
)
}
acknowledge = function(){
wellPanel(
p('Developed and maintained by',
a(href="https://github.com/oganm/", 'Ogan Mancarci',target= '_blank'), 'at',
a(href="https://pavlab.msl.ubc.ca/", 'Pavlidis Lab',target= '_blank')
),
br(),
p('Supported by'),
a(href = 'http://neurodevnet.ca/',target= '_blank',
img(src = 'NeuroDevNet.png',height = '100')),
a(href= 'http://www.nih.gov/',target= '_blank',
img(src='NIH.png', height = '100')),
a(href = 'http://www.cihr-irsc.gc.ca/e/193.html',target= '_blank',
img(src = 'cihr.png', height = '100'))
)
}