Skip to content

Commit

Permalink
Change quotes - yaml parser is interpreting ? in string
Browse files Browse the repository at this point in the history
as a special character
  • Loading branch information
bcorrie committed Nov 7, 2024
1 parent 43b4bc3 commit 23b796c
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions lang/R/inst/extdata/airr-schema-openapi3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ InformationProvider:
response: text/html
IEDB_RECEPTOR:
request:
url:
- "https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}"
- "https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}"
url:
- 'https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}'
- 'https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}'
response: application/json
IEDB_EPITOPE:
request:
Expand Down
4 changes: 2 additions & 2 deletions lang/R/inst/extdata/airr-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ InformationProvider:
IEDB_RECEPTOR:
request:
url:
- "https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}"
- "https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}"
- 'https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}'
- 'https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}'
response: application/json
IEDB_EPITOPE:
request:
Expand Down
6 changes: 3 additions & 3 deletions lang/python/airr/specs/airr-schema-openapi3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ InformationProvider:
response: text/html
IEDB_RECEPTOR:
request:
url:
- "https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}"
- "https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}"
url:
- 'https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}'
- 'https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}'
response: application/json
IEDB_EPITOPE:
request:
Expand Down
4 changes: 2 additions & 2 deletions lang/python/airr/specs/airr-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ InformationProvider:
IEDB_RECEPTOR:
request:
url:
- "https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}"
- "https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}"
- 'https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}'
- 'https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}'
response: application/json
IEDB_EPITOPE:
request:
Expand Down
6 changes: 3 additions & 3 deletions specs/airr-schema-openapi3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ InformationProvider:
response: text/html
IEDB_RECEPTOR:
request:
url:
- "https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}"
- "https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}"
url:
- 'https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}'
- 'https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}'
response: application/json
IEDB_EPITOPE:
request:
Expand Down
4 changes: 2 additions & 2 deletions specs/airr-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ InformationProvider:
IEDB_RECEPTOR:
request:
url:
- "https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}"
- "https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}"
- 'https://query-api.iedb.org/tcr_search?receptor_group_id=eq.{local_id}'
- 'https://query-api.iedb.org/bcr_search?receptor_group_id=eq.{local_id}'
response: application/json
IEDB_EPITOPE:
request:
Expand Down

0 comments on commit 23b796c

Please sign in to comment.