-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun_nav_rna_dfs.sh
More file actions
executable file
·44 lines (40 loc) · 1.1 KB
/
run_nav_rna_dfs.sh
File metadata and controls
executable file
·44 lines (40 loc) · 1.1 KB
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
#!/bin/bash
threshold=$1
fitness_measure=$2
outpath=$3
# fRNA neutrals
nohup python scripts/run_evolution_mono.py \
--executable "./bazel-bin/src/landscape/nav_rna_dfs" \
--sources 20 \
--targets 1 \
--n_runs 50 \
--lengths 20 25 30 35 40 \
--population_sizes -1 \
--generations $threshold \
--fitness_measures $2 \
--shape_level 0 \
--parallel_level 0\
--outpath_root \
"data/raw_output/landscape/frna/${threshold}/${outpath}/" \
--norecord_diffs_only \
--neutral_mutations \
--frna
wait
# fRNA, no neutral mutations
nohup python scripts/run_evolution_mono.py \
--executable "./bazel-bin/src/landscape/nav_rna_dfs" \
--sources 20 \
--targets 1 \
--n_runs 50 \
--lengths 20 25 30 35 40 \
--population_sizes -1 \
--generations $threshold \
--fitness_measures $2 \
--shape_level 0 \
--parallel_level 0\
--outpath_root \
"data/raw_output/landscape/frna/${threshold}/${outpath}/" \
--norecord_diffs_only \
--noneutral_mutations \
--frna
# EOF