Skip to content
Snippets Groups Projects
Commit 350783e0 authored by Bertrand Néron's avatar Bertrand Néron
Browse files

remove '>' from sequence id

parent 960cb6de
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,7 @@ class FastaParser(object): ...@@ -23,7 +23,7 @@ class FastaParser(object):
:type line: string :type line: string
""" """
header = line.split() header = line.split()
self._current_id = header[0] self._current_id = header[0][1:]
self._current_comment = ' '.join(header[1:]) self._current_comment = ' '.join(header[1:])
self._current_sequence = '' self._current_sequence = ''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment