Skip to content

Commit

Permalink
Update getting-started.md (fixes #140)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukfor authored Dec 27, 2023
1 parent 0e8d74b commit b3807b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ when {
process {
"""
// Use transcriptome.fa as a first input paramter for our process
input[0] = file("test_data/transcriptome.fa")
input[0] = file("${projectDir}/test_data/transcriptome.fa")
"""
}
}
Expand Down Expand Up @@ -155,7 +155,7 @@ nextflow_process {
when {
process {
"""
input[0] = file("test_data/transcriptome.fa")
input[0] = file("${projectDir}/test_data/transcriptome.fa")
"""
}
}
Expand Down

0 comments on commit b3807b2

Please sign in to comment.