CombineHittables {Virusparies} | R Documentation |
CombineHittables combines multiple hittables by row-binding them, provided they have the same column names.
CombineHittables(...)
... |
Hittables to be combined. |
A single hittable resulting from the row-binding of all input Hittables.
Sergej Ruff
VirusHunterGatherer is available here: https://github.com/lauberlab/VirusHunterGatherer.
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))