Generieren Sie alle möglichen Kombinationen einer Reihe von Zeichen r
x <- c("T", "A", "C", "G")
do.call(expand.grid, rep(list(x), 3))
Crazy Llama
x <- c("T", "A", "C", "G")
do.call(expand.grid, rep(list(x), 3))