Skip to content

Commit

Permalink
Corrects issue with writing protein sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
samhorsfield96 committed Oct 14, 2024
1 parent 2f32cec commit 558cff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panaroo_runner/generate_output.py
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ def output_alignment_sequence(node_pair, temp_directory, outdir, shd_arr_tup, OR
# generate protein sequence. If refound, add found protein sequence from find_missing.py
ORF_info = ORF_info_dict[colour][ORF_ID]
if ORF_ID < 0:
protein = Seq(ORF_info[4])
protein = Seq(ORF_info[5])
else:
protein = Seq(shd_arr[0].generate_sequence(ORF_info[0], ORF_info[1], overlap)).translate()

Expand Down

0 comments on commit 558cff8

Please sign in to comment.