Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
shinyscreen
Manage
Activity
Members
Labels
Plan
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Environmental Cheminformatics
shinyscreen
Commits
2021fd8d
Unverified
Commit
2021fd8d
authored
4 years ago
by
Todor Kondic
Browse files
Options
Downloads
Patches
Plain Diff
Bulk commit: some work on tags and the resto of roots functionality
Sorry :)
parent
5778f277
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
R/api.R
+5
-4
5 additions, 4 deletions
R/api.R
R/shiny-ui-base.R
+23
-15
23 additions, 15 deletions
R/shiny-ui-base.R
R/shiny-ui-config.R
+67
-86
67 additions, 86 deletions
R/shiny-ui-config.R
R/shiny-ui-top.R
+15
-11
15 additions, 11 deletions
R/shiny-ui-top.R
with
110 additions
and
116 deletions
R/api.R
+
5
−
4
View file @
2021fd8d
...
@@ -47,10 +47,10 @@ gen_base_ftab <- function(m) {
...
@@ -47,10 +47,10 @@ gen_base_ftab <- function(m) {
##' @export
##' @export
load_compound_input
<-
function
(
m
)
{
load_compound_input
<-
function
(
m
)
{
m
$
input
$
tab
$
known
<-
if
(
shiny
::
isTruthy
(
m
$
conf
$
compounds
$
known
))
file2tab
(
m
$
conf
$
compounds
$
known
)
else
EMPTY_KNOWN
if
(
shiny
::
isTruthy
(
m
$
conf
$
compounds
$
known
))
m
$
input
$
tab
$
known
<-
file2tab
(
m
$
conf
$
compounds
$
known
)
m
$
input
$
tab
$
unknown
<-
if
(
shiny
::
isTruthy
(
m
$
conf
$
compounds
$
unknown
)
)
if
(
shiny
::
isTruthy
(
m
$
conf
$
compounds
$
unknown
))
m
$
input
$
tab
$
unknown
<-
file2tab
(
m
$
conf
$
compounds
$
unknown
)
file2tab
(
m
$
conf
$
compounds
$
unknown
)
else
EMPTY_UNK
m
$
input
$
tab
$
setid
<-
read_setid
(
m
$
conf
$
compounds
$
sets
,
m
$
input
$
tab
$
setid
<-
read_setid
(
m
$
conf
$
compounds
$
sets
,
m
$
input
$
tab
$
known
,
m
$
input
$
tab
$
known
,
m
$
input
$
tab
$
unknown
)
m
$
input
$
tab
$
unknown
)
...
@@ -60,6 +60,7 @@ load_compound_input <- function(m) {
...
@@ -60,6 +60,7 @@ load_compound_input <- function(m) {
load_data_input
<-
function
(
m
)
{
load_data_input
<-
function
(
m
)
{
m
$
input
$
tab
$
mzml
<-
file2tab
(
m
$
conf
$
data
)
m
$
input
$
tab
$
mzml
<-
file2tab
(
m
$
conf
$
data
)
m
m
}
}
##' @export
##' @export
...
...
This diff is collapsed.
Click to expand it.
R/shiny-ui-base.R
+
23
−
15
View file @
2021fd8d
...
@@ -92,13 +92,13 @@ txt_file_input <- function(inputId,input,fileB,label,volumes) {
...
@@ -92,13 +92,13 @@ txt_file_input <- function(inputId,input,fileB,label,volumes) {
rev2list
<-
function
(
rv
)
{
rev2list
<-
function
(
rv
)
{
## Take reactive values structure and convert them to nested
## Take reactive values structure and convert them to nested
## lists.
## lists.
if
(
class
(
rv
)
!=
"reactivevalues"
)
if
(
class
(
rv
)
[[
1
]]
!=
"reactivevalues"
)
rv
else
lapply
(
shiny
::
reactiveValuesToList
(
rv
),
rev2list
)
rv
else
lapply
(
shiny
::
reactiveValuesToList
(
rv
),
rev2list
)
}
}
list2rev
<-
function
(
lst
)
{
list2rev
<-
function
(
lst
)
{
## Take nested named list and create reactive values from it.
## Take nested named list and create reactive values from it.
if
(
class
(
lst
)
!=
"list"
)
if
(
class
(
lst
)
[[
1
]]
!=
"list"
)
lst
else
do.call
(
react_v
,
lapply
(
lst
,
list2rev
))
lst
else
do.call
(
react_v
,
lapply
(
lst
,
list2rev
))
}
}
...
@@ -109,35 +109,43 @@ txt2tags <- function(txt) {
...
@@ -109,35 +109,43 @@ txt2tags <- function(txt) {
}
else
list
()
}
else
list
()
as.list
(
c
(
"unspecified"
,
x
))
as.list
(
c
(
TAG_DEF
,
x
))
}
}
combine_tags
<-
function
(
df_tags
,
txt_tags
)
{
combine_tags
<-
function
(
df_tags
,
txt_tags
)
{
diff
<-
setdiff
(
df_tags
,
txt_tags
)
diff
<-
setdiff
(
df_tags
,
txt_tags
)
for
(
x
in
diff
)
df_tags
[
df_tags
%in%
x
]
<-
"unspecified"
for
(
x
in
diff
)
df_tags
[
df_tags
%in%
x
]
<-
TAG_DEF
df_tags
<-
factor
(
as.character
(
df_tags
))
df_tags
<-
factor
(
as.character
(
df_tags
))
df_tags
<-
factor
(
as.character
(
df_tags
),
levels
=
unique
(
c
(
'unspecified'
,
levels
(
df_tags
),
txt_tags
)))
df_tags
<-
factor
(
as.character
(
df_tags
),
levels
=
unique
(
c
(
TAG_DEF
,
levels
(
df_tags
),
txt_tags
)))
df_tags
df_tags
}
}
add_mzML_files
<-
function
(
df
,
paths
)
{
add_mzML_files
<-
function
(
df
,
paths
)
{
lSet
<-
levels
(
df
$
set
)
lSet
<-
levels
(
df
$
set
)
if
(
length
(
lSet
>
0
)
&&
!
is.na
(
lSet
))
{
if
(
length
(
lSet
>
0
)
&&
!
is.na
(
lSet
))
{
nR
<-
length
(
paths
)
nR
<-
length
(
paths
)
if
(
nR
>
0
)
{
if
(
nR
>
0
)
{
st
<-
nrow
(
df
)
+1
st
<-
nrow
(
df
)
+1
fi
<-
nrow
(
df
)
+
nR
fi
<-
nrow
(
df
)
+
nR
df
[
st
:
fi
,
'tag'
]
<-
levels
(
df
$
tag
)[[
1
]]
df
[
st
:
fi
,
'tag'
]
<-
levels
(
df
$
tag
)[[
1
]]
df
[
st
:
fi
,
'set'
]
<-
levels
(
df
$
set
)[[
1
]]
df
[
st
:
fi
,
'set'
]
<-
levels
(
df
$
set
)[[
1
]]
df
[
st
:
fi
,
'mode'
]
<-
levels
(
df
$
mode
)[[
1
]]
df
[
st
:
fi
,
'mode'
]
<-
levels
(
df
$
mode
)[[
1
]]
df
[
st
:
fi
,
'Files'
]
<-
paths
df
[
st
:
fi
,
'Files'
]
<-
paths
}
}
df
}
else
{
}
else
{
warning
(
"Define sets using the compound set table before trying to add files!"
)
warning
(
"Define sets using the compound set table before trying to add files!"
)
df
}
}
df
}
}
new_rv_state
<-
function
(
project
)
{
p
<-
normalizePath
(
path
=
project
,
winslash
=
'/'
)
x
<-
react_v
(
m
=
list2rev
(
new_state
(
list
(
project
=
p
,
data
=
""
),
GUI
=
T
)))
x
}
mk_roots
<-
function
(
wd
)
local
({
mk_roots
<-
function
(
wd
)
local
({
addons
<-
c
(
"project"
=
normalizePath
(
wd
,
winslash
=
'/'
))
addons
<-
c
(
"project"
=
normalizePath
(
wd
,
winslash
=
'/'
))
def_vol
<-
function
()
{
def_vol
<-
function
()
{
...
...
This diff is collapsed.
Click to expand it.
R/shiny-ui-config.R
+
67
−
86
View file @
2021fd8d
...
@@ -118,51 +118,18 @@ mk_ui_config <- function() {
...
@@ -118,51 +118,18 @@ mk_ui_config <- function() {
side
=
confSideItem
))
side
=
confSideItem
))
}
}
react_conf_v
<-
function
(
input
,
output
,
session
,
rv
,
rf
)
{
rv
$
conf
<-
react_v
(
data
=
CONF
$
data
,
project
=
CONF
$
project
,
compounds
=
react_v
(
known
=
CONF
$
compounds
$
known
,
unknown
=
CONF
$
compounds
$
unknown
,
sets
=
CONF
$
compounds
$
sets
))
rv
}
react_conf_f
<-
function
(
input
,
output
,
session
,
rv
,
rf
)
{
react_conf_f
<-
function
(
input
,
output
,
session
,
rv
,
rf
)
{
rf
$
get_compounds
<-
react_f
({
rf
$
get_tags_from_txt
<-
react_e
(
input
$
updTagsB
,{
## Consult the input text boxes for any files, then load the
## compound tables.
rv
$
conf
$
compounds
<-
shiny
::
reactiveValues
(
known
=
input
$
known
,
unknown
=
input
$
unknown
,
sets
=
input
$
sets
)
rv
<-
load_compound_input
(
rv
)
rv
$
input
$
tab
<-
list2rev
(
rv
$
input
$
tab
)
rv
})
rf
$
initial_mzml
<-
react_f
({
## Get data file table either from a CSV file, or create an
## empty one.
rv
$
input
$
tab
$
mzml
<-
if
(
shiny
::
isTruthy
(
rv
$
conf
$
data
))
{
file2tab
(
file
=
rv
$
conf
$
data
)
}
else
EMPTY_MZML
rv
$
input
<-
list2rev
(
rv
$
input
)
rv
})
rf
$
get_tags_from_txt
<-
react_f
({
## Tags in the text box.
## Tags in the text box.
txt2tags
(
input
$
tagsInp
)
if
(
isTruthy
(
input
$
tagsInp
))
txt2tags
(
input
$
tagsInp
)
else
TAG_DEF
})
})
rf
rf
}
}
server_conf
<-
function
(
input
,
output
,
session
,
rv
,
rf
)
{
server_conf
<-
function
(
input
,
output
,
session
,
rv
,
rf
,
roots
)
{
## ***** shinyFiles observers *****
## ***** shinyFiles observers *****
...
@@ -197,22 +164,22 @@ server_conf <- function(input,output,session,rv,rf) {
...
@@ -197,22 +164,22 @@ server_conf <- function(input,output,session,rv,rf) {
})
})
obsrv_e
(
input
$
saveConfB
,
{
obsrv_e
(
input
$
saveConfB
,
{
conf
<-
rev2list
(
rv
)
conf
<-
rev2list
(
rv
$
m
$
conf
)
vol
<-
vol_f
()
fn
<-
shinyFiles
::
parseSavePath
(
roots
=
roots
$
get
,
input
$
saveConfB
)[[
"datapath"
]]
fn
<-
shinyFiles
::
parseSavePath
(
roots
=
vol_f
,
input
$
saveConfB
)[[
"datapath"
]]
validate1
(
fn
,
msg
=
"Invalid file to save config to."
)
validate1
(
fn
,
msg
=
"Invalid file to save config to."
)
write_
conf
(
conf
,
fn
)
write_
state
(
rev2list
(
rv
$
m
)
,
fn
)
})
})
obsrv_e
(
input
$
restoreConfB
,{
obsrv_e
(
input
$
restoreConfB
,{
fn
<-
shinyFiles
::
parseFilePaths
(
roots
=
volumes
,
input
$
restoreConfB
)[[
"datapath"
]]
fn
<-
shinyFiles
::
parseFilePaths
(
roots
=
roots
$
get
,
input
$
restoreConfB
)[[
"datapath"
]]
assert
(
file.exists
(
fn
),
msg
=
"The file is unreadable."
)
assert
(
file.exists
(
fn
),
msg
=
"The file is unreadable."
)
rv
$
conf
<-
list2rev
(
read_conf
(
fn
))
rv
$
m
$
conf
<-
list2rev
(
read_conf
(
fn
))
for
(
nm
in
names
(
rv
$
conf
$
compounds
))
{
for
(
nm
in
names
(
rv
$
m
$
conf
$
compounds
))
{
shiny
::
updateTextInput
(
session
=
session
,
shiny
::
updateTextInput
(
session
=
session
,
inputId
=
nm
,
inputId
=
nm
,
value
=
rv
$
conf
$
compounds
[[
nm
]])
value
=
rv
$
m
$
conf
$
compounds
[[
nm
]])
}
}
## Tags
})
})
obsrv_e
(
input
$
mzMLB
,
obsrv_e
(
input
$
mzMLB
,
...
@@ -220,19 +187,41 @@ server_conf <- function(input,output,session,rv,rf) {
...
@@ -220,19 +187,41 @@ server_conf <- function(input,output,session,rv,rf) {
shiny
::
req
(
input
$
mzMLB
)
shiny
::
req
(
input
$
mzMLB
)
fchoice
<-
shinyFiles
::
parseFilePaths
(
roots
=
roots
$
get
,
input
$
mzMLB
)
fchoice
<-
shinyFiles
::
parseFilePaths
(
roots
=
roots
$
get
,
input
$
mzMLB
)
paths
<-
fchoice
[[
"datapath"
]]
paths
<-
fchoice
[[
"datapath"
]]
shiny
::
validate
(
need
(
rv
$
input
$
tab
$
mzml
,
"There is no skeleton table. Sets? Tags?"
))
df
<-
rhandsontable
::
hot_to_r
(
input
$
mzMLtabCtrl
)
df
<-
rhandsontable
::
hot_to_r
(
input
$
mzMLtabCtrl
)
df
<-
add_mzML_files
(
df
,
paths
)
df
<-
add_mzML_files
(
df
,
paths
)
mzml
<-
rv
$
input
$
tab
$
mzml
rv
$
m
$
input
$
tab
$
mzml
<-
disp2mzml
(
df
)
mzml
$
Files
<-
df
$
Files
})
mzml
$
set
<-
as.character
(
df
$
set
)
mzml
$
tag
<-
as.character
(
df
$
tag
)
obsrv_e
(
rv
$
m
$
conf
,
message
(
"updated rv$m$conf"
))
mzml
$
mode
<-
as.character
(
df
$
mode
)
rv
$
input
$
tab
$
mzml
<-
mzml
obsrv
({
message
(
'HERE???'
,
input
$
mzMLB
)
## Building rv objects here. Probably should change to
## something like reactive get_m.
rv
$
m
$
conf
$
compounds
$
known
<-
input
$
known
rv
$
m
$
conf
$
compounds
$
unknown
<-
input
$
unknown
rv
$
m
$
conf
$
compounds
$
sets
<-
input
$
sets
assert
(
isTruthy
(
rv
$
m
$
conf
$
compounds
$
known
)
||
isTruthy
(
rv
$
m
$
conf
$
compounds
$
unknown
),
msg
=
"Please provide at least one (known, or unknown) compounds table."
)
assert
(
isTruthy
(
rv
$
m
$
conf
$
compounds
$
sets
),
msg
=
"Please provide the compounds set table."
)
rv
$
m
<-
load_compound_input
(
rv
$
m
)
if
(
nrow
(
rv
$
m
$
input
$
tab
$
mzml
)
==
0
&&
file.exists
(
rv
$
m
$
conf
$
data
))
rv
$
m
<-
load_data_input
(
rv
$
m
)
})
obsrv_e
(
rv
$
m
$
conf
$
project
,{
## Update shinyFiles roots when project path changes.
shiny
::
req
(
rv
$
m
$
conf
$
project
)
dir
<-
normalizePath
(
rv
$
m
$
conf
$
project
,
winslash
=
'/'
)
if
(
roots
$
get
()[[
"project"
]]
!=
dir
)
{
roots
$
set
(
c
(
"start"
=
roots
$
get
()[[
'project'
]]
,
"project"
=
dir
))
}
else
{
roots
$
set
(
c
(
"project"
=
dir
))
}
})
})
obsrv_e
(
rv
$
conf
,
message
(
"updated rv$conf"
))
## ***** Render *****
## ***** Render *****
...
@@ -248,48 +237,40 @@ server_conf <- function(input,output,session,rv,rf) {
...
@@ -248,48 +237,40 @@ server_conf <- function(input,output,session,rv,rf) {
input
=
input
,
input
=
input
,
label
=
html
(
"The list of unknowns. Required columns: <i>ID</i>, <i>mz</i> and <i>RT</i> (<i>RT</i> can be empty)."
),
label
=
html
(
"The list of unknowns. Required columns: <i>ID</i>, <i>mz</i> and <i>RT</i> (<i>RT</i> can be empty)."
),
fileB
=
'impUnkListB'
,
fileB
=
'impUnkListB'
,
volumes
=
volumes
)
volumes
=
roots
$
get
)
})
})
output
$
fnSetIdCtrl
<-
shiny
::
renderUI
({
output
$
fnSetIdCtrl
<-
shiny
::
renderUI
({
txt_file_input
(
inputId
=
'sets'
,
txt_file_input
(
inputId
=
'sets'
,
input
=
input
,
input
=
input
,
label
=
html
(
"Compounds set table. Required columns <i>ID</i> and <i>set</i>."
),
label
=
html
(
"Compounds set table. Required columns <i>ID</i> and <i>set</i>."
),
fileB
=
'impSetIdB'
,
fileB
=
'impSetIdB'
,
volumes
=
volumes
)
volumes
=
roots
$
get
)
})
})
## shiny::observeEvent(input$updTagsB,{
## ## Modify tags in mzml
## mzml <- rv$input$tab$mzml
## shiny::req(mzml)
## ttags <- mzml$tag
## ltags <- levels(ttags)
## itags <- get_all_tags()
## diff <- setdiff(ltags,itags)
## for (m in diff) {
## ttags[ttags %in% m] <- 'unspecified'
## }
## ttags <- factor(as.character(ttags))
## ttags <- factor(as.character(ttags),levels=unique(c('unspecified',levels(ttags),itags)))
## rv$input$mzml$tag <- ttags
## })
output
$
mzMLtabCtrl
<-
rhandsontable
::
renderRHandsontable
({
output
$
mzMLtabCtrl
<-
rhandsontable
::
renderRHandsontable
({
input
$
updTagsB
assert
(
rv
$
m
$
input
$
tab
$
setid
,
msg
=
"Compounds set table not built yet."
)
rv
<-
rf
$
get_compounds
()
mzml
<-
rv
$
m
$
input
$
tab
$
mzml
rv
<-
rf
$
initial_mzml
()
all_sets
<-
unique
(
rv
$
m
$
input
$
tab
$
setid
$
set
)
all_sets
<-
unique
(
rv
$
input
$
tab
$
setid
$
set
)
rhandsontable
::
rhandsontable
(
mzml2disp
(
mzml
,
all_sets
),
stretchH
=
"all"
)
df
<-
rv
$
input
$
tab
$
mzml
df
$
set
<-
factor
(
df
$
set
)
levels
(
df
$
set
)
<-
all_sets
df
$
mode
<-
factor
(
df
$
mode
)
levels
(
df
$
mode
)
<-
names
(
MODEMAP
)
rhandsontable
::
rhandsontable
(
df
,
stretchH
=
"all"
)
})
})
rv
rv
}
}
mzml2disp
<-
function
(
mzml
,
all_sets
)
{
## Add factors for nicer rhandsontable output.
df
<-
as.data.frame
(
mzml
,
stringsAsFactors
=
F
)
df
$
set
<-
factor
(
df
$
set
,
levels
=
all_sets
)
df
$
mode
<-
factor
(
df
$
mode
,
levels
=
names
(
MODEMAP
))
df
}
disp2mzml
<-
function
(
df
)
{
df
$
set
<-
as.character
(
df
$
set
)
df
$
mode
<-
as.character
(
df
$
mode
)
df
$
tag
<-
as.character
(
df
$
tag
)
dtable
(
df
)
}
This diff is collapsed.
Click to expand it.
R/shiny-ui-top.R
+
15
−
11
View file @
2021fd8d
...
@@ -43,20 +43,24 @@ mk_ui <- function (fn_style) {
...
@@ -43,20 +43,24 @@ mk_ui <- function (fn_style) {
}
}
mk_shinyscreen
<-
function
(
fn_style
=
system.file
(
'www/custom.css'
,
package
=
'shinyscreen'
))
{
mk_shinyscreen
<-
function
(
wd
=
getwd
(),
fn_style
=
system.file
(
'www/custom.css'
,
package
=
'shinyscreen'
))
{
roots
<-
mk_roots
(
wd
)
server
<-
function
(
input
,
output
,
session
)
{
server
<-
function
(
input
,
output
,
session
)
{
## Top-level server function.
## Top-level server function.
rv
<-
shiny
::
reactiveValues
(
GUI
=
T
)
# Container for all
rv
<-
new_rv_state
(
project
=
wd
)
# Container for all
# reactive values.
# reactive values.
rf
<-
list
()
# Container for all
rf
<-
list
()
# Container for all
# reactive functions.
# reactive functions.
rv
<-
react_conf_v
(
input
,
output
,
session
,
rv
=
rv
,
rf
=
rf
)
# Config related r. values.
rf
<-
react_conf_f
(
input
,
output
,
session
,
rv
=
rv
,
rf
=
rf
)
# Config related r. functions.
rf
<-
react_conf_f
(
input
,
output
,
session
,
rv
=
rv
,
rf
=
rf
)
# Config related r. functions.
## Observers and renderers.
## ## Observers and renderers.
rv
<-
server_conf
(
input
,
output
,
session
,
rv
=
rv
,
rf
=
rf
)
rv
<-
server_conf
(
input
,
output
,
session
,
rv
=
rv
,
rf
=
rf
,
roots
=
roots
)
obsrv_e
(
rv
,{
message
(
paste
(
"rv changed at "
,
Sys.time
()))
})
session
$
onSessionEnded
(
function
()
{
session
$
onSessionEnded
(
function
()
{
stopApp
()
stopApp
()
})
})
...
@@ -67,9 +71,9 @@ mk_shinyscreen <- function(fn_style=system.file('www/custom.css',package = 'shin
...
@@ -67,9 +71,9 @@ mk_shinyscreen <- function(fn_style=system.file('www/custom.css',package = 'shin
##' @export
##' @export
launch
<-
function
(
GUI
=
T
,
fn_conf
=
""
,
...
)
{
launch
<-
function
(
GUI
=
T
,
fn_conf
=
""
,
wd
=
getwd
(),
...
)
{
if
(
GUI
)
{
if
(
GUI
)
{
app
<-
mk_shinyscreen
()
app
<-
mk_shinyscreen
(
wd
=
wd
)
shiny
::
runApp
(
appDir
=
app
,
...
)
shiny
::
runApp
(
appDir
=
app
,
...
)
}
else
{
}
else
{
if
(
nchar
(
fn_conf
)
==
0
)
{
if
(
nchar
(
fn_conf
)
==
0
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment