Skip to contents

Lilac file parsing and manipulation.

Super class

tidywigits::Tool -> Lilac

Methods

Inherited methods


Method new()

Create a new Lilac object.

Usage

Lilac$new(path = NULL, files_tbl = NULL)

Arguments

path

(character(1))
Output directory of tool. If files_tbl is supplied, this basically gets ignored.

files_tbl

(tibble(n))
Tibble of files from list_files_dir.


Method parse_summary()

Read lilac.tsv file.

Usage

Lilac$parse_summary(x)

Arguments

x

(character(1))
Path to file.


Method tidy_summary()

Tidy lilac.tsv file.

Usage

Lilac$tidy_summary(x)

Arguments

x

(character(1))
Path to file.


Method parse_qc()

Read lilac.qc.tsv file.

Usage

Lilac$parse_qc(x)

Arguments

x

(character(1))
Path to file.


Method tidy_qc()

Tidy lilac.qc.tsv file.

Usage

Lilac$tidy_qc(x)

Arguments

x

(character(1))
Path to file.


Method clone()

The objects of this class are cloneable with this method.

Usage

Lilac$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

if (FALSE) { # \dontrun{
path <- here::here(
  "nogit"
)
l <- Lilac$new(path)
} # }