Skip to content

Commit

Permalink
fix bug preventing update of final sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
dorbarker committed Jun 3, 2019
1 parent b11ea66 commit 6703bbe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fsac/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.1'
__version__ = '0.2.2'
6 changes: 6 additions & 0 deletions fsac/update.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,12 @@ def get_known_alleles(alleles_fasta: Path) -> Dict[str, str]:

current_sequence.append(current_line)

else:

sequence = ''.join(current_sequence)

known_alleles[sequence] = current_header

return known_alleles


Expand Down

0 comments on commit 6703bbe

Please sign in to comment.