mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
Update output paths
This commit is contained in:
parent
268c56c20d
commit
754fad7c8e
1 changed files with 7 additions and 7 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
nextflow.enable.dsl = 2
|
||||
|
||||
params.outdir = "results/"
|
||||
params.outdir = "output/"
|
||||
params.publish_dir_mode = "copy"
|
||||
params.conda = false
|
||||
|
||||
|
@ -13,11 +13,11 @@ include { FASTQC } from '../main.nf'
|
|||
*/
|
||||
workflow test_single_end {
|
||||
|
||||
def reads = []
|
||||
reads = [ [ id:'test', single_end:true ],
|
||||
def input = []
|
||||
input = [ [ id:'test', single_end:true ],
|
||||
[ file('input/test_single_end.fastq.gz', checkIfExists: true) ] ]
|
||||
|
||||
FASTQC ( reads, [:] )
|
||||
FASTQC ( input, [ publish_dir:'test_single_end' ] )
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -25,11 +25,11 @@ workflow test_single_end {
|
|||
*/
|
||||
workflow test_paired_end {
|
||||
|
||||
def reads = []
|
||||
reads = [ [ id:'test', single_end:false ],
|
||||
def input = []
|
||||
input = [ [ id:'test', single_end:false ],
|
||||
[ file('input/test_R1.fastq.gz', checkIfExists: true), file('input/test_R2.fastq.gz', checkIfExists: true) ] ]
|
||||
|
||||
FASTQC ( reads, [:] )
|
||||
FASTQC ( input, [ publish_dir:'test_paired_end' ] )
|
||||
}
|
||||
|
||||
workflow {
|
||||
|
|
Loading…
Reference in a new issue