Skip to content

Commit

Permalink
Merge pull request #3 from RIVM-bioinformatics/fix_envs
Browse files Browse the repository at this point in the history
deps: split deps over two envs
  • Loading branch information
boasvdp authored Dec 7, 2023
2 parents 6ed34e6 + ee6cf89 commit 302cd15
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/skiml_cluster/workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ rule make_tree:
output:
OUTPUT_DIR + "/tree.nwk",
conda:
"envs/main.yaml"
"envs/vk.yaml"
shell:
"""
vk phylo tree upgma {input} > {output}
Expand All @@ -91,7 +91,7 @@ rule make_aln:
output:
OUTPUT_DIR + "/vcf_snp.aln.fasta",
conda:
"envs/main.yaml"
"envs/vk.yaml"
shell:
"""
vk phylo fasta {input} > {output}
Expand Down
4 changes: 2 additions & 2 deletions src/skiml_cluster/workflow/envs/main.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
channels:
- bioconda
- conda-forge
- nodefaults
dependencies:
- vcfkit==0.2.9
- snp-dists==0.8.2
- vcftools==0.1.16
- python>=3.7
- muscle<5.1
- samtools
7 changes: 7 additions & 0 deletions src/skiml_cluster/workflow/envs/vk.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
channels:
- bioconda
- conda-forge
- nodefaults
dependencies:
- vcfkit==0.2.9
- muscle<5.1

0 comments on commit 302cd15

Please sign in to comment.