R/writeGeno.R

writeGeno <-
function (x, fileName)
{
	vec = NULL
	vec = c("geneinfo", rownames(x))
	 write.table(t(vec), file = fileName, sep = "\t", quote = FALSE, col.names = FALSE, row.names = FALSE)
	write.table (t(x), fileName,sep = "\t", quote = FALSE, col.names = FALSE, append = TRUE)
}

Try the survJamda package in your browser

Any scripts or data that you put into this service are public.

survJamda documentation built on May 1, 2019, 8:50 p.m.