Skip to content

Commit

Permalink
Ensure that problematic amino acid identification works for pVACsplice
Browse files Browse the repository at this point in the history
  • Loading branch information
susannasiebert committed Apr 16, 2024
1 parent 4630954 commit 475ee12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pvactools/lib/identify_problematic_amino_acids.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def execute(self):
writer = csv.DictWriter(output_fh, delimiter = "\t", fieldnames=reader.fieldnames, extrasaction='ignore', restval='NA')
writer.writeheader()
for line in reader:
if self.file_type == 'pVACbind' or self.file_type == 'pVACfuse':
if self.file_type == 'pVACbind' or self.file_type == 'pVACfuse' or self.file_type == 'pVACsplice':
sequence = line['Epitope Seq']
else:
sequence = line['MT Epitope Seq']
Expand Down

0 comments on commit 475ee12

Please sign in to comment.