Skip to content

Commit

Permalink
fix: Add some magic from rnaseq
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Aug 25, 2023
1 parent 7910cc1 commit 47d631c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions assets/schema_input.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,16 @@
},
"fastq_1": {
"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": {
"errorMessage": "FastQ file for reads 2 cannot contain spaces and must have extension '.fq.gz' or '.fastq.gz'",
"type": "string",
"format": "file-path",
"exists": true,
"anyOf": [
{
"type": "string",
Expand Down

0 comments on commit 47d631c

Please sign in to comment.