Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
jlopez
RPACIB
Commits
4158f303
Commit
4158f303
authored
Mar 13, 2018
by
jlopez
Browse files
Fix quote
parent
5c2429b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/opt_home.R
View file @
4158f303
...
...
@@ -117,9 +117,9 @@ createContentFile <- function() {
listRBIO
<-
paste0
(
listRBIO
,
"\n\tbiocLite("
)
for
(
pkg
in
1
:
sizeBIO
){
if
(
pkg
<
sizeBIO
)
{
listRBIO
<-
paste0
(
listRBIO
,
'
"
'
,
selectBIO
[
pkg
],
'
"
, '
)
listRBIO
<-
paste0
(
listRBIO
,
'
\'
'
,
selectBIO
[
pkg
],
'
\'
, '
)
}
else
{
listRBIO
<-
paste0
(
listRBIO
,
'
"
'
,
selectBIO
[
pkg
],
'
"
)"'
)
listRBIO
<-
paste0
(
listRBIO
,
'
\'
'
,
selectBIO
[
pkg
],
'
\'
)"'
)
}
}
result
<-
paste
(
result
,
listRBIO
,
sep
=
"\n"
)
...
...
@@ -143,9 +143,9 @@ createContentFile <- function() {
listRGITHUB
<-
'\tR --slave -e "install_github(c('
for
(
pkg
in
1
:
sizeGITHUB
){
if
(
pkg
<
sizeGITHUB
)
{
listRGITHUB
<-
paste0
(
listRGITHUB
,
'
"
'
,
selectGITHUB
[
pkg
],
'
"
, '
)
listRGITHUB
<-
paste0
(
listRGITHUB
,
'
\'
'
,
selectGITHUB
[
pkg
],
'
\'
, '
)
}
else
{
listRGITHUB
<-
paste0
(
listRGITHUB
,
'
"
'
,
selectGITHUB
[
pkg
],
'
"
))"'
)
listRGITHUB
<-
paste0
(
listRGITHUB
,
'
\'
'
,
selectGITHUB
[
pkg
],
'
\'
))"'
)
}
}
result
<-
paste
(
result
,
listRGITHUB
,
sep
=
"\n"
)
...
...
Write
Preview
Supports
Markdown
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