Skip to content

Commit

Permalink
added --select W to workflow, see if it will detect whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mataton committed Dec 21, 2023
1 parent 97f5c6e commit f2a626c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,5 @@ jobs:

- name: Ruff
uses: chartboost/ruff-action@v1
with:
args: --select W
2 changes: 1 addition & 1 deletion woltka/align.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def plain_mapper(fh, fmt=None, n=1000):
target = n # target line number at end of current chunk

# parse alignment file
for i, (query, subject) in enumerate(parser(chain(iter(head), fh))):
for i, (query, subject) in enumerate(parser(chain(iter(head), fh))):

# add subject to subject set of the same query Id
if query == this:
Expand Down

0 comments on commit f2a626c

Please sign in to comment.