Skip to content

Commit

Permalink
Upping version number for release v2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sdentro committed Dec 15, 2016
1 parent 5870830 commit df17004
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Maintainer: Stefan Dentro <sd11@sanger.ac.uk>
License: GPL-3
Type: Package
Title: Battenberg subclonal copy number caller
Version: 2.2.2
Version: 2.2.3
Authors@R: c(person("David", "Wedge", role=c("aut"), email="dw9@sanger.ac.uk"),
person("Peter", "Van Loo", role=c("aut")),
person("Stefan","Dentro", email="sd11@sanger.ac.uk", role=c("aut", "cre")),
Expand Down
3 changes: 2 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ export(getAlleleCounts)
export(getBAFsAndLogRs)
export(infer_gender_birdseed)
export(parse.imputeinfofile)
export(read_table_generic)
export(run.impute)
export(runASCAT)
export(run_clonal_ASCAT)
export(segment.baf.phased)
export(segment.baf.phased.sv)
export(squaresplot)
export(read_table_generic)
importFrom(RColorBrewer,brewer.pal)
importFrom(readr,read_table)
31 changes: 31 additions & 0 deletions man/read_table_generic.Rd
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
}

0 comments on commit df17004

Please sign in to comment.