pasteSorted {GWASTools} | R Documentation |
Read a configuration file
pasteSorted(a, b, sep="/")
a |
vector 1 |
b |
vector 2 |
sep |
a character string to separate the terms. |
A character vector of the concatenated values, sorted pairwise.
Stephanie Gogarten
a <- c("A","C","G","T") b <- c("C","A","T","G") pasteSorted(a,b)