Update test file imports

This commit is contained in:
Phil Ewels 2020-07-11 14:33:12 +02:00
parent a6b2485dab
commit d3f3432451
11 changed files with 10 additions and 15 deletions

View file

@ -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

View file

@ -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'

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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){

View file

@ -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

View file

@ -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()
}

View file

@ -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