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

kmerclust_clust.R: disable csv output

parent adff89c1
No related branches found
No related tags found
No related merge requests found
...@@ -17,13 +17,13 @@ res <- count %>% ...@@ -17,13 +17,13 @@ res <- count %>%
save(res, file = paste0(args[1], "_clust_", args[3], ".Rdata")) save(res, file = paste0(args[1], "_clust_", args[3], ".Rdata"))
count %>% #count %>%
mutate( # mutate(
count_m = round(count_m), # count_m = round(count_m),
count_f = round(count_f) # count_f = round(count_f)
) %>% # ) %>%
dplyr::filter(count_m + count_f > 0) %>% # dplyr::filter(count_m + count_f > 0) %>%
dplyr::mutate(chromosome = res$chromosome) %>% # dplyr::mutate(chromosome = res$chromosome) %>%
dplyr::select(name, chromsome) %>% # dplyr::select(name, chromsome) %>%
write_csv2(file = paste0(args[1], "_clust_", args[3], ".csv")) # write_csv2(file = paste0(args[1], "_clust_", args[3], ".csv"))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment