Skip to content

Commit

Permalink
fix #696
Browse files Browse the repository at this point in the history
  • Loading branch information
SilasK committed Sep 22, 2023
1 parent f55df8e commit d9d71a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/scripts/filter_genes.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ def handle_exception(exc_type, exc_value, exc_traceback):
import pyfastx


faa_iterator = pyfastx.Fastx(snakemake.input.faa, format="fasta")
fna_iterator = pyfastx.Fastx(snakemake.input.fna, format="fasta")
faa_iterator = pyfastx.Fastx(snakemake.input.faa, format="fasta",comment=True)
fna_iterator = pyfastx.Fastx(snakemake.input.fna, format="fasta",comment=True)


with open(snakemake.output.faa, "w") as out_faa, open(
Expand Down

0 comments on commit d9d71a9

Please sign in to comment.