File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,6 @@ cp scripts/nextflow.config .
2020cp -r scripts/modules .
2121```
2222
23- You also need to unzip the reference data files:
24-
25- ```
26- tar -zxvf data/ref.tar.gz -C data/
27- ```
28-
2923### 0.1 Run the workflow to verify that it produces the expected outputs
3024
3125``` bash
@@ -469,7 +463,7 @@ Then we can refer to the output of that process in the `when` block where we spe
469463 input[1] = file(" ${projectDir} /data/ref/ref.fasta" )
470464 input[2] = file(" ${projectDir} /data/ref/ref.fasta.fai" )
471465 input[3] = file(" ${projectDir} /data/ref/ref.dict" )
472- input[4] = file(" ${projectDir} /data/intervals.list " )
466+ input[4] = file(" ${projectDir} /data/ref/ intervals.bed " )
473467 " " "
474468 }
475469 }
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ params.reads_bam = "${projectDir}/data/samplesheet.csv"
1515params. genome_reference = " ${ projectDir} /data/ref/ref.fasta"
1616params. genome_reference_index = " ${ projectDir} /data/ref/ref.fasta.fai"
1717params. genome_reference_dict = " ${ projectDir} /data/ref/ref.dict"
18- params. calling_intervals = " ${ projectDir} /data/intervals.list "
18+ params. calling_intervals = " ${ projectDir} /data/ref/ intervals.bed "
1919
2020// Base name for final output file
2121params. cohort_name = " family_trio"
You can’t perform that action at this time.
0 commit comments