Skip to contents

A function to join sources vertically. A vertical join involves matching common columns across source data.frames and padding missing columns to create a single new data.frame with data and records from multiple sources.

Usage

vertical_join(x, y, ...)

Arguments

x

an annotation_source object

y

an second annotation_source object to join with the first

Value

an annotation_source object

Examples


M <- annotation_source()
N <- annotation_source()
O <- vertical_join(M, N)