CombineHittables: CombineHittables: Combine hittables.

View source: R/CombineHittables.R

CombineHittablesR Documentation

CombineHittables: Combine hittables.

Description

CombineHittables combines multiple hittables by row-binding them, provided they have the same column names.

Usage

CombineHittables(...)

Arguments

...

Hittables to be combined.

Value

A single hittable resulting from the row-binding of all input Hittables.

Author(s)

Sergej Ruff

See Also

VirusHunterGatherer is available here: https://github.com/lauberlab/VirusHunterGatherer.

Examples

path <- system.file("extdata", "virushunter.tsv", package = "Virusparies")
file <- ImportVirusTable(path)
file2 <- ImportVirusTable(path)  # both files have 180 observations

combined_file <- CombineHittables(file,file2)

print(nrow(combined_file))

Virusparies documentation built on April 12, 2025, 1:48 a.m.