Skip to contents

Oncoanalyser file parsing and manipulation.

Super class

tidywigits::Workflow -> Oncoanalyser

Methods

Inherited methods


Method new()

Create a new Oncoanalyser object.

Usage

Oncoanalyser$new(path = NULL)

Arguments

path

(character(n))
Path(s) to Oncoanalyser results.


Method clone()

The objects of this class are cloneable with this method.

Usage

Oncoanalyser$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

if (FALSE) { # \dontrun{
path <- here::here("nogit/oa_v2")
oa <- Oncoanalyser$new(path)
x <-
  oa$nemofy(
    odir = "nogit/test_data",
    format = "parquet",
    id = "run1"
)
dbconn <- DBI::dbConnect(
  drv = RPostgres::Postgres(),
  dbname = "nemo",
  user = "orcabus"
)
x <-
  oa$nemofy(
    format = "db",
    id = "runABC456",
    dbconn = dbconn
)
} # }