Skip to content

Commit

Permalink
Merge branch 'CW-2087--fix-schema' into 'dev'
Browse files Browse the repository at this point in the history
CW-2087 -- fix schema

See merge request epi2melabs/workflows/wf-amplicon!5
  • Loading branch information
julibeg committed May 15, 2023
2 parents faaab79 + bbbeb27 commit 4a2be53
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ 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).

## [unreleased]
## [v0.1.1]
### Fixed
- Reference not being required by the schema.
- Bug in documentation that prevented blog post from building.

## [v0.1.0]
Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ manifest {
description = 'Amplicon workflow'
mainScript = 'main.nf'
nextflowVersion = '>=20.10.0'
version = 'v0.1.0'
version = 'v0.1.1'
}

executor {
Expand Down
5 changes: 3 additions & 2 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,12 @@
"type": "string",
"format": "file-path",
"description": "Path to a reference FASTA file.",
"help_text": "If provided, the workflow will perform variant calling against the reference. Otherwise, it will cluster reads and create the consensus sequence for each cluster. The reference file should contain one ref. sequence per amplicon."
"help_text": "The reference file should contain one sequence per amplicon."
}
},
"required": [
"fastq"
"fastq",
"reference"
]
},
"samples": {
Expand Down

0 comments on commit 4a2be53

Please sign in to comment.