Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ruokolt committed Feb 21, 2024
1 parent cfb5ba3 commit ea68a0f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,9 @@ def submit_dir(args, job_name):
cmd = shlex.split(cmd)
subprocess.run(cmd)

# Log
print(f"Results will be written to folder: {output_dir}\n")


def create_sbatch_script_for_single_file(
input_file, job_name, mem, cpus_per_task, time, email, tmp_dir
Expand Down Expand Up @@ -297,6 +300,9 @@ def submit_file(args, job_name):
cmd = shlex.split(cmd)
subprocess.run(cmd)

# Log
print(f"Results will be written to folder: {output_dir}\n")


def check_language(language):
supported_languages = list(settings.supported_languages.keys())
Expand Down

0 comments on commit ea68a0f

Please sign in to comment.