view carboseqUnsplit.R @ 16:5ed871d666b4 draft

"planemo upload for repository https://forgemia.inra.fr/carboseq/record-projet-carboseq/-/tree/be8c2ab794a3722ee6edc3c9f7e73ccc45806f31/toos/CarboSeqSimulator commit be8c2ab794a3722ee6edc3c9f7e73ccc45806f31-dirty"
author siwaa
date Thu, 12 Dec 2024 14:38:52 +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')