Skip to content

Commit

Permalink
Merge pull request #16 from icgc-argo/field-update
Browse files Browse the repository at this point in the history
pattern updates
  • Loading branch information
junjun-zhang authored Mar 10, 2020
2 parents 8311a69 + 25da848 commit 852b0e0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions schemas/qc_metrics.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"properties": {
"name": {
"type": "string",
"pattern": "^[a-zA-Z][a-zA-Z0-9_-]+"
"pattern": "^[a-zA-Z][a-zA-Z0-9_\\-]+"
},
"inputs": {
"type": "array",
Expand Down Expand Up @@ -93,7 +93,7 @@
"properties": {
"submitter_sequencing_experiment_id": {
"type": "string",
"pattern": "^[a-zA-Z0-9]{1}[a-zA-Z0-9-_.:']{0,98}[a-zA-Z0-9]{1}$"
"pattern": "^[a-zA-Z0-9]{1}[a-zA-Z0-9\\-_\\.:']{0,98}[a-zA-Z0-9]{1}$"
},
"platform": {
"enum": [
Expand Down
6 changes: 3 additions & 3 deletions schemas/sequencing_alignment.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"properties": {
"name": {
"type": "string",
"pattern": "^[a-zA-Z][a-zA-Z0-9_-]+"
"pattern": "^[a-zA-Z][a-zA-Z0-9_\\-]+"
},
"inputs": {
"type": "array",
Expand Down Expand Up @@ -96,7 +96,7 @@
"properties": {
"submitter_sequencing_experiment_id": {
"type": "string",
"pattern": "^[a-zA-Z0-9]{1}[a-zA-Z0-9-_.:']{0,98}[a-zA-Z0-9]{1}$"
"pattern": "^[a-zA-Z0-9]{1}[a-zA-Z0-9\\-_\\.:']{0,98}[a-zA-Z0-9]{1}$"
},
"platform": {
"enum": [
Expand Down Expand Up @@ -197,7 +197,7 @@
"properties": {
"submitter_read_group_id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_\:\.\-]+$"
"pattern": "^[a-zA-Z0-9\\-_:\\.]+$"
},
"library_name": {
"type": "string"
Expand Down
4 changes: 2 additions & 2 deletions schemas/sequencing_experiment.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"properties": {
"submitter_sequencing_experiment_id": {
"type": "string",
"pattern": "^[a-zA-Z0-9]{1}[a-zA-Z0-9-_.:']{0,98}[a-zA-Z0-9]{1}$"
"pattern": "^[a-zA-Z0-9]{1}[a-zA-Z0-9\\-_\\.:']{0,98}[a-zA-Z0-9]{1}$"
},
"platform": {
"enum": [
Expand Down Expand Up @@ -129,7 +129,7 @@
"properties": {
"submitter_read_group_id": {
"type": "string",
"pattern": "^[a-zA-Z0-9_\:\.\-]+$"
"pattern": "^[a-zA-Z0-9\\-_:\\.]+$"
},
"library_name": {
"type": "string"
Expand Down

0 comments on commit 852b0e0

Please sign in to comment.