Skip to content

Commit

Permalink
Merge branch 'dev' of https://github.com/dieterich-lab/scimodom into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
eboileau committed May 28, 2024
2 parents 3e9c2dd + 99454a2 commit 704a5d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/scimodom/api/bam_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ def post_bam_file(dataset_id: str, name: str):
@cross_origin(supports_credentials=True)
def get_bam_file(dataset_id: str, name: str):
try:
dataset, error, status = get_validate_dataset(dataset_id)
bam_file, error, status = get_valid_bam_file(dataset, name)
dataset = get_validate_dataset(dataset_id)
bam_file = get_valid_bam_file(dataset, name)
except ClientResponseException as e:
return e.response_tupel

Expand Down

0 comments on commit 704a5d4

Please sign in to comment.