Skip to content

Commit

Permalink
Create submit_dist.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
colbyford committed Dec 6, 2024
1 parent b8583ac commit bdd4a45
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions submit/multiple/submit_dist.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

export input_csv=./folding_jobs.csv

while IFS="," read -r input_dir
do
echo "Submitting Input: $input_dir"
echo ""

JOBID=$(sbatch submit_iter.sh $input_dir)
echo $JOBID

done < <(tail -n +1 $input_csv)

0 comments on commit bdd4a45

Please sign in to comment.