We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4ea600 commit 6959e8cCopy full SHA for 6959e8c
newmap/fasta.py
@@ -56,8 +56,8 @@ def sequence_segments(
56
bytes(working_sequence_buffer))
57
58
# Get the new reference sequence name
59
- current_sequence_id = \
60
- fasta_line.split()[0][1:] # NB: remove leading '>'
+ # NB: remove leading '>'
+ current_sequence_id = fasta_line.split()[0][1:] # type: ignore
61
# Reset the working sequence buffer
62
working_sequence_buffer = bytearray()
63
0 commit comments