view carboseqUnsplit.R @ 12:7e43dc776bda draft

"planemo upload for repository https://forgemia.inra.fr/carboseq/record-projet-carboseq/-/tree/6d8408bc51a9a3e037181e8ca08212a5c96f2321/toos/CarboSeqSimulator commit 6d8408bc51a9a3e037181e8ca08212a5c96f2321-dirty"
author siwaa
date Thu, 19 Sep 2024 15:58:11 +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')