Skip to content

Commit

Permalink
Fixing bam file download
Browse files Browse the repository at this point in the history
  • Loading branch information
Harald Wilhelmi committed May 28, 2024
1 parent dd93ac1 commit 99454a2
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 99454a2

Please sign in to comment.