Skip to content

Commit

Permalink
add default chr
Browse files Browse the repository at this point in the history
  • Loading branch information
endast committed Oct 20, 2023
1 parent fb58ed0 commit c5be60d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pipelines/annotations.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ annotation_python_file = (
setup_shell_path = (
deeprvat_parent_path / "deeprvat" / "annotations" / "setup_annotation_workflow.sh"
)
included_chromosomes = config["included_chromosomes"]
included_chromosomes = config.get(
"included_chromosomes", [f"{c}" for c in range(1, 23)] + ["X", "Y"]
)
variant_file = config["variant_file_path"]
pybedtools_tmp_path = Path(config["pybedtools_tmp_path"])
saved_deepripe_models_path = (
Expand Down

0 comments on commit c5be60d

Please sign in to comment.