Skip to content

Commit

Permalink
chore(deps): update registry.access.redhat.com/ubi9-minimal docker ta…
Browse files Browse the repository at this point in the history
…g to v9.5-1731604394
  • Loading branch information
Renovate Bot authored and brunopacheco1 committed Nov 20, 2024
1 parent 9baf71a commit 1fd8042
Show file tree
Hide file tree
Showing 3 changed files with 85 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
exit-code: "1"
ignore-unfixed: true
vuln-type: "os,library"
severity: "CRITICAL"
severity: "CRITICAL,HIGH"
env:
TRIVY_SKIP_DB_UPDATE: true
TRIVY_SKIP_JAVA_DB_UPDATE: true
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# SPDX-FileCopyrightText: 2024 PNED G.I.E.
#
# SPDX-License-Identifier: Apache-2.0
FROM registry.access.redhat.com/ubi9-minimal:9.4-1227.1726694542
FROM registry.access.redhat.com/ubi9-minimal:9.5-1731604394
WORKDIR /work/
RUN chown 1001 /work \
&& chmod "g+rwX" /work \
Expand Down
101 changes: 83 additions & 18 deletions _http/beacon.http
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,93 @@
#
# SPDX-License-Identifier: Apache-2.0


## Ontology
POST https://beacon-network-backend-demo.ega-archive.org/beacon-network/v2.0.0/individuals
Content-Type: application/json

{
"meta": {
"apiVersion": "2.0"
},
"query": {
"filters": [
{
"id": "ICD10:J40",
"scope": "individual"
}
],
"requestParameters": [],
"includeResultsetResponses": "HIT",
"pagination": {
"skip": 0,
"limit": 1
},
"testMode": false,
"requestedGranularity": "record"
}
}


### Alphanumeric
POST https://beacon-network-backend-demo.ega-archive.org/beacon-network/v2.0.0/individuals
Content-Type: application/json

{
"meta": {
"apiVersion": "2.0"
},
"query": {
"filters": [
{
"id": "PATO:0000011",
"operator": ">",
"value": "P30Y",
"scope": "individual"
}
],
"requestParameters": [],
"includeResultsetResponses": "HIT",
"pagination": {
"skip": 0,
"limit": 1
},
"testMode": false,
"requestedGranularity": "record"
}
}


### Variants
POST https://beacon-network-backend-demo.ega-archive.org/beacon-network/v2.0.0/individuals
Content-Type: application/json

{
"meta":{
"apiVersion":"2.0"
},
"query":{
"filters":[
{
"id":"UBERON:0005352",
"scope": "individual"
}
],
"includeResultsetResponses":"HIT",
"pagination":{
"skip":0,
"limit":0
},
"testMode":false,
"requestedGranularity":"count"
}
"$schema":"beaconRequestBody.json",
"meta": {
"apiVersion": "2.0",
"requestedSchemas": [
{
"entityType": "genomicVariation",
"schema:": "https://raw.githubusercontent.com/ga4gh-beacon/beacon-v2/main/models/json/beacon-v2-default-model/genomicVariations/defaultSchema.json"
}
]
},
"query": {
"requestParameters": {
"g_variant": {
"referenceName": "NC_000017.11",
"start": [7577120],
"referenceBases": "G",
"alternateBases": "A"
}
}
},
"requestedGranularity": "record",
"pagination": {
"skip": 0,
"limit": 10
}
}

###
Expand Down

0 comments on commit 1fd8042

Please sign in to comment.