From 9c8fb4c877a01cb49a3bd4429a0d97e84c4dafcf Mon Sep 17 00:00:00 2001 From: AnnaRehm Date: Mon, 26 Apr 2021 10:43:03 +0200 Subject: [PATCH] Fix typo feature_annotation_score. #32 --- bakta/features/signal_peptides.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bakta/features/signal_peptides.py b/bakta/features/signal_peptides.py index 401cc8ca..f03039ca 100644 --- a/bakta/features/signal_peptides.py +++ b/bakta/features/signal_peptides.py @@ -47,7 +47,7 @@ def execute_deepsig(orfs, orf_fasta_path): sig_pep['type'] = bc.FEATURE_SIGNAL_PEPTIDE sig_pep['start'] = start_nucleotides sig_pep['stop'] = stop_nucleotides - sig_pep['feature__annotation_score'] = feature_annotation_score + sig_pep['feature_annotation_score'] = feature_annotation_score if (bc.FEATURE_SIGNAL_PEPTIDE not in orf): orf[bc.FEATURE_SIGNAL_PEPTIDE]={} orf[bc.FEATURE_SIGNAL_PEPTIDE]=sig_pep