Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/harmon_fix_gh_actions_test' into…
Browse files Browse the repository at this point in the history
… single-read-raw-clean
  • Loading branch information
simonleandergrimm committed Dec 3, 2024
2 parents ad640c6 + 222946d commit e85dd45
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/end-to-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
java-version: '11'
distribution: 'adopt'

- name: Setup Nextflow latest-edge
- name: Setup Nextflow latest (stable)
uses: nf-core/setup-nextflow@v1
with:
version: "latest-edge"
version: "latest"

- name: Install nf-test
run: |
Expand Down
4 changes: 2 additions & 2 deletions workflows/run.nf
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ workflow RUN {
time_ch = Channel.of(start_time_str + "\n").collectFile(name: "time.txt")
version_ch = Channel.fromPath("${projectDir}/pipeline-version.txt")
index_params_ch = Channel.fromPath("${params.ref_dir}/input/index-params.json")
.map { file -> file.copyTo("${workDir}/params-index.json") }
.map { file -> file.copyTo("${params.base_dir}/work/params-index.json") }
index_pipeline_version_ch = Channel.fromPath("${params.ref_dir}/logging/pipeline-version.txt")
.map { file -> file.copyTo("${workDir}/pipeline-version-index.txt") }
.map { file -> file.copyTo("${params.base_dir}/work/pipeline-version-index.txt") }
publish:
// Saved inputs
index_params_ch >> "input"
Expand Down
4 changes: 2 additions & 2 deletions workflows/run_validation.nf
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ workflow RUN_VALIDATION {
time_ch = Channel.of(start_time_str + "\n").collectFile(name: "time.txt")
version_ch = Channel.fromPath("${projectDir}/pipeline-version.txt")
index_params_ch = Channel.fromPath("${params.ref_dir}/input/index-params.json")
.map { file -> file.copyTo("${workDir}/params-index.json") }
.map { file -> file.copyTo("${params.base_dir}/work/params-index.json") }
index_pipeline_version_ch = Channel.fromPath("${params.ref_dir}/logging/pipeline-version.txt")
.map { file -> file.copyTo("${workDir}/pipeline-version-index.txt") }
.map { file -> file.copyTo("${params.base_dir}/work/pipeline-version-index.txt") }
publish:
// Saved inputs
index_params_ch >> "input"
Expand Down

0 comments on commit e85dd45

Please sign in to comment.