Skip to content

Commit

Permalink
Strip '*' from protein sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
YinHoon committed Sep 20, 2019
1 parent 6efb79f commit fab2b7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wc_model_gen/eukaryote/complexation.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def gen_reactions(self):
else:
codon_id = codon_table[subunit.species_type.id]

protein_seq = subunit.species_type.get_seq(table=codon_id, cds=cds)
protein_seq = subunit.species_type.get_seq(table=codon_id, cds=cds).strip('*')
aa_content = {}
for aa in protein_seq:
aa_id = amino_acid_id_conversion[aa]
Expand Down

0 comments on commit fab2b7a

Please sign in to comment.