Skip to content

Commit

Permalink
try to fix nf eager install
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Jun 18, 2020
1 parent 68e6498 commit 8953012
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:

jobs:

pipeline:
nextflow:
runs-on: ubuntu-latest
steps:

Expand All @@ -38,23 +38,23 @@ jobs:
with:
auto-update-conda: true

# 3. Install ktmeaton/plague-phylogeography
- name: install ktmeaton/plague-phylogeography
shell: bash -l {0}
run: |
nextflow pull ktmeaton/plague-phylogeography -r ${VER}
conda env create -f ~/.nextflow/assets/ktmeaton/plague-phylogeography/phylo-env.yaml
env:
VER: "master"
ENV: "phylo-env"

# 4. Install nf-core/eager
- name: install nf-core/eager
env:
NF_REV: "7b51863957"
CONDA_ENV: "nf-core-eager-2.2.0dev"
shell: bash -l {0}
run: |
nextflow pull nf-core/eager -r ${VER}
nextflow pull nf-core/eager -r ${NF_REV}
conda env create -f ~/.nextflow/assets/nf-core/eager/environment.yml
conda install -n nf-core-eager-2.2.0dev -c anaconda graphviz
conda install -n ${CONDA_ENV} -c anaconda graphviz
# 3. Install ktmeaton/plague-phylogeography
- name: install ktmeaton/plague-phylogeography
env:
VER: "7b51863957"
ENV: "nf-core-eager-2.2.0dev"
NF_REV: "master"
CONDA_ENV: "phylo-env"
shell: bash -l {0}
run: |
nextflow pull ktmeaton/plague-phylogeography -r ${NF_REV}
conda env create -f ~/.nextflow/assets/ktmeaton/plague-phylogeography/phylo-env.yaml

0 comments on commit 8953012

Please sign in to comment.