Skip to content

Commit 00cbb72

Browse files
authored
Merge pull request #29 from daisybio/dependency_migration
fix for alternativeSplicing/getTranscriptEvents exception
2 parents fa7418d + 9838190 commit 00cbb72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/controllers/alternativeSplicing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def get_transcript_events(enst_number):
2727

2828
if len(interaction_result) > 0:
2929
# Serialize the data for the response depending on parameter all
30-
return models.AlternativeSplicingEventTranscripts(many=True).dump(interaction_result)
30+
return models.AlternativeSplicingEventsTranscriptsSchema(many=True).dump(interaction_result)
3131
else:
3232
return Response("{"
3333
"\"detail\": \"No event types with given parameters found!\","

0 commit comments

Comments
 (0)