Skip to content

Commit 41f2fc9

Browse files
committed
Clean up some exercises
1 parent 8cfc95d commit 41f2fc9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env nextflow
22

33
Channel
4-
.from( 1, 2, 3, 4 )
4+
.of( 1, 2, 3, 4 )
55
.collect()
66
.view()

exercises/03_first_pipeline/modules.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ Avg quality : ${params.avgqual}
2626
read_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.
3333
workflow {

exercises/03_first_pipeline/trimmomatic.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ process trimmomatic {
6464
workflow {
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
}

0 commit comments

Comments
 (0)