Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Image Data Explorer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
7
Issues
7
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kimberly Isobel Meechan
Image Data Explorer
Commits
85f3b0d4
Commit
85f3b0d4
authored
May 27, 2020
by
Jean-Karim Heriche
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed cat()s used for debugging.
parent
73f7905b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
image_data_explorer.R
image_data_explorer.R
+0
-3
No files found.
image_data_explorer.R
View file @
85f3b0d4
...
...
@@ -699,10 +699,7 @@ server <- function(input, output, session) {
observeEvent
(
input
$
annotationDone
,
{
## Add chosen label to selected rows
if
(
!
is.null
(
rv
$
annotationCol
))
{
cat
(
file
=
stderr
(),
"\n\tAnnotation col type: "
,
str
(
rv
$
data
[,
rv
$
annotationCol
]),
"\n\tselected rows:"
,
length
(
rv
$
selectedRows
),
"\n\tSelected label: "
,
input
$
selectedLabel
,
"\n\n"
)
rv
$
data
[
rv
$
selectedRows
,
rv
$
annotationCol
]
<-
rep
(
input
$
selectedLabel
,
length
(
rv
$
selectedRows
))
cat
(
file
=
stderr
(),
"\n\tData:\n"
,
rv
$
data
[
rv
$
selectedRows
,
rv
$
annotationCol
],
"\n\n"
)
}
else
{
showNotification
(
"Annotation column not defined."
,
type
=
"error"
)
}
...
...
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