Skip to content

Commit

Permalink
Again trying to fix liting and testing
Browse files Browse the repository at this point in the history
  • Loading branch information
luissian committed Jan 22, 2024
1 parent 917df0a commit e599433
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
run: pip install .

- name: test analyze schema
run: taranis analyze-schema -i $script_dir/MLST_listeria -o analyze_schema_test -cpus 1
run: taranis analyze-schema -i $script_dir/MLST_listeria -o analyze_schema_test --cpus 1
2 changes: 1 addition & 1 deletion taranis/analyze_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def check_allele_quality(self, prokka_annotation: dict) -> OrderedDict:
a_quality[rec_id]["reason"] = "Duplicate allele"
if self.remove_duplicated:
bad_quality_record.append(rec_id)
# check if sequence is a sub allele
# check if sequence is a sub allele
for rec_id, seq_value in allele_seq.items():
unique_seq.remove(seq_value)
if seq_value in unique_seq:
Expand Down

0 comments on commit e599433

Please sign in to comment.