Skip to content

Commit a7fe682

Browse files
committed
Update intervals file
under ref and with .bed extension
1 parent 07bbf5f commit a7fe682

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

docs/hello_nextflow/05_hello_nf-test.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,6 @@ cp scripts/nextflow.config .
2020
cp -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
}

hello-nextflow/scripts/hello-gatk-6.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ params.reads_bam = "${projectDir}/data/samplesheet.csv"
1515
params.genome_reference = "${projectDir}/data/ref/ref.fasta"
1616
params.genome_reference_index = "${projectDir}/data/ref/ref.fasta.fai"
1717
params.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
2121
params.cohort_name = "family_trio"

0 commit comments

Comments
 (0)