mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-02 20:52:07 -05:00
fix(appyter): Make appyter_image a param instead of an option
Co-authored-by: sruthipsuresh <sps180004@utdallas.edu>
This commit is contained in:
parent
2d7ac8596a
commit
ec97e1890b
2 changed files with 3 additions and 3 deletions
|
@ -13,9 +13,9 @@ process APPYTER {
|
||||||
// FIXME These rely on docker and won't work with conda
|
// FIXME These rely on docker and won't work with conda
|
||||||
// conda (params.enable_conda ? "bioconda::fastqc=0.11.9" : null)
|
// conda (params.enable_conda ? "bioconda::fastqc=0.11.9" : null)
|
||||||
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
||||||
container "$options.appyter_image"
|
container "${params.appyter_image}"
|
||||||
} else {
|
} else {
|
||||||
container "$options.appyter_image}"
|
container "${params.appyter_image}"
|
||||||
}
|
}
|
||||||
|
|
||||||
input:
|
input:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
nextflow.enable.dsl = 2
|
nextflow.enable.dsl = 2
|
||||||
|
|
||||||
include { APPYTER } from '../../../software/appyter/main.nf' addParams( options: [appyter_image: "maayanlab/appyter-example:0.0.3-0.12.2"] )
|
include { APPYTER } from '../../../software/appyter/main.nf' addParams( appyter_image: "maayanlab/appyter-example:0.0.3-0.12.2" )
|
||||||
|
|
||||||
workflow test_appyter {
|
workflow test_appyter {
|
||||||
def input = []
|
def input = []
|
||||||
|
|
Loading…
Reference in a new issue