Skip to content

Commit

Permalink
Fix unnecessary list conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmig committed Oct 11, 2023
1 parent e7bd491 commit ee70672
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/scripts/report/get_annotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def main():
logging.info("Reading features")
ft = Features(snakemake.input.gb)
with open(snakemake.input.features) as f:
feature_key = list(json.load(f))
feature_key = json.load(f)

logging.info("Reading reference")
reference = str(next(SeqIO.parse(snakemake.input.ref, "fasta")).seq)
Expand Down

0 comments on commit ee70672

Please sign in to comment.