Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Krferrier main #109

Merged
merged 3 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
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 .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v2
with:
java-version: '11'
java-version: '17'
distribution: 'adopt'

- name: Setup Nextflow
Expand All @@ -28,7 +28,7 @@ jobs:

- name: Install nf-test
run: |
wget -qO- get.nf-test.com | bash -s 0.9.0-rc2
wget -qO- get.nf-test.com | bash
sudo mv nf-test /usr/local/bin/

- name: Set up Docker Buildx
Expand Down
4 changes: 3 additions & 1 deletion workflows/regenie/regenie.nf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ workflow REGENIE {
regenie_step2_out = REGENIE_STEP2_GENE_TESTS.out.regenie_step2_by_phenotype
regenie_step2_parsed_logs = REGENIE_STEP2_GENE_TESTS.out.regenie_step2_parsed_logs
}
emit:
emit:
regenie_step1_out_ch
regenie_step1_parsed_logs_ch
regenie_step2_out
regenie_step2_parsed_logs
}
Expand Down
5 changes: 3 additions & 2 deletions workflows/single_variant_tests.nf
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,9 @@ workflow SINGLE_VARIANT_TESTS {

regenie_step2_out = REGENIE.out.regenie_step2_out
regenie_step2_parsed_logs = REGENIE.out.regenie_step2_parsed_logs
//TODO return logs from step1
regenie_step1_parsed_logs_ch = Channel.empty()
//return logs from step1
regenie_step1_parsed_logs_ch = REGENIE.out.regenie_step1_parsed_logs_ch
regenie_step1_out_ch = REGENIE.out.regenie_step1_out_ch

if (!run_interaction_tests) {

Expand Down
Loading