Skip to content

Commit

Permalink
don't write unique_alias to spreadsheet in prepare
Browse files Browse the repository at this point in the history
  • Loading branch information
apriltuesday committed Aug 2, 2023
1 parent 832aca3 commit 4c0e8d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eva_submission/eload_preparation.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def check_submitted_filenames(self):
f'{", ".join(set(submitted_vcfs).difference(set(spreadsheet_vcfs)))}')
analysis_alias = ''
if len(eva_xls_reader.analysis) == 1:
analysis_alias = self._unique_alias(eva_xls_reader.analysis[0].get('Analysis Alias')) or ''
analysis_alias = eva_xls_reader.analysis[0].get('Analysis Alias') or ''
elif len(eva_xls_reader.analysis) > 1:
self.error("Multiple analyses found, can't add submitted VCF to spreadsheet")
raise ValueError("Multiple analyses found, can't add submitted VCF to spreadsheet")
Expand Down

0 comments on commit 4c0e8d2

Please sign in to comment.