Skip to contents

WiGiTS file parsing and manipulation.

Super class

nemo::Workflow -> Wigits

Methods

Public methods

Inherited methods


Method new()

Create a new Wigits object.

Usage

Wigits$new(path = NULL)

Arguments

path

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


Method clone()

The objects of this class are cloneable with this method.

Usage

Wigits$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

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