The SomaDataIO package loads and exports 'SomaScan' data via the 'SomaLogic Operating Co., Inc.' proprietary data file, called an ADAT ('*.adat'). The package also exports auxiliary functions for manipulating, wrangling, and extracting relevant information from an ADAT object once in memory.
it looks like it's mostly the Col.Meta that's causing the render output verbisity
header$Header.Meta seems ok
header$file.specs is ok
header$row_meta is ok
Suggest something like
names(header)
header$Header.Meta
header$file.specs
header$row_meta
tibble::as_tibble(header$Col.Meta) # maybe `data.frame()` due to import of tibble req'd
pkgdown
website docs forparseHeader()
returns a full HeaderparseHeader()
Col.Meta
that's causing the render output verbisityheader$Header.Meta
seems okheader$file.specs
is okheader$row_meta
is okSuggest something like