Skip to content

Commit

Permalink
Update GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
emi80 committed Jun 19, 2024
1 parent 47ab4f2 commit 09d4e01
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
pipeline-test:
name: Pipeline tests
runs-on: ubuntu-latest
needs: workflow-test

needs: [module-test, workflow-test]
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -50,7 +50,6 @@ jobs:
workflow-test:
name: Workflow tests
runs-on: ubuntu-latest
needs: module-test

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion modules/inferExp/rseqc/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ params.rseqcVersion = '2.6.4--py27hf8a1672_2'
params.ucscVersion = '447--h2a80c09_1'
params.gtfToGenePredContainer = "${params.containerRepo}/ucsc-gtftogenepred:${params.ucscVersion}"
params.genePredContainer = "${params.containerRepo}/ucsc-genepredtobed:${params.ucscVersion}"
params.rseqcContainer = "${params.containerRepo}/rseqc:${params.rseqcVersion}"
params.rseqcContainer = "public.ecr.aws/biocontainers/rseqc:${params.rseqcVersion}"
params.inferExpThreshold = '0.8'

process gtfToGenePred {
Expand Down
8 changes: 4 additions & 4 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ manifest.mainScript = 'grape-pipeline.nf'

// small input dataset for testing
params {
index = "$baseDir/test-index.txt"
genome = "$baseDir/data/genome.fa"
annotation = "$baseDir/data/annotation.gtf"
index = "$baseDir/test-index.txt"
genome = "$baseDir/data/genome.fa"
annotation = "$baseDir/data/annotation.gtf"
}

params.containerRepo = "public.ecr.aws/biocontainers"
params.containerRepo = "quay.io/biocontainers"

// Docker is disabled by default and uses the following options when activated
docker {
Expand Down

0 comments on commit 09d4e01

Please sign in to comment.