Skip to content

Commit

Permalink
Fix bug in writting dict
Browse files Browse the repository at this point in the history
  • Loading branch information
jpjarnoux committed Oct 13, 2023
1 parent 9b80ceb commit 49d3cdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.192
1.2.193
2 changes: 1 addition & 1 deletion ppanggolin/context/searchGeneContext.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def search_gene_context_in_pangenome(pangenome: Pangenome, output: Path, tmpdir:

project_and_write_partition(seqid2fam, seq_set, output)
write_gene_to_gene_family(seqid2fam, seq_set, output)
fam2seq = {gf.ID: seqid for seqid, gf in seqid2fam}
fam2seq = {gf.ID: seqid for seqid, gf in seqid2fam.items()}
for pan_family in seqid2fam.values():
families_of_interest.add(pan_family)

Expand Down

0 comments on commit 49d3cdf

Please sign in to comment.