Skip to content

Commit

Permalink
Minimal formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pditommaso committed Feb 24, 2020
1 parent 317ed1a commit c4d89b5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions rnaseq-flow.nf
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ include { index; quantification; fastqc; multiqc } from './rnaseq-tasks.nf'
workflow rnaseqFlow {
// required inputs
take:
transcriptome
read_files
transcriptome
read_files
// workflow implementation
main:
index(transcriptome)
quantification(index.out, read_files)
fastqc(read_files)
multiqc( quantification.out.mix(fastqc.out).collect() )
index(transcriptome)
quantification(index.out, read_files)
fastqc(read_files)
multiqc( quantification.out.mix(fastqc.out).collect() )
}

0 comments on commit c4d89b5

Please sign in to comment.