Skip to content

Commit

Permalink
remove limit again
Browse files Browse the repository at this point in the history
  • Loading branch information
EhrmannS committed Jul 14, 2020
1 parent dfa91b2 commit f5d4642
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions R/translateTerms.R
Original file line number Diff line number Diff line change
Expand Up @@ -258,11 +258,11 @@ translateTerms <- function(terms, index = NULL, source = NULL, strict = FALSE,
toTranslate <- tempOut %>%
filter(target == "missing")

# in case a set of limiting terms has been set, use to subset
if(!is.null(limit)){
toTranslate <- toTranslate %>%
filter(target %in% limit)
}
# # in case a set of limiting terms has been set, use to subset
# if(!is.null(limit)){
# toTranslate <- toTranslate %>%
# filter(target %in% limit)
# }

if(dim(toTranslate)[1] != 0){

Expand Down

0 comments on commit f5d4642

Please sign in to comment.