Browse Source

Fix in formula call

master
Maxime Wack 6 years ago
parent
commit
3eee2a8504
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      R/demodata.R
  2. +1
    -1
      R/metadata.R

+ 1
- 1
R/demodata.R View File

@@ -154,7 +154,7 @@ populate_concept <- function(ont, modi, scheme, project, host = "", admin = "",
if(! modi %>% is.null)
{
modi %>%
dplyr::mutate_all(~stringr::str_replace_all("'", "''")) ->
dplyr::mutate_all(~stringr::str_replace_all(., "'", "''")) ->
modi
}



+ 1
- 1
R/metadata.R View File

@@ -159,7 +159,7 @@ populate_ont <- function(ont, modi = NULL, scheme, include_code = T, def_facttab
if(! modi %>% is.null)
{
modi %>%
dplyr::mutate_all(~stringr::str_replace_all("'", "''")) ->
dplyr::mutate_all(~stringr::str_replace_all(., "'", "''")) ->
modi
}



Loading…
Cancel
Save