Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed May 19, 2024
1 parent 27ff768 commit 5a7b1eb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ implemented with Nextflow.

1. If you don't have it already install Docker in your computer. Read more [here](https://docs.docker.com/).

2. Install Nextflow (version 23.04.0 or later):
2. Install Nextflow (version 23.10.0 or later):

curl -s https://get.nextflow.io | bash

Expand Down
10 changes: 0 additions & 10 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,6 @@
* defined by the Mozilla Public License, v. 2.0.
*/

/*
* Proof of concept of a RNAseq pipeline implemented with Nextflow
*
* Authors:
* - Paolo Di Tommaso <[email protected]>
* - Emilio Palumbo <[email protected]>
* - Evan Floden <[email protected]>
*/

/*
* enables modules
*/
Expand Down Expand Up @@ -55,4 +46,3 @@ workflow {
RNASEQ( params.transcriptome, read_pairs_ch )
MULTIQC( RNASEQ.out, params.multiqc )
}

6 changes: 3 additions & 3 deletions modules/multiqc/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ process MULTIQC {
publishDir params.outdir, mode:'copy'

input:
path('*')
path(config)
path '*'
path 'config'

output:
path('multiqc_report.html'), emit: report
path 'multiqc_report.html', emit: report

script:
"""
Expand Down

0 comments on commit 5a7b1eb

Please sign in to comment.