Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Eugenie Lohmann
ECMvPlastic_visualisation_app
Commits
8b7fac99
Commit
8b7fac99
authored
2 years ago
by
Eugenie Lohmann
🎨
Browse files
Options
Download
Email Patches
Plain Diff
update
parent
94213db7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
3 deletions
+23
-3
app.R
app.R
+23
-3
No files found.
app.R
View file @
8b7fac99
...
...
@@ -105,9 +105,9 @@ ui <- fluidPage(
)
)
)
),
)
),
tabItem
(
tabName
=
"genelist"
,
h1
(
"Precisions"
),
br
(),
fluidRow
(
box
(
width
=
6
,
status
=
"primary"
,
solidHeader
=
TRUE
,
collapsible
=
FALSE
,
title
=
"Metastatic"
,
h2
(
"Gene lists"
),
...
...
@@ -142,7 +142,14 @@ ui <- fluidPage(
reactableOutput
(
'P_GSEA_S1'
),
br
(),
h4
(
"Mouse 2"
),
reactableOutput
(
'P_GSEA_S2'
))))
)
),
fluidRow
(
box
(
width
=
12
,
status
=
"success"
,
solidHeader
=
TRUE
,
collapsible
=
FALSE
,
title
=
"Common to cell lines"
,
htmlOutput
(
"IntersectionList"
,
inline
=
TRUE
)
))
...
...
@@ -361,6 +368,19 @@ server <- function(input, output) {
})
output
$
IntersectionList
<-
renderUI
({
validate
(
need
(
length
(
comp_P
()[[
1
]])
!=
0
&
length
(
comp_M
()[[
1
]])
!=
0
,
"No common genes"
),
)
markdown
(
paste
(
"* **In common genes**:"
,
capture.output
(
pander
::
pander
(
intersect
(
Genes_graphique_P
(),
Genes_graphique_M
())
)),
collapse
=
"\n "
))
})
output
$
myownlist
<-
renderUI
({
checkboxInput
(
"myownlist"
,
"Filtre manuel"
,
value
=
FALSE
)
})
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment