"examples/vscode:/vscode.git/clone" did not exist on "d8b64558e12cb95a9be0fab2206649982f39ff44"
Commit ddd1d79f authored by Gustaf Ahdritz's avatar Gustaf Ahdritz
Browse files

Fix .a3m parsing bug

parent 3927776d
......@@ -60,6 +60,8 @@ def parse_fasta(fasta_string: str) -> Tuple[Sequence[str], Sequence[str]]:
descriptions.append(line[1:]) # Remove the '>' at the beginning.
sequences.append("")
continue
elif line.startswith("#"):
continue
elif not line:
continue # Skip blank lines.
sequences[index] += line
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment