Skip to content

Commit 68c7baa

Browse files
small fixies
1 parent 3b7d8a3 commit 68c7baa

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

pipeline.nf

+3-7
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,6 @@ process referenceGenome_downloader{
147147
// publishDir publishes the output in a specific folder with copy mode
148148
storeDir "${params.outdir}/reference_genome"
149149

150-
input:
151-
val trigger from refgen_downloader
152-
153150
output:
154151
file "hg38.fa" into refgen_integrate_builder_down, refgen_integrate_converter_down, refgen_referenceGenome_index_down, refgen_integrate_down, refgen_genefuse_down
155152

@@ -213,8 +210,6 @@ process ericsctipt_downloader{
213210

214211
storeDir "${params.outdir}/ericscript/files"
215212

216-
input:
217-
val x from ch1_ericscript
218213

219214
output:
220215
file "ericscript_db_homosapiens_ensembl84" into ch3_ericscript
@@ -240,18 +235,19 @@ process ericsctipt_downloader{
240235
process ericscript{
241236
tag "${pair_id}"
242237

243-
publishDir "${params.outdir}/ericscript", mode: 'move'
238+
publishDir "${params.outdir}/ericscript/result", mode: 'move'
244239

245240
input:
246241
tuple pair_id, file(rna_reads), file(ericscript_db) from rna_reads_ericscript.combine(ch2_ericscript.mix(ch3_ericscript))
247242

248243
output:
249-
file "output/${pair_id}" optional true into ericscript_fusions
244+
file "output/${pair_id}" into ericscript_fusions
250245

251246
when: params.ericscript || !(params.arriba || params.ericscript || params.fusioncatcher || params.genefuse || params.integrate)
252247

253248
script:
254249
reads = "../${rna_reads[0]} ../${rna_reads[1]}" //reads = params.single_end ? rna_reads[0] : "../${rna_reads[0]} ../${rna_reads[1]}"
250+
println reads
255251
"""
256252
#!/bin/bash
257253

0 commit comments

Comments
 (0)