Skip to content

Commit

Permalink
Merge branch 'cw-1369-change-sample_sheet-format-to-file-path' into '…
Browse files Browse the repository at this point in the history
…dev'

set sample sheet format in schema to "file-path"

See merge request epi2melabs/workflows/wf-single-cell!48
  • Loading branch information
nrhorner committed Dec 14, 2022
2 parents 69eeabc + 20d8bd0 commit 7c65b27
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.1.8]
### Fixed
- sample_sheet format in schema to expect a file

## [v0.1.7]
### Changed
- Updated description in manifest
Expand Down
4 changes: 2 additions & 2 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ params {
sample_sheet = null
sample = null
single_cell_sample_sheet = null
wfversion = "v0.1.7"
wfversion = "v0.1.8"
aws_image_prefix = null
aws_queue = null
disable_ping = false
Expand Down Expand Up @@ -72,7 +72,7 @@ manifest {
description = 'Identification of cell- and UMI barcodes from single-cell sequencing.'
mainScript = 'main.nf'
nextflowVersion = '>=20.10.0'
version = 'v0.1.7'
version = 'v0.1.8'
}

epi2melabs {
Expand Down
4 changes: 2 additions & 2 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
},
"sample_sheet": {
"type": "string",
"format": "path",
"format": "file-path",
"description": "A CSV file used to map barcodes to sample aliases. The sample sheet can be provided when the input data is a directory containing sub-directories with FASTQ files.",
"help_text": "The sample sheet is a CSV file with, minimally, columns named `barcode` and `alias`. Extra columns are allowed. A `type` column is required for certain workflows and should have the following values; `test_sample`, `positive_control`, `negative_control`, `no_template_control`."
},
Expand Down Expand Up @@ -267,7 +267,7 @@
},
"wfversion": {
"type": "string",
"default": "v0.1.7",
"default": "v0.1.8",
"hidden": true
},
"monochrome_logs": {
Expand Down

0 comments on commit 7c65b27

Please sign in to comment.