View source: R/CombineHittables.R
CombineHittables | 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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.