Skip to content

Commit

Permalink
Merge pull request #86 from acidgenomics/master
Browse files Browse the repository at this point in the history
v0.4.4
  • Loading branch information
mjsteinbaugh authored Sep 9, 2019
2 parents 5a22277 + 13b1b1e commit 6516543
Show file tree
Hide file tree
Showing 30 changed files with 392 additions and 382 deletions.
12 changes: 6 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: bcbioSingleCell
Title: bcbio Single-Cell RNA-Seq
Description: R package for bcbio single-cell RNA-seq analysis.
Version: 0.4.3
Date: 2018-08-27
Version: 0.4.4
Date: 2018-09-09
Authors@R: c(
person(
given = "Michael",
Expand Down Expand Up @@ -54,12 +54,12 @@ LazyData: false
Depends:
R (>= 3.6),
SingleCellExperiment (>= 1.6),
basejump (>= 0.11.11)
basejump (>= 0.11.14)
Imports:
acidplots (>= 0.2.14),
bcbioBase (>= 0.6.10),
bioverbs (>= 0.2.7),
goalie (>= 0.3.6),
bioverbs (>= 0.2.9),
goalie (>= 0.3.7),
BiocGenerics (>= 0.30),
BiocParallel (>= 1.18),
IRanges (>= 2.18.2),
Expand All @@ -73,7 +73,7 @@ Imports:
methods,
utils
Suggests:
acidroxygen (>= 0.1),
acidroxygen (>= 0.1.2),
BiocStyle (>= 2.12),
R.utils (>= 2.9),
knitr (>= 1.24),
Expand Down
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## bcbioSingleCell 0.4.4 (2019-09-09)

### Minor changes

- `bcbioSingleCell`: Internal generator now calls `importSampleData` using
`pipeline = "bcbio"` argument, so we don't run into breaking changes when
handling user metadata in a future basejump update.
- Updated basejump dependency versions.

## bcbioSingleCell 0.4.3 (2019-08-27)

### Minor changes
Expand Down
6 changes: 5 additions & 1 deletion R/AllGenerators.R
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,11 @@ bcbioSingleCell <- function(
allSamples <- TRUE
sampleData <- NULL
if (isString(sampleMetadataFile)) {
sampleData <- importSampleData(sampleMetadataFile, lanes = lanes)
sampleData <- importSampleData(
file = sampleMetadataFile,
lanes = lanes,
pipeline = "bcbio"
)
## Error on incorrect reverse complement input.
if ("sequence" %in% colnames(sampleData)) {
sampleDirSequence <- str_extract(names(sampleDirs), "[ACGT]+$")
Expand Down
9 changes: 6 additions & 3 deletions docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions docs/CONTRIBUTING.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 6516543

Please sign in to comment.