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 167786d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 25 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
21 changes: 0 additions & 21 deletions main.nf
Original file line number Diff line number Diff line change
@@ -1,29 +1,9 @@
#!/usr/bin/env nextflow

/*
* Copyright (c) 2013-2023, Seqera Labs.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This Source Code Form is "Incompatible With Secondary Licenses", as
* 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
*/
nextflow.enable.dsl = 2

/*
* Default pipeline parameters. They can be overriden on the command line eg.
Expand Down Expand Up @@ -55,4 +35,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 167786d

Please sign in to comment.