Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/nf4_science/genomics/02_joint_calling.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ gatk HaplotypeCaller \
-ERC GVCF
```

Once this completes, you should have three files ending in `.g.vcf` in your work directory (one per sample) and their respective index files ending in `.g.vcf.idx`.
Once this completes, you should have three files ending in `.g.vcf` in your current directory (one per sample) and their respective index files ending in `.g.vcf.idx`.

### 0.3. Run joint genotyping

Expand Down Expand Up @@ -315,7 +315,7 @@ But look at that line about the missing output file. Notice anything?

That's right, we forgot to tell Nextflow to expect a new file name. Oops.

### 1.2. Update the output file extension in the process outputs block too
### 1.3. Update the output file extension in the process outputs block too

Because it's not enough to just change the file extension in the tool command itself, you also have to tell Nextflow that the expected output filename has changed.

Expand All @@ -335,7 +335,7 @@ _After:_
path "${input_bam}.g.vcf.idx" , emit: idx
```

### 1.3. Run the pipeline again
### 1.4. Run the pipeline again

Let's run it with `-resume` this time.

Expand Down