From 54dd2bdc4b0de94aea479f7e99504290ba574bcc Mon Sep 17 00:00:00 2001 From: Dima Molodenskiy Date: Wed, 15 Nov 2023 10:56:49 +0100 Subject: [PATCH] Added missing '\' to slurm scripts --- example_3.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/example_3.md b/example_3.md index 3373ff8f..3aa94573 100644 --- a/example_3.md +++ b/example_3.md @@ -61,8 +61,8 @@ run_multimer_jobs.py \ --multimeric_mode=True \ --msa_depth= \ --gradient_msa_depth= \ - --model_names= - --job_index= + --model_names= \ + --job_index= ``` @@ -102,10 +102,10 @@ source activate AlphaPulldown --path_to_mmt=templates/ \ --data_dir=/scratch/AlphaFold_DBs/2.3.2/ \ --save_msa_files=True \ - --output_dir=features\ + --output_dir=features \ --use_precomputed_msas=True \ --max_template_date=2050-01-01 \ - --skip_existing=True + --skip_existing=True \ --job_index=$SLURM_ARRAY_TASK_ID ``` @@ -167,7 +167,7 @@ and then run using: mkdir -p logs count=`grep -c "" description.csv` #count lines even if the last one has no end of line sbatch --array=1-$count create_feature_jobs_SLURM.sh -count=`grep -c "" custom_mode.txt` +count=`grep -c "" custom_mode.txt` #likewise for predictions sbatch --array=1-$count run_multimer_jobs_SLURM.sh ``` After the successful run one can evaluate and visualise the results in a usual manner (see e.g. [Example 2](https://github.com/KosinskiLab/AlphaPulldown/blob/main/example_2.md#3rd-step-evalutaion-and-visualisation)) \ No newline at end of file