-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from phac-nml/update/clair3_params
Update Clair3 Params to be less strict
- Loading branch information
Showing
24 changed files
with
291 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
sample,reads | ||
sample1,.github/test-data/nanopore/fastq_pass/barcode01 | ||
sample2,.github/test-data/nanopore/fastq_pass/barcode02 | ||
100_reads,.github/test-data/nanopore/fastq_pass/barcode03 | ||
25_reads,.github/test-data/nanopore/fastq_pass/barcode24 | ||
negative-ctrl,.github/test-data/nanopore/fastq_pass/barcode94 | ||
sample,fastq_1 | ||
sample1,.github/test-data/nanopore/fastq_pass/barcode01/barcode01.fastq.gz | ||
sample2,.github/test-data/nanopore/fastq_pass/barcode02/barcode02.fastq.gz | ||
100_reads,.github/test-data/nanopore/fastq_pass/barcode03/barcode03.fastq.gz | ||
25_reads,.github/test-data/nanopore/fastq_pass/barcode24/barcode24.fastq.gz | ||
negative-ctrl,.github/test-data/nanopore/fastq_pass/barcode94/barcode94.fastq.gz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,23 @@ | |
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). | ||
|
||
## v1.1.0 - [Unreleased] | ||
|
||
### `Added` | ||
- Input schema JSON and validation | ||
- FORMAT_INPUT workflow | ||
- Handles the input data now | ||
- `[email protected]` plugin | ||
|
||
### `Changed` | ||
- `--input SAMPLESHEET_CSV` header | ||
- Went from `reads` with path to barcode directories to `fastq_1` with path to fastq files | ||
- Fixed bug so that SNPEff will now work with given gff files | ||
- Issue was typo related in the build module | ||
- Fixed bug with `calc_bam_variation` caused by genome case | ||
- Log and error statements | ||
- Fixed the cache directory statements | ||
|
||
## v1.0.0 - [2024-03-22] | ||
|
||
Initial release of `phac-nml/viralassembly`, created from combining the [nf-core](https://nf-co.re/) template with the artic steps. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://raw.githubusercontent.com/nf-schema/example/master/assets/schema_input.json", | ||
"title": "nf-schema example - params.input schema", | ||
"description": "Schema for the file provided with params.input", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"sample": { | ||
"type": "string", | ||
"pattern": "^\\S+$", | ||
"errorMessage": "Sample name must be provided and cannot contain spaces", | ||
"meta": ["id"] | ||
}, | ||
"fastq_1": { | ||
"type": "string", | ||
"pattern": "^\\S+\\.f(ast)?q(\\.gz)?$", | ||
"format": "file-path", | ||
"errorMessage": "FastQ file for reads must be provided, cannot contain spaces, and must have extension '.fq(.gz)' or '.fastq(.gz)'" | ||
} | ||
}, | ||
"required": ["sample", "fastq_1"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
sample,reads | ||
negative-ctrl-1,barcode11 | ||
run-ntc-1,barcode94 | ||
pos-ctrl-1,barcode95 | ||
cov-1,barcode5 | ||
cov-2,barcode01 | ||
cov-3,barcode12 | ||
cov-4,barcode19 | ||
cov-5,barcode40 | ||
cov-6,barcode61 | ||
cov-7,barcode75 | ||
sample,fastq_1 | ||
negative-ctrl-1,fastqs/negative_ctrl.fastq | ||
run-ntc-1,fastqs/ntc-1.fastq | ||
pos-ctrl-1,fastqs/pos-cov-1.fastq | ||
cov-1,fastqs/sample1.fastq | ||
cov-2,fastqs/sample2.fastq | ||
cov-3,fastqs/sample3.fastq | ||
cov-4,fastqs/sample4.fastq | ||
cov-5,fastqs/sample5.fastq | ||
cov-6,fastqs/sample6.fastq | ||
cov-7,fastqs/sample7.fastq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.