mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
GitHub actions - run nextflow in a docker image
This commit is contained in:
parent
af766a9cc7
commit
acc4eb0054
8 changed files with 60 additions and 8 deletions
3
.github/workflows/fastqc.yml
vendored
3
.github/workflows/fastqc.yml
vendored
|
@ -15,4 +15,5 @@ jobs:
|
|||
- uses: actions/checkout@v1
|
||||
|
||||
# Test the module
|
||||
- run: nextflow run ./tools/fastqc/test/
|
||||
- uses: docker://quay.io/biocontainers/nextflow:19.10.0--hecc5488_0
|
||||
run: nextflow run ./tools/fastqc/test/
|
||||
|
|
3
.github/workflows/samtools_index.yml
vendored
3
.github/workflows/samtools_index.yml
vendored
|
@ -15,4 +15,5 @@ jobs:
|
|||
- uses: actions/checkout@v1
|
||||
|
||||
# Test the module
|
||||
- run: nextflow run ./tools/samtools/index/test/
|
||||
- uses: docker://quay.io/biocontainers/nextflow:19.10.0--hecc5488_0
|
||||
run: nextflow run ./tools/samtools/index/test/
|
||||
|
|
3
.github/workflows/samtools_sort.yml
vendored
3
.github/workflows/samtools_sort.yml
vendored
|
@ -15,4 +15,5 @@ jobs:
|
|||
- uses: actions/checkout@v1
|
||||
|
||||
# Test the module
|
||||
- run: nextflow run ./tools/samtools/sort/test/
|
||||
- uses: docker://quay.io/biocontainers/nextflow:19.10.0--hecc5488_0
|
||||
run: nextflow run ./tools/samtools/sort/test/
|
||||
|
|
3
.github/workflows/trim_galore.yml
vendored
3
.github/workflows/trim_galore.yml
vendored
|
@ -15,4 +15,5 @@ jobs:
|
|||
- uses: actions/checkout@v1
|
||||
|
||||
# Test the module
|
||||
- run: nextflow run ./tools/trim_galore/test/
|
||||
- uses: docker://quay.io/biocontainers/nextflow:19.10.0--hecc5488_0
|
||||
run: nextflow run ./tools/trim_galore/test/
|
||||
|
|
|
@ -1 +1,13 @@
|
|||
/* A mini pipeline to test FastQC here */
|
||||
#!/usr/bin/env nextflow
|
||||
echo true
|
||||
|
||||
cheers = Channel.from 'Bonjour', 'Ciao', 'Hello', 'Hola'
|
||||
|
||||
process sayHello {
|
||||
input:
|
||||
val x from cheers
|
||||
script:
|
||||
"""
|
||||
echo '$x world!'
|
||||
"""
|
||||
}
|
||||
|
|
|
@ -1 +1,13 @@
|
|||
/* A mini pipeline to test samtools index here */
|
||||
#!/usr/bin/env nextflow
|
||||
echo true
|
||||
|
||||
cheers = Channel.from 'Bonjour', 'Ciao', 'Hello', 'Hola'
|
||||
|
||||
process sayHello {
|
||||
input:
|
||||
val x from cheers
|
||||
script:
|
||||
"""
|
||||
echo '$x world!'
|
||||
"""
|
||||
}
|
||||
|
|
|
@ -1 +1,13 @@
|
|||
/* A mini pipeline to test samtools sort here */
|
||||
#!/usr/bin/env nextflow
|
||||
echo true
|
||||
|
||||
cheers = Channel.from 'Bonjour', 'Ciao', 'Hello', 'Hola'
|
||||
|
||||
process sayHello {
|
||||
input:
|
||||
val x from cheers
|
||||
script:
|
||||
"""
|
||||
echo '$x world!'
|
||||
"""
|
||||
}
|
||||
|
|
|
@ -1 +1,13 @@
|
|||
/* A mini pipeline to test FastQC here */
|
||||
#!/usr/bin/env nextflow
|
||||
echo true
|
||||
|
||||
cheers = Channel.from 'Bonjour', 'Ciao', 'Hello', 'Hola'
|
||||
|
||||
process sayHello {
|
||||
input:
|
||||
val x from cheers
|
||||
script:
|
||||
"""
|
||||
echo '$x world!'
|
||||
"""
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue