Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

proposed production-level config for humans #97

Merged
merged 10 commits into from
Oct 10, 2023
36 changes: 0 additions & 36 deletions workflows/config/snakemake/production-config.yml

This file was deleted.

55 changes: 55 additions & 0 deletions workflows/config/snakemake/production_config_HomSap.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
"population_id": [0] # (what is this a setting for?)
chriscrsmith marked this conversation as resolved.
Show resolved Hide resolved

# snakemake settings
"seed": 12345
"replicates": 3
"output_dir": "results"

# species-specific settings
"species": "HomSap"
"demo_models": [
{"id":"Constant",
"num_samples_per_population": [100],
},
{"id":"OutOfAfrica_3G09",
"num_samples_per_population": [100,100,100],
}
{"id":"OutOfAfricaArchaicAdmixture_5R19",
"num_samples_per_population": [100,100,100],
}
]
"genetic_map": "HapMapII_GRCh37"
chriscrsmith marked this conversation as resolved.
Show resolved Hide resolved
"chrm_list": "chr1, chr2, chr3, chr4, chr5, chr6, chr7, chr8, chr9, chr10, chr11, chr12, chr13, chr14, chr15, chr16, chr17, chr18, chr19, chr20, chr21"
"dfe_list": ["none", "Gamma_H17"]
"annotation_list": ["all_sites", "ensembl_havana_104_exons"]
"mask_file": "workflows/masks/HapmapII_GRCh37.mask.bed"
chriscrsmith marked this conversation as resolved.
Show resolved Hide resolved
"stairway_annot_mask" : "" # set this or any of the below to 'none' to skip annot masking
"msmc_annot_mask" : ""
"gone_annot_mask" : ""
"smcpp_annot_mask" : ""

# slim settings
"slim_scaling_factor": 1
"slim_burn_in": 10

# n(t) specific configs
"methods" : ["stairwayplot", "gone", "smcpp", "msmc"]
"num_sampled_genomes_msmc" : [6]
"num_sampled_genomes_per_replicate": [2]
chriscrsmith marked this conversation as resolved.
Show resolved Hide resolved
"num_msmc_iterations" : 20
"gone_phase" : 1 # 0 for pseudohaploid, 1 for phased, 2 for unknown phase
"gone_max_snps" : 50000 # default=50000
"gone_threads" : 8
"gone_num_gens" : 2000 # default=2000
"gone_num_bins" : 400 # default=400


# exe paths
"poly_dfe_exec": "ext/polyDFE/polyDFE-2.0-linux-64-bit"
"dfe_alpha_exec": "ext/dfe-alpha-release-2.16/est_dfe"
"dfe_alpha_data_path_1": "ext/dfe-alpha-release-2.16/data"
"dfe_alpha_data_path_2": "three-epoch"
"grapes_exec": "ext/grapes/multi_grapes"
"msmc_exec" : "ext/msmc2/build/release/msmc2"
"stairwayplot_code" : "ext/stairwayplot/swarmops.jar"
"gone_code" : "ext/GONE/Linux"