Skip to content
Snippets Groups Projects
Commit 593b926e authored by Michael Sandholzer's avatar Michael Sandholzer
Browse files

modified: read_sequencer_package/read_in_FASTA.py

parent 88f1044c
No related branches found
No related tags found
1 merge request!5license file added with MIT license new file: LICENSE.txt
......@@ -16,7 +16,7 @@ def read_in_fasta(file_path):
f = open(file_path)
for line in f:
if line[0] == '>':
defline = line.srtip()
defline = line.strip()
defline = defline.replace('>', '')
else:
if defline not in sequences:
......
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