From 267f9b776cf910d9862112f487c051808c49e424 Mon Sep 17 00:00:00 2001 From: Stefan Dentro Date: Tue, 13 Dec 2016 14:18:44 +0000 Subject: [PATCH] Adding newline --- R/util.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/R/util.R b/R/util.R index 6a85d95..f9c7805 100644 --- a/R/util.R +++ b/R/util.R @@ -10,6 +10,7 @@ #' @param chrom_col The column number that contains chromosome denominations. This column will automatically be cast as a character. Should be counted including the row.names (Default: 1) #' @param skip The number of rows to skip before reading (Default: 0) #' @return: A data frame with contents of the file +#' @export read_table_generic = function(file, header=T, row.names=F, stringsAsFactor=F, sep="\t", chrom_col=1, skip=0) { # stringsAsFactor is not needed here, but kept for legacy purposes @@ -107,4 +108,4 @@ assert.file.exists = function(filename) { warning(paste("Supplied file does not exist: ", filename, sep="")) quit(save="no", status=1) } -} \ No newline at end of file +}