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
bioinfo
datautils
Commits
82dbe382
Commit
82dbe382
authored
May 25, 2016
by
Holger Brandl
Browse files
fixed _ with . in library
parent
d04c6465
Changes
1
Hide whitespace changes
Inline
Side-by-side
R/core_commons.R
View file @
82dbe382
...
...
@@ -69,7 +69,7 @@ loadpack <- function(x, warn_conflicts=T){
}
## load it using a library function so that loadpack errors if package is still not ins
eval
(
parse
(
text
=
paste
(
"library("
,
x
,
", quietly=T, warn
_
conflicts="
,
warn_conflicts
,
")"
,
sep
=
""
)))
eval
(
parse
(
text
=
paste
(
"library("
,
x
,
", quietly=T, warn
.
conflicts="
,
warn_conflicts
,
")"
,
sep
=
""
)))
}
check_version
=
function
(
pkg_name
,
min_version
)
{
...
...
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