File tree Expand file tree Collapse file tree 3 files changed +4
-25
lines changed Expand file tree Collapse file tree 3 files changed +4
-25
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ implemented with Nextflow.
1515
16161 .  If you don't have it already install Docker in your computer. Read more [ here] ( https://docs.docker.com/ ) .
1717
18- 2 .  Install Nextflow (version 23.04 .0 or later):
18+ 2 .  Install Nextflow (version 23.10 .0 or later):
1919
2020        curl -s https://get.nextflow.io  | bash
2121
Original file line number Diff line number Diff line change 11#! /usr/bin/env nextflow 
22
3- /*  
4-  * Copyright (c) 2013-2023, Seqera Labs. 
5-  * 
6-  * This Source Code Form is subject to the terms of the Mozilla Public 
7-  * License, v. 2.0. If a copy of the MPL was not distributed with this 
8-  * file, You can obtain one at http://mozilla.org/MPL/2.0/.  
9-  *  
10-  * This Source Code Form is "Incompatible With Secondary Licenses", as 
11-  * defined by the Mozilla Public License, v. 2.0. 
12-  */  
13- 
143/* 
154 * Proof of concept of a RNAseq pipeline implemented with Nextflow 
16-  * 
17-  * Authors: 
18-  * - Paolo Di Tommaso <[email protected] > 19-  * - Emilio Palumbo <[email protected] > 20-  * - Evan Floden <[email protected] > 215 */  
226
23- /*  
24-  * enables modules  
25-  */  
26- nextflow. enable. dsl =  2 
277
288/* 
299 * Default pipeline parameters. They can be overriden on the command line eg. 
@@ -55,4 +35,3 @@ workflow {
5535  RNASEQ ( params. transcriptome, read_pairs_ch )
5636  MULTIQC ( RNASEQ . out, params. multiqc )
5737}
58- 
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ process MULTIQC {
55    publishDir params. outdir, mode:' copy' 
66
77    input: 
8-     path( ' *' )  
9-     path(config)  
8+     path  ' *' 
9+     path  ' config ' 
1010
1111    output: 
12-     path( ' multiqc_report.html' ) , emit: report
12+     path  ' multiqc_report.html' 
1313
1414    script: 
1515    """ 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments