Skip to content

Commit

Permalink
make deepsea_pca_n_components a config value
Browse files Browse the repository at this point in the history
  • Loading branch information
endast committed Oct 19, 2023
1 parent fb0f1e0 commit a702e31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pipelines/annotations.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ rule deepSea_PCA:
"python",
f"{annotation_python_file}",
"deepsea-pca",
"--n-components 100",
f"--n-components {config['deepsea_pca_n_components']}",
"{input}",
str(anno_dir / "deepSea_pca"/ "pca_matrix"),
str(anno_dir / "deepSea_pca"),
Expand Down
3 changes: 2 additions & 1 deletion pipelines/config/deeprvat_annotation_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ pybedtools_tmp_path : output_dir/annotations/tmp/pybedtools
n_jobs_deepripe : 32
n_cores_merge_absplice : 32
n_cores_absplice : 32
deepsea_pca_pickle_filepath : annotations/deepSea_pca/pca.pkl
deepsea_pca_pickle_filepath : annotations/deepSea_pca/pca.pkl
deepsea_pca_n_components: 100

0 comments on commit a702e31

Please sign in to comment.