-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zachary Foster
committed
Oct 30, 2024
1 parent
e639e7d
commit 40f27a5
Showing
30 changed files
with
291 additions
and
402 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
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,33 +1,65 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://raw.githubusercontent.com/nf-core/plantpathsurveil/master/assets/schema_input.json", | ||
"title": "nf-core/plantpathsurveil pipeline - params.input schema", | ||
"description": "Schema for the file provided with params.input", | ||
"$id": "https://raw.githubusercontent.com/nf-core/pathogensurveillance/master/assets/schema_input.json", | ||
"title": "nf-core/pathogensurveillance pipeline - params.sample_data schema", | ||
"description": "Schema for the file provided with params.sample_data", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"sample": { | ||
"type": "string", | ||
"pattern": "^\\S+$", | ||
"errorMessage": "Sample name must be provided and cannot contain spaces", | ||
"meta": ["id"] | ||
"sample_id": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"fastq_1": { | ||
"description": { | ||
"type": "string" | ||
}, | ||
"path": { | ||
"type": "string", | ||
"format": "file-path", | ||
"exists": true, | ||
"pattern": "^\\S+\\.f(ast)?q\\.gz$", | ||
"errorMessage": "FastQ file for reads 1 must be provided, cannot contain spaces and must have extension '.fq.gz' or '.fastq.gz'" | ||
}, | ||
"fastq_2": { | ||
"path_2": { | ||
"type": "string", | ||
"format": "file-path", | ||
"exists": true, | ||
"pattern": "^\\S+\\.f(ast)?q\\.gz$", | ||
"errorMessage": "FastQ file for reads 2 cannot contain spaces and must have extension '.fq.gz' or '.fastq.gz'" | ||
} | ||
}, | ||
"ncbi_accession": { | ||
"type": "string", | ||
"pattern": "^[A-Z]{3}[0-9]+$", | ||
"errorMessage": "The `ncbi_accession` column contains at least on value that does not look like an NCBI accession (3 captial letters followed by numbers)." | ||
}, | ||
"ncbi_query": { | ||
"type": "string" | ||
}, | ||
"ncbi_query_max": { | ||
"type": "string" | ||
}, | ||
"sequence_type": { | ||
"type": "string" | ||
}, | ||
"report_group_ids": { | ||
"type": "string" | ||
}, | ||
"color_by": { | ||
"type": "string" | ||
}, | ||
"ploidy": { | ||
"type": "number" | ||
}, | ||
"enabled": { | ||
"type": "boolean" | ||
}, | ||
"ref_group_ids": { | ||
"type": "string" | ||
}, | ||
}, | ||
"required": ["sample", "fastq_1"] | ||
"required": [] | ||
} | ||
} |
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
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
Oops, something went wrong.