Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Features/configure response #62

Merged
merged 24 commits into from
Oct 31, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixes
  • Loading branch information
gsfk committed Oct 27, 2023
commit 9e55c1b7ac0a0dcedd38c284ef2365611ad09b8c
3 changes: 2 additions & 1 deletion bento_beacon/config_files/config.py
Original file line number Diff line number Diff line change
@@ -106,7 +106,8 @@ class Config:
"/entry_types": {"entityType": "entryType", "schema": "https://github.com/ga4gh-beacon/beacon-v2/blob/main/framework/json/responses/beaconEntryTypesResponse.json"},
"/filtering_terms": {"entityType": "filteringTerm", "schema": "https://github.com/ga4gh-beacon/beacon-v2/blob/main/framework/json/responses/beaconFilteringTermsResponse.json"},
"/info": {"entityType": "info", "schema": "https://github.com/ga4gh-beacon/beacon-v2/blob/main/framework/json/responses/beaconInfoResponse.json"},
"/map": {"entityType": "map", "schema": "https://github.com/ga4gh-beacon/beacon-v2/blob/main/framework/json/responses/beaconMapResponse.json"}
"/map": {"entityType": "map", "schema": "https://github.com/ga4gh-beacon/beacon-v2/blob/main/framework/json/responses/beaconMapResponse.json"},
"/overview": {}
}
# -------------------
# katsu
3 changes: 1 addition & 2 deletions bento_beacon/endpoints/biosamples.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
from flask import Blueprint,
from flask import Blueprint
from ..utils.exceptions import NotImplemented


biosamples = Blueprint("biosamples", __name__)



@biosamples.route("/biosamples", methods=['GET', 'POST'])
def get_biosamples(): # TODO: authz
raise NotImplemented()