Skip to content
Snippets Groups Projects
Verified Commit a29a2832 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

kmerclust_load.R: add dplyr dependency

parent 555b0edc
No related branches found
No related tags found
No related merge requests found
library(kmerclust) library(kmerclust)
library(dplyr)
library(vroom) library(vroom)
args <- commandArgs(trailingOnly = TRUE) args <- commandArgs(trailingOnly = TRUE)
...@@ -7,7 +8,7 @@ count <- vroom::vroom( ...@@ -7,7 +8,7 @@ count <- vroom::vroom(
show_col_types = FALSE, show_col_types = FALSE,
col_names = c("kmer", "count_m", "count_f"), col_names = c("kmer", "count_m", "count_f"),
skip = 1) %>% skip = 1) %>%
mutate( dplyr::mutate(
count_m = as.integer(count_m), count_m = as.integer(count_m),
count_f = as.integer(count_f), count_f = as.integer(count_f),
specie = as.factor(args[3]) specie = as.factor(args[3])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment