Skip to content

Commit

Permalink
Fix #1013.
Browse files Browse the repository at this point in the history
  • Loading branch information
flekschas committed May 2, 2016
1 parent 1260a8d commit 9d6ccbc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions refinery/analysis_manager/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,11 @@ def run_analysis(analysis_uuid):
galaxy_import.delete()
galaxy_export.delete()

# Update file count and file size of the corresponding data set
analysis.data_set.file_count = analysis.data_set.get_file_count()
analysis.data_set.file_size = analysis.data_set.get_file_size()
analysis.data_set.save()


def import_analysis_in_galaxy(ret_list, library_id, connection):
"""Take workflow configuration and import files into galaxy
Expand Down

0 comments on commit 9d6ccbc

Please sign in to comment.