Isofox file parsing and manipulation.
Super class
nemo::Tool -> Isofox
Methods
Method new()
Create a new Isofox object.
Usage
Isofox$new(path = NULL, files_tbl = NULL)Arguments
path(
character(1))
Output directory of tool. Iffiles_tblis supplied, this is ignored.files_tbl(
tibble(n))
Tibble of files fromnemo::list_files_dir().
Examples
cls <- Isofox
indir <- system.file("extdata/oa", package = "tidywigits")
odir <- tempdir()
id <- "isofox_run1"
obj <- cls$new(indir)
obj$run(output_dir = odir, format = "parquet", input_id = id)
(lf <- list.files(odir, pattern = "isofox_.*parquet", full.names = FALSE))
#> [1] "sample1_isofox_altsj.parquet"
#> [2] "sample1_isofox_fusionsall.parquet"
#> [3] "sample1_isofox_fusionspass.parquet"
#> [4] "sample1_isofox_genecollection.parquet"
#> [5] "sample1_isofox_genedata.parquet"
#> [6] "sample1_isofox_retintron.parquet"
#> [7] "sample1_isofox_summary.parquet"
#> [8] "sample1_isofox_transdata.parquet"
