-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upping version number for release v2.2.3
- Loading branch information
Showing
3 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
% Generated by roxygen2 (4.1.1): do not edit by hand | ||
% Please edit documentation in R/util.R | ||
\name{read_table_generic} | ||
\alias{read_table_generic} | ||
\title{Generic reading function using the readr R package, tailored for reading in genomic data} | ||
\usage{ | ||
read_table_generic(file, header = T, row.names = F, stringsAsFactor = F, | ||
sep = "\\t", chrom_col = 1, skip = 0) | ||
} | ||
\arguments{ | ||
\item{file}{Filename of the file to read in} | ||
|
||
\item{header}{Whether the file contains a header (Default: TRUE)} | ||
|
||
\item{row.names}{Whether the file contains row names (Default: FALSE)} | ||
|
||
\item{stringsAsFactor}{Legacy parameter that is no longer used (Default: FALSE)} | ||
|
||
\item{sep}{Column separator (Default: \t)} | ||
|
||
\item{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)} | ||
|
||
\item{skip}{The number of rows to skip before reading (Default: 0)} | ||
} | ||
\value{ | ||
A data frame with contents of the file | ||
} | ||
\description{ | ||
Generic reading function using the readr R package, tailored for reading in genomic data | ||
} | ||
|