view carboseqUnsplit.R @ 13:9ad79c2d8e0b draft

"planemo upload for repository https://forgemia.inra.fr/carboseq/record-projet-carboseq/-/tree/75b22cbc75bbd0c301eabef3a734ca47468bb47e/toos/CarboSeqSimulator commit 75b22cbc75bbd0c301eabef3a734ca47468bb47e-dirty"
author siwaa
date Thu, 19 Sep 2024 17:57:10 +0000
parents 2af4b1e46d90
children
line wrap: on
line source

library(data.table)
library(dplyr)

resU <- data.table();

listFiles <- commandArgs(trailingOnly = TRUE)

for (i in listFiles) {
    load(i)
    resU<- dplyr::bind_rows(resU, res);
    rm(res)
    }

res <-resU

save(res, file = 'csopraRes.Rdata')