listOflists2Dt {XNAString}R Documentation

Save list of lists as data.table

Description

Save list of lists as data.table

Usage

listOflists2Dt(list_of_lists)

Arguments

list_of_lists

list of lists that will be saved as data.table.

Value

data.table

Examples

nested_list <- list(
  list(base = c("T"), sugar = c("G")),
  list(base = c("U"), sugar = c("G"))
)
listOflists2Dt(nested_list)

[Package XNAString version 1.2.0 Index]