-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-Ubuntu.yml
66 lines (56 loc) · 1.76 KB
/
config-Ubuntu.yml
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
62
63
64
65
66
###############################################################################
#
# Config options for the snakemake workflow
#
# AUTHOR: Maciej_Bak
# CONTACT: [email protected]
# CREATED: 15-02-2022
# LICENSE: Apache_2.0
#
###############################################################################
---
### WORKFLOW PARAMETERS ###
# Path to the cloned repository
# (absolute path is required, also: do not use "~" character -
# some HPC clusters evaluate it differently on login & computing nodes)
workflow_repo_path: "/home/runner/work/warlock/warlock"
# Path for the output directory
# (absolute path is required, also: do not use "~" character -
# some HPC clusters evaluate it differently on login & computing nodes)
workflow_analysis_outdir: "/home/runner/work/warlock/warlock/tests/test2/output"
### DEMON PARAMETERS ###
# spatial_structure
demon_log2_deme_carrying_capacity: [1, 2, 3, 4]
# dispersal
demon_migration_type: 0
demon_init_migration_rate: "2e-03"
demon_migration_edge_only: 1
demon_migration_rate_scales_with_K: 1
# mutation_rates
demon_mu_driver_birth: "1e-05"
demon_mu_passenger: 0.001
demon_mu_driver_migration: 0.001
demon_passenger_pop_threshold: -1
# fitness_effects
demon_normal_birth_rate: [0.8, 0.82, 0.84, 0.86, 0.88, 0.9]
demon_baseline_death_rate: 0
demon_s_driver_birth: 0.1
demon_s_passenger: 0
demon_s_driver_migration: 0
demon_max_relative_birth_rate: 10
demon_max_relative_migration_rate: 10
# non_biological_parameters
demon_init_pop: 1
demon_matrix_max: -1
demon_max_pop: 10000
demon_max_time: 86400
demon_max_generations: 2000
demon_seed: 10
demon_write_grid: 0
demon_write_clones_file: 0
demon_write_demes_file: 0
demon_record_matrix: 0
demon_write_phylo: 0
demon_calculate_total_diversity: 0
demon_biopsy_size_per_sample: 100
...