Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
nictru committed Oct 17, 2024
1 parent 5f4eae9 commit 7ca5938
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 29 deletions.
17 changes: 4 additions & 13 deletions assets/schema_counts_design.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,19 @@
"type": "string",
"pattern": "^\\S+$",
"errorMessage": "Sample name must be provided and cannot contain spaces",
"meta": [
"id"
]
"meta": ["id"]
},
"condition": {
"type": "string",
"pattern": "^\\S+$",
"errorMessage": "Condition name must be provided and cannot contain spaces",
"meta": [
"condition"
]
"meta": ["condition"]
},
"batch": {
"type": "string",
"pattern": "^\\S+$",
"errorMessage": "Batch identifier cannot contain spaces",
"meta": [
"batch"
]
"meta": ["batch"]
},
"counts_file": {
"type": "string",
Expand All @@ -39,9 +33,6 @@
"errorMessage": "Counts file must be a .csv or .txt file"
}
},
"required": [
"sample",
"condition"
]
"required": ["sample", "condition"]
}
}
20 changes: 4 additions & 16 deletions assets/schema_input_bam.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,19 @@
"type": "string",
"pattern": "^\\S+$",
"errorMessage": "Sample name must be provided and cannot contain spaces",
"meta": [
"id"
]
"meta": ["id"]
},
"condition": {
"type": "string",
"pattern": "^\\S+$",
"errorMessage": "Condition name must be provided and cannot contain spaces",
"meta": [
"condition"
]
"meta": ["condition"]
},
"assay": {
"type": "string",
"pattern": "^\\S+$",
"errorMessage": "Assay name must be provided and cannot contain spaces",
"meta": [
"assay"
]
"meta": ["assay"]
},
"signal": {
"type": "string",
Expand All @@ -46,12 +40,6 @@
"errorMessage": "Control file must be provided and must be a .bam file"
}
},
"required": [
"sample",
"condition",
"assay",
"signal",
"control"
]
"required": ["sample", "condition", "assay", "signal", "control"]
}
}

0 comments on commit 7ca5938

Please sign in to comment.