Skip to contents

Isofox file parsing and manipulation.

Super class

tidywigits::Tool -> Isofox

Methods

Inherited methods


Method new()

Create a new Isofox object.

Usage

Isofox$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 summary.csv file.

Usage

Isofox$parse_summary(x)

Arguments

x

(character(1))
Path to file.


Method tidy_summary()

Tidy summary.csv file.

Usage

Isofox$tidy_summary(x)

Arguments

x

(character(1))
Path to file.


Method parse_genedata()

Read gene_data.csv file.

Usage

Isofox$parse_genedata(x)

Arguments

x

(character(1))
Path to file.


Method tidy_genedata()

Tidy gene_data.csv file.

Usage

Isofox$tidy_genedata(x)

Arguments

x

(character(1))
Path to file.


Method parse_transdata()

Read transcript_data.csv file.

Usage

Isofox$parse_transdata(x)

Arguments

x

(character(1))
Path to file.


Method tidy_transdata()

Tidy transcript_data.csv file.

Usage

Isofox$tidy_transdata(x)

Arguments

x

(character(1))
Path to file.


Method parse_altsj()

Read alt_splice_junc.csv file.

Usage

Isofox$parse_altsj(x)

Arguments

x

(character(1))
Path to file.


Method tidy_altsj()

Tidy alt_splice_junc.csv file.

Usage

Isofox$tidy_altsj(x)

Arguments

x

(character(1))
Path to file.


Method parse_retintron()

Read retained_intron.csv file.

Usage

Isofox$parse_retintron(x)

Arguments

x

(character(1))
Path to file.


Method tidy_retintron()

Tidy retained_intron.csv file.

Usage

Isofox$tidy_retintron(x)

Arguments

x

(character(1))
Path to file.


Method parse_fusionsall()

Read fusions.csv file.

Usage

Isofox$parse_fusionsall(x)

Arguments

x

(character(1))
Path to file.


Method tidy_fusionsall()

Tidy fusions.csv file.

Usage

Isofox$tidy_fusionsall(x)

Arguments

x

(character(1))
Path to file.


Method parse_fusionspass()

Read pass_fusions.csv file.

Usage

Isofox$parse_fusionspass(x)

Arguments

x

(character(1))
Path to file.


Method tidy_fusionspass()

Tidy pass_fusions.csv file.

Usage

Isofox$tidy_fusionspass(x)

Arguments

x

(character(1))
Path to file.


Method parse_genecollection()

Read gene_collection.csv file.

Usage

Isofox$parse_genecollection(x)

Arguments

x

(character(1))
Path to file.


Method tidy_genecollection()

Tidy gene_collection.csv file.

Usage

Isofox$tidy_genecollection(x)

Arguments

x

(character(1))
Path to file.


Method clone()

The objects of this class are cloneable with this method.

Usage

Isofox$clone(deep = FALSE)

Arguments

deep

Whether to make a deep clone.

Examples

if (FALSE) { # \dontrun{
path <- here::here(
  "nogit"
)
i <- Isofox$new(path)
i$tidy()
i$tbls$tidy |>
  purrr::set_names(i$tbls$parser) |>
  purrr::map(\(x) x[["data"]][[1]])
} # }