UW-GAC / wgsaparsr

Code for parsing TOPMED variant annotation files produced by the WGSA annotation tool.
Other
5 stars 3 forks source link

updating rlang (2) #98

Open bheavner opened 5 years ago

bheavner commented 5 years ago

related to #94 - in validate_config(), there's this: char_count <- config_tibble %>% dplyr::filter(!is.na(.$pivotGroup)) %>% dplyr::group_by(pivotGroup) %>% dplyr::summarize_at(.funs = dplyr::funs(dplyr::n_distinct(levels(as.factor(.)))), .vars = "pivotChar")

Warning message: funs() is soft deprecated as of dplyr 0.8.0 please use list() instead

Before:

funs(name = f(.)

After:

list(name = ~f(.))