Skip to content

Commit

Permalink
Black Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
DLBPointon committed Nov 6, 2023
1 parent 87bc604 commit 1f3d386
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/organelle_contamination_recommendation.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ def main():

# Filters through the list of files that nextflow passes in and ID's the one we want
files_list = args.input
file_for_use = next((file for file in files_list.split() if "assembly.ALL.unfiltered_scaffold_coverage.bed" in file), None)
file_for_use = next(
(file for file in files_list.split() if "assembly.ALL.unfiltered_scaffold_coverage.bed" in file), None
)
if file_for_use is None:
sys.exit(1)

Expand Down

0 comments on commit 1f3d386

Please sign in to comment.