Skip to content

Commit

Permalink
Fix fluviewer installation in consistency check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika committed Jul 10, 2024
1 parent 4897e7e commit c9a19df
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 6 deletions.
18 changes: 18 additions & 0 deletions .github/environments/fluviewer-bccdc-phl.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: fluviewer-bccdc-phl
channels:
- bioconda
- conda-forge
- defaults
dependencies:
- bbmap=39.01
- bcftools=1.17
- blast=2.14.1
- bwa=0.7.17
- samtools=1.17
- spades=4.0.0
- clustalw=2.1
- freebayes=1.3.6
- python=3
- pip
- pandas=2.0.3
- seaborn=0.12.2
20 changes: 20 additions & 0 deletions .github/environments/fluviewer-kkuchinski.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: fluviewer-kkuchinski
channels:
- bioconda
- conda-forge
- defaults
dependencies:
- bbmap=39.01
- bcftools=1.17
- blast=2.14.1
- bwa=0.7.17
- samtools=1.17
- spades=3.15.3
- clustalw=2.1
- freebayes=1.3.6
- python=3
- pip
- pandas=2.0.3
- seaborn=0.12.2
- pip:
- FluViewer==0.1.11
2 changes: 1 addition & 1 deletion .github/scripts/install_fluviewer_bccdc-phl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source ${HOME}/.bashrc

eval "$(conda shell.bash hook)"

conda env create -f environment.yaml -n fluviewer-bccdc-phl
conda env create -f .github/environments/fluviewer-bccdc-phl.yml -n fluviewer-bccdc-phl

conda activate fluviewer-bccdc-phl

Expand Down
6 changes: 1 addition & 5 deletions .github/scripts/install_fluviewer_kkuchinski.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,4 @@ eval "$(conda shell.bash hook)"

fluviewer_version="0.1.11"

conda env create -f environment.yaml -n fluviewer-kkuchinski

conda activate fluviewer-kkuchinski

pip install fluviewer==${fluviewer_version}
conda env create -f .github/environments/fluviewer-kkuchinski.yml -n fluviewer-kkuchinski

0 comments on commit c9a19df

Please sign in to comment.