Skip to content

Commit

Permalink
Add pipeline running script
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika committed Feb 8, 2024
1 parent d0e3dbe commit 54ce545
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 0 deletions.
Empty file modified .github/scripts/create_art_environment.sh
100644 → 100755
Empty file.
Empty file modified .github/scripts/download_assemblies.sh
100644 → 100755
Empty file.
Empty file modified .github/scripts/install_conda.sh
100644 → 100755
Empty file.
Empty file modified .github/scripts/install_nextflow.sh
100644 → 100755
Empty file.
9 changes: 9 additions & 0 deletions .github/scripts/run_pipeline.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

nextflow run main.nf \
-profile conda \
--cache ${HOME}/.conda/envs \
--fastq_input .github/data/fastq \
--outdir .github/data/test_output \
-with-report .github/data/test_output/nextflow_report.html \
-with-trace .github/data/test_output/nextflow_trace.tsv
Empty file modified .github/scripts/simulate_reads.sh
100644 → 100755
Empty file.
2 changes: 2 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
- name: Install Miniconda
run: bash .github/scripts/install_conda.sh
- name: Install Nextflow
env:
NXF_VER: ${{ matrix.nextflow_version }}
run: bash .github/scripts/install_nextflow.sh
- name: Create ART Read-Simulation Environment
run: bash .github/scripts/create_art_environment.sh
Expand Down

0 comments on commit 54ce545

Please sign in to comment.