about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--scripts/from_genbank_to_fasta_and_yaml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/from_genbank_to_fasta_and_yaml.py b/scripts/from_genbank_to_fasta_and_yaml.py
index 7e7c089..91562d0 100644
--- a/scripts/from_genbank_to_fasta_and_yaml.py
+++ b/scripts/from_genbank_to_fasta_and_yaml.py
@@ -213,7 +213,7 @@ if not os.path.exists(dir_fasta_and_yaml_today):
 
             #Remove technology key if empty!
             if (info_for_yaml_dict['technology']=={}):
-                del info_for_yaml_dict['key']
+                del info_for_yaml_dict['technology']
 
             with open(os.path.join(dir_fasta_and_yaml_today, '{}.fasta'.format(accession_version)), 'w') as fw:
                 fw.write('>{}\n{}'.format(accession_version, GBSeq_sequence.text.upper()))