Skip to content

Commit

Permalink
Merge branch 'cw-1360-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-bacterial-genomes!52
  • Loading branch information
julibeg committed Dec 14, 2022
2 parents 4d009af + 4611caf commit d380e1a
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.2.10]
### Fixed
- sample_sheet format in schema to expect a file

## [v0.2.9]
### 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 @@ -13,7 +13,7 @@ params {
chunk_size = 1000000
run_prokka = true
prokka_opts = null
wfversion = "v0.2.9"
wfversion = "v0.2.10"
aws_image_prefix = null
aws_queue = null
sample = null
Expand Down Expand Up @@ -47,7 +47,7 @@ manifest {
description = 'Assembly, variant calling, and annotation of bacterial genomes.'
mainScript = 'main.nf'
nextflowVersion = '>=20.10.0'
version = 'v0.2.9'
version = 'v0.2.10'
}

epi2melabs {
Expand Down
4 changes: 2 additions & 2 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"properties": {
"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 @@ -170,7 +170,7 @@
},
"wfversion": {
"type": "string",
"default": "v0.2.9",
"default": "v0.2.10",
"hidden": true
},
"monochrome_logs": {
Expand Down

0 comments on commit d380e1a

Please sign in to comment.