File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 1717from dcd_mapping .transcripts import select_transcript
1818from dcd_mapping .vrs_map import vrs_map
1919
20- router = APIRouter (prefix = "/api/v1" , tags = ["mappings" ], responses = {404 : {"description" : "Not found" }})
20+ router = APIRouter (
21+ prefix = "/api/v1" , tags = ["mappings" ], responses = {404 : {"description" : "Not found" }}
22+ )
23+
2124
2225@router .post (path = "/map/{urn}" , status_code = 200 , response_model = ScoresetMapping )
2326async def map_scoreset (urn : str ) -> ScoresetMapping :
@@ -38,7 +41,7 @@ async def map_scoreset(urn: str) -> ScoresetMapping:
3841
3942 raw_metadata = get_raw_scoreset_metadata (urn )
4043 # TODO change vrs map back to always use only the preferred layer
41- #preferred_layers = {mapping.annotation_layer for mapping in vrs_results}
44+ # preferred_layers = {mapping.annotation_layer for mapping in vrs_results}
4245 preferred_layers = {
4346 _set_scoreset_layer (urn , vrs_results ),
4447 }
You can’t perform that action at this time.
0 commit comments