mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
Update test file imports
This commit is contained in:
parent
a6b2485dab
commit
d3f3432451
11 changed files with 10 additions and 15 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env nextflow
|
||||
nextflow.preview.dsl = 2
|
||||
include '../../../nf-core/module_testing/check_process_outputs.nf' params(params)
|
||||
include '../../../tests/functions/check_process_outputs.nf' params(params)
|
||||
include '../main.nf' params(params)
|
||||
|
||||
// Define input channels
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env nextflow
|
||||
nextflow.preview.dsl = 2
|
||||
include '../../../../nf-core/module_testing/check_process_outputs.nf' params(params)
|
||||
include '../../../../tests/functions/check_process_outputs.nf' params(params)
|
||||
include '../main.nf' params(params)
|
||||
|
||||
reads = '../../../../test-datasets/tools/bwa/mem/reads/*_R{1,2}_001.fastq.gz'
|
||||
|
|
|
@ -12,7 +12,7 @@ if (params.verbose){
|
|||
println ("[WORKFLOW] FASTQ SCREEN ARGS ARE: " + params.fastq_screen_args)
|
||||
}
|
||||
|
||||
// TODO: include '../../../nf-core/module_testing/check_process_outputs.nf'
|
||||
// TODO: include '../../../tests/functions/check_process_outputs.nf'
|
||||
include '../main.nf'
|
||||
|
||||
// Define input channels
|
||||
|
|
|
@ -6,7 +6,7 @@ params.fastqc_args = ''
|
|||
params.verbose = false
|
||||
|
||||
// TODO: check the output files in some way
|
||||
// include '../../../nf-core/module_testing/check_process_outputs.nf'
|
||||
// include '../../../tests/functions/check_process_outputs.nf'
|
||||
include '../main.nf'
|
||||
|
||||
// Define input channels
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env nextflow
|
||||
nextflow.preview.dsl = 2
|
||||
include '../../../nf-core/module_testing/check_process_outputs.nf' params(params)
|
||||
include '../../../tests/functions/check_process_outputs.nf' params(params)
|
||||
include '../main.nf' params(params)
|
||||
|
||||
// Define input channels
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env nextflow
|
||||
nextflow.preview.dsl = 2
|
||||
include '../../../nf-core/module_testing/check_process_outputs.nf' params(params)
|
||||
include '../../../tests/functions/check_process_outputs.nf' params(params)
|
||||
include '../main.nf' params(params)
|
||||
|
||||
// Define input channels
|
||||
|
|
|
@ -5,7 +5,7 @@ params.outdir = "."
|
|||
params.verbose = false
|
||||
params.multiqc_args = ''
|
||||
|
||||
// include '../../../nf-core/module_testing/check_process_outputs.nf'
|
||||
// include '../../../tests/functions/check_process_outputs.nf'
|
||||
include '../main.nf'
|
||||
|
||||
if (params.verbose){
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env nextflow
|
||||
nextflow.preview.dsl = 2
|
||||
include '../../../nf-core/module_testing/check_process_outputs.nf' params(params)
|
||||
include '../../../tests/functions/check_process_outputs.nf' params(params)
|
||||
include '../main.nf' params(params)
|
||||
|
||||
// Define input channels
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
nextflow.preview.dsl = 2
|
||||
|
||||
include check_output from '../../../nf-core/module_testing/check_process_outputs.nf'
|
||||
include check_output from '../../../tests/functions/check_process_outputs.nf'
|
||||
include tcoffee from '../main.nf'
|
||||
|
||||
// Define input channels
|
||||
|
@ -13,8 +13,3 @@ workflow {
|
|||
tcoffee(fasta)
|
||||
// .check_output()
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ if (params.verbose){
|
|||
}
|
||||
|
||||
// TODO: check the output files in some way
|
||||
// include '../../../nf-core/module_testing/check_process_outputs.nf'
|
||||
// include '../../../tests/functions/check_process_outputs.nf'
|
||||
include '../main.nf' // params (clip_r1: 6, clip_r2: 10) // how to pass additional parameters
|
||||
|
||||
ch_read_files = Channel
|
||||
|
|
Loading…
Reference in a new issue