Mercurial > repos > kpbioteam > minfi_getbeta
view minfi_getbeta.R @ 3:4953a5a6c006 draft
planemo upload commit 0590dcbf1cff7e99b97e2c33e1bfe2a4d9b447aa
| author | kpbioteam |
|---|---|
| date | Mon, 18 Jun 2018 11:25:08 -0400 |
| parents | ab291e211089 |
| children |
line wrap: on
line source
require("minfi", quietly = TRUE) args <- commandArgs(trailingOnly = TRUE) input = args[1] output = args[2] RSet <- get(load(input)) beta <- getBeta(RSet) write.table(beta, file = output, quote = FALSE, sep = "\t")
