Skip to content

Commit

Permalink
Add missing quotation
Browse files Browse the repository at this point in the history
  • Loading branch information
bkille committed Jun 28, 2024
1 parent 1b7cedc commit 40770ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lemur
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ class LemurRunEnv():
criteria has been met, stopping once it has.'''
n_reads = len(set(self.P_rgs_df.reset_index()["Read_ID"]))
if n_reads == 0:
self.log(f"No alignments available for EM algorithm.\nVerify SAM file, {self.self.args.output}P_rgs_df_raw.tsv, and consider lowering --min-aln-len-ratio or --fidelity flags., logging.ERROR)
self.log(f"No alignments available for EM algorithm.\nVerify SAM file, {self.self.args.output}P_rgs_df_raw.tsv, and consider lowering --min-aln-len-ratio or --fidelity flags.", logging.ERROR)
exit(1)
else:
self.low_abundance_threshold = 1. / n_reads
Expand Down

0 comments on commit 40770ef

Please sign in to comment.