Skip to content

Commit 19c219d

Browse files
authored
Fixes unpack error in convert_fasta_to_sp_embl_txt.py
1 parent 1f50822 commit 19c219d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

protgraph/scripts/convert_fasta_to_sp_embl_txt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def parse_args():
7373
def get_next_fasta_entry(fasta) -> tuple:
7474
""" Generator, returning parsed FASTA-entries """
7575
get_sequence = False # Flag to stop after the sequence was retrieved
76-
sequence, pre, accession, description = ""
76+
sequence, pre, accession, description = "", "", "", ""
7777
for line in fasta:
7878
# Iterate over each line of the FASTA-database
7979
if line.startswith(">"):

0 commit comments

Comments
 (0)