Skip to content

Commit

Permalink
fixing issue #57
Browse files Browse the repository at this point in the history
  • Loading branch information
kirilenkobm committed Apr 26, 2023
1 parent e6efed2 commit 306d6c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/merge_cesar_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,8 @@ def parse_cesar_bdb(arg_input, v=False, exclude_arg=None):
# query, ref and prot sequence headers are explicitly marked
query_headers = [h for h in order if h.endswith("query_exon")]
ref_headers = [h for h in order if h.endswith("reference_exon")]
prot_ids = [h for h in order if "PROT" in h]
codon_ids = [h for h in order if "CODON" in h]
prot_ids = [h for h in order if "| PROT |" in h]
codon_ids = [h for h in order if "| CODON |" in h]

# parse reference exons, quite simple
for header in ref_headers:
Expand Down

0 comments on commit 306d6c7

Please sign in to comment.