Skip to content

Commit

Permalink
tox lint
Browse files Browse the repository at this point in the history
  • Loading branch information
yaseminbridges committed Dec 11, 2024
1 parent 7269d91 commit d81b845
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pheval_ai_marrvel/run/prepare_next_flow_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class NextFlowParameters:


def get_next_flow_parameters(
phenopacket_path: Path, testdata_dir: Path, input_dir: Path, output_dir: Path
phenopacket_path: Path, testdata_dir: Path, input_dir: Path, output_dir: Path
):
"""
Get next flow parameters for a sample.
Expand Down Expand Up @@ -83,14 +83,14 @@ def write_commands(commands: List[str], tool_input_commands_dir: Path, testdata_
"""
joined_commands_str = "\n".join(commands)
with open(
f"{tool_input_commands_dir.joinpath(f'{testdata_dir.name}_commands.txt')}", "w"
f"{tool_input_commands_dir.joinpath(f'{testdata_dir.name}_commands.txt')}", "w"
) as commands_file:
commands_file.write(joined_commands_str)
commands_file.close()


def create_nextflow_commands(
tool_input_commands_dir: Path, testdata_dir: Path, input_dir: Path, output_dir: Path
tool_input_commands_dir: Path, testdata_dir: Path, input_dir: Path, output_dir: Path
) -> None:
"""
Create nextflow commands for running AI-MARRVEL with a corpus.
Expand Down

0 comments on commit d81b845

Please sign in to comment.