Skip to content
Snippets Groups Projects
Unverified Commit 021957af authored by Bertrand  NÉRON's avatar Bertrand NÉRON
Browse files

remove print debug

parent 911e2ccf
Branches
No related tags found
No related merge requests found
...@@ -17,7 +17,6 @@ def fasta_iter(fasta_file): ...@@ -17,7 +17,6 @@ def fasta_iter(fasta_file):
# we know they alternate. # we know they alternate.
group = (x[1] for x in groupby(fasta_file , lambda line: line.startswith(">"))) group = (x[1] for x in groupby(fasta_file , lambda line: line.startswith(">")))
for header in group: for header in group:
print header
# drop the ">" # drop the ">"
header = header.next()[1:].strip() header = header.next()[1:].strip()
header = header.split() header = header.split()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment