File tree Expand file tree Collapse file tree 5 files changed +7
-13
lines changed
Expand file tree Collapse file tree 5 files changed +7
-13
lines changed Original file line number Diff line number Diff line change 1- __version__ = "0.8 .0"
1+ __version__ = "0.9 .0"
Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ async def get_tokens(
485485
486486
487487@router .get (
488- "/{bed_id}/reference_validations " ,
488+ "/{bed_id}/genome-stats " ,
489489 summary = "Get reference genome validation results" ,
490490 response_model = RefGenValidReturnModel ,
491491)
Original file line number Diff line number Diff line change @@ -216,14 +216,11 @@ async def create_bedset(bedset: CreateBEDsetRequest):
216216 for bedfile_id in project .samples
217217 ]
218218
219- try :
220- bbagent .bedset .get (identifier = project .name )
219+ if bbagent .bedset .exists (identifier = project .name ):
221220 raise HTTPException (
222221 status_code = 409 ,
223222 detail = f"BEDset with identifier { project .name } already exists" ,
224223 )
225- except BedSetNotFoundError as _ :
226- pass
227224
228225 try :
229226 bbagent .bedset .create (
Original file line number Diff line number Diff line change 1- bbconf @ git+https://github.com/databio/bbconf.git@dev#egg=bbconf
2- # bbconf>=0.9.1
1+ # bbconf @ git+https://github.com/databio/bbconf.git@dev#egg=bbconf
2+ bbconf>=0.10.0
33fastapi>=0.103.0
44logmuse>=0.2.7
55markdown
99yacman>=0.9.2
1010pephubclient>=0.4.1
1111psycopg[binary,pool]
12- python-multipart>=0.0.9
12+ python-multipart>=0.0.9
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ type Props = {
1313} ;
1414
1515const API_BASE = import . meta. env . VITE_API_BASE || '' ;
16- const API_ENDPOINT = `${ API_BASE } /bedset/create/ ` ;
16+ const API_ENDPOINT = `${ API_BASE } /bedset/create` ;
1717
1818export const generateBEDsetCreationDescription = ( ) => {
1919 const text = `
@@ -125,9 +125,6 @@ export const CreateBedSetModal = (props: Props) => {
125125
126126 </ div >
127127
128- </ Modal . Body >
129- < Modal . Body className = "position-relative pt-2 " >
130-
131128 </ Modal . Body >
132129 </ Modal >
133130 ) ;
You can’t perform that action at this time.
0 commit comments