-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_all_poly.sh
executable file
·61 lines (56 loc) · 1.66 KB
/
run_all_poly.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
# Polymorphic evolutionary simulations: N=100; random and Hamming fitness
# assignments; L = 20, 30, 40; muL = 0.01, 0.1, 1
# mul = 1
nohup python scripts/run_evolution_polymorphic.py \
--executable "./bazel-bin/src/evolution/nav_rna" \
--sources 20 \
--targets 10 \
--targets_per_run 3 \
--lengths 20 30 40 \
--population_size 100 \
--mul 1 \
--generations 20000 \
--fitness_measures random hamming \
--parallel_level 1 \
--source_fitness "random" \
--outpath_root \
"data/raw_output/rna_poly_mul_1" \
--neutral_mutations \
> nohup_mul_1.out &
# mul = 0.1
nohup python scripts/run_evolution_polymorphic.py \
--executable "./bazel-bin/src/evolution/nav_rna" \
--sources 20 \
--targets 10 \
--targets_per_run 3 \
--lengths 20 30 40 \
--population_size 100 \
--mul 0.1 \
--generations 20000 \
--fitness_measures random hamming \
--parallel_level 1 \
--source_fitness "random" \
--outpath_root \
"data/raw_output/rna_poly_mul_01" \
--neutral_mutations \
> nohup_mul_01.out &
# mul = 0.01
nohup python scripts/run_evolution_polymorphic.py \
--executable "./bazel-bin/src/evolution/nav_rna" \
--sources 20 \
--targets 10 \
--targets_per_run 3 \
--lengths 20 30 40 \
--population_size 100 \
--mul 0.01 \
--generations 20000 \
--fitness_measures random hamming \
--parallel_level 1 \
--source_fitness "random" \
--outpath_root \
"data/raw_output/rna_poly_mul_001" \
--neutral_mutations \
> nohup_mul_001.out &
wait
# EOF