Skip to content

Commit

Permalink
Handle CI for demux step with singularity
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmero committed Feb 26, 2024
1 parent 1ea7c9a commit 7d8d919
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
with:
version: "${{ matrix.NXF_VER }}"

- name: Install Singularity
uses: singularityhub/install-singularity@main

- name: Run pipeline with test data
run: |
cd ${GITHUB_WORKSPACE}
Expand Down
3 changes: 2 additions & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ params {

index_template_file = "$projectDir/.test/data/indexes.txt"

demultiplex = false
demultiplex = true

//number of bases to search for index 1 at start of read
bases_num_r1 = 12
Expand Down Expand Up @@ -70,6 +70,7 @@ profiles {
}
test {
conda.enabled = true
singularity.enabled = true
stubRun = true
cleanup = false
process.memory = '1 GB'
Expand Down

0 comments on commit 7d8d919

Please sign in to comment.