Skip to content

Commit

Permalink
Merge pull request #33 from snipe-bio/remove_referenceQC_from_roi
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-eyes authored Oct 27, 2024
2 parents 6db43d5 + ea7c86d commit 69b8ca3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/snipe/cli/cli_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -1143,9 +1143,9 @@ def detect_delimiter(file_path):
for result in results:
report.write(f"Experiment ID: {result['exp_name']}\n")
report.write("-"*50 + "\n")
report.write("Merged Signatures:\n")
report.write("Merged Signatures:")
if result['merged_signatures']:
report.write(" - " + "\n - ".join(result['merged_signatures']) + "\n")
report.write(" - ".join(result['merged_signatures']) + "\n")
if result['skipped_signatures']:
report.write(f"Skipped Signatures (Due to Duplication): {' -'.join(result['skipped_signatures'])}\n")
report.write(f"Output File: {result['output_file'] if result['output_file'] else 'N/A'}\n")
Expand Down

0 comments on commit 69b8ca3

Please sign in to comment.