Skip to content

Commit

Permalink
Merge pull request #57 from apriltuesday/fix-upgrade-2
Browse files Browse the repository at this point in the history
Fix generate_csv_mappings
  • Loading branch information
apriltuesday authored Jul 15, 2021
2 parents 96c592b + 2466707 commit 463f06b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eva_submission/eload_ingestion.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def _generate_csv_mappings_to_ingest(self):
for vcf_file in analysis_data['vcf_files']:
writer.writerow([vcf_file, assembly_accession, fasta, report, analysis_accession, db_name])
else:
self.warning(f"File {vcf_file} not found")
self.warning(f"VCF files for analysis {analysis_alias} not found")
return vcf_files_to_ingest

def run_accession_workflow(self, vcf_files_to_ingest):
Expand Down
2 changes: 1 addition & 1 deletion eva_submission/eload_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def _generate_csv_mappings(self):
for vcf_file in analysis_data['vcf_files']:
writer.writerow([vcf_file, fasta, report])
else:
self.warning(f"File {vcf_file} not found")
self.warning(f"VCF files for analysis {analysis_alias} not found")
return vcf_files_mapping_csv

def _run_validation_workflow(self):
Expand Down

0 comments on commit 463f06b

Please sign in to comment.