Skip to content

Commit

Permalink
rearrange to optimze eager install
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Jun 17, 2020
1 parent 656a19d commit 299b0fb
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions .github/workflows/sra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,32 +34,27 @@ jobs:
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
# 3. Pull the EAGER pipeline
- name: pull eager
shell: bash -l {0}
run: |
nextflow pull nf-core/eager -r dev
# 4. Setup the conda environment EAGER
- name: setup conda eager-env
uses: goanpeca/setup-miniconda@v1
with:
environment-file: ~/.nextflow/assets/nf-core/eager/environment.yml

# 5. Setup the conda environment phylo-env
# 3. Setup the conda environment phylo-env
- name: setup conda phylo-env
uses: goanpeca/setup-miniconda@v1
with:
activate-environment: phylo-env
environment-file: phylo-env.yaml
auto-activate-base: false

# Test the SRA EAGER Pipeline
- name: sra pipeline
# 4. Pull the EAGER pipeline
- name: pull eager
shell: bash -l {0}
run: |
nextflow pull nf-core/eager -r dev
conda env create -f ~/.nextflow/assets/nf-core/eager/environment.yml
cp ~/.nextflow/assets/nf-core/eager/assets/multiqc_config.yaml \
./multiqc_config_custom.yaml;
# Test the SRA EAGER Pipeline
- name: sra pipeline
shell: bash -l {0}
run: |
nextflow run pipeline.nf \
--sqlite results/ncbimeta_db/update/latest/output/database/yersinia_pestis_db.sqlite \
--outdir test \
Expand Down

0 comments on commit 299b0fb

Please sign in to comment.