diff --git a/src/submit.py b/src/submit.py index e120681..8c226a3 100644 --- a/src/submit.py +++ b/src/submit.py @@ -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 @@ -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())