CombineHittables {Virusparies} | R 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))
[Package Virusparies version 1.1.0 Index]