Skip to content

Commit 5ef6574

Browse files
committed
Merge branch 'master' into dev
2 parents 36d1443 + 377542e commit 5ef6574

File tree

8 files changed

+699
-549
lines changed

8 files changed

+699
-549
lines changed

.github/pull_request_template.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Changes:
2+
- ...
3+
4+
5+
## TODO:
6+
- [ ] Version of pepdbagent updated in `__version__.py` file
7+
- [ ] Changelog updated

bedhost/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.10.2"
1+
__version__ = "0.10.3"

bedhost/routers/bedset_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ async def get_trackDb_file_bedset(bedset_id: str):
195195

196196

197197
@router.post(
198-
"/create/",
198+
"/create",
199199
description="Create a new bedset by providing registry path to the PEPhub project",
200200
)
201201
async def create_bedset(bedset: CreateBEDsetRequest):

deployment/config/api.bedbase.org.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ database:
99
port: 5432
1010
password: $POSTGRES_PASSWORD
1111
user: $POSTGRES_USER
12-
database: bedbase2
12+
database: bedbase
1313
qdrant:
1414
host: $QDRANT_HOST
1515
port: 6333
@@ -32,7 +32,8 @@ access_methods:
3232
http:
3333
type: "https"
3434
description: HTTP compatible path
35-
prefix: https://data2.bedbase.org/
35+
# prefix: https://data2.bedbase.org/
36+
prefix: https://api.bedbase.org/v1/files/
3637
s3:
3738
type: "s3"
3839
description: S3 compatible path

requirements/requirements-all.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# bbconf @ git+https://github.com/databio/bbconf.git@dev#egg=bbconf
2-
bbconf>=0.11.0
2+
bbconf>=0.11.2
33
fastapi>=0.103.0
44
logmuse>=0.2.7
55
markdown

ui/bedbase-types.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ export interface paths {
691691
patch?: never;
692692
trace?: never;
693693
};
694-
"/v1/bedset/create/": {
694+
"/v1/bedset/create": {
695695
parameters: {
696696
query?: never;
697697
header?: never;

0 commit comments

Comments
 (0)