File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env nextflow
22
33Channel
4- .from ( 1 , 2 , 3 , 4 )
4+ .of ( 1 , 2 , 3 , 4 )
55 .collect()
66 .view()
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ Avg quality : ${params.avgqual}
2626read_pairs_ch = Channel
2727 .fromFilePairs(params. reads, checkIfExists :true )
2828
29- include { fastqc as fastqc_raw; fastqc as fastqc_trim } from " ${ projectDir} /../..// modules/fastqc"
30- include { trimmomatic } from " ${ projectDir} /../..// modules/trimmomatic"
29+ include { fastqc as fastqc_raw; fastqc as fastqc_trim } from " ${ projectDir} /../../modules/fastqc"
30+ include { trimmomatic } from " ${ projectDir} /../../modules/trimmomatic"
3131
3232// Running a workflow with the defined processes here.
3333workflow {
Original file line number Diff line number Diff line change @@ -64,5 +64,5 @@ process trimmomatic {
6464workflow {
6565 fastqc(read_pairs_ch)
6666 trimmomatic(read_pairs_ch)
67- fastqc(trimmomatic. out. paired_fq) // This will raise an error. Do you remember why?
67+ // fastqc(trimmomatic.out.paired_fq) // This will raise an error. Do you remember why?
6868}
You can’t perform that action at this time.
0 commit comments