Skip to content

Commit

Permalink
Black linting for python script
Browse files Browse the repository at this point in the history
  • Loading branch information
DLBPointon committed Nov 16, 2023
1 parent 915b567 commit e09bd87
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 @@ -8,7 +8,9 @@


def main():
parser = argparse.ArgumentParser(description="Create an organellar contamination report text file based on the organellar contamination BED file")
parser = argparse.ArgumentParser(
description="Create an organellar contamination report text file based on the organellar contamination BED file"
)
parser.add_argument("--input", type=str, help="Input BED file", default=None)
parser.add_argument("--output", type=str, help="Output recommendation", default=None)
parser.add_argument("-v", action="version", version="1.0")
Expand Down

0 comments on commit e09bd87

Please sign in to comment.