Skip to content

Commit

Permalink
update with erroneous work
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Nov 23, 2022
1 parent 7c7a3ba commit a23d4e4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion nextflow/ml-hyperopt/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ COPY ./setup.sh ./
RUN /bin/bash setup.sh

# Install nextflow from source (since Flux not in release yet)
RUN git clone --depth 1 --branch fix/flux-executor-output https://github.com/researchapps/nextflow /nextflow && \
RUN git clone --depth 1 https://github.com/nextflow-io/nextflow /nextflow && \
cd /nextflow && \
make compile && make pack && make install && \
# This finishes getting some deps
Expand Down
6 changes: 4 additions & 2 deletions nextflow/ml-hyperopt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ profiles {
flux {
process.executor = 'flux'
process.conda = "$baseDir/conda.yml"
process.terminal_output = true
flux {
terminalOutput = true
}
}
```

Note that `process.terminal_output = true` is needed for flux to be able to see the log output!
Note that `process.terminalOutput = true` is needed for flux to be able to see the log output!

## Running the Workflow

Expand Down
3 changes: 1 addition & 2 deletions nextflow/ml-hyperopt/nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ params {
outdir = 'results'
}


/*
* Execution profiles for different environments.
*/
Expand All @@ -61,7 +60,7 @@ profiles {
flux {
process.conda = "$baseDir/conda.yml"
process.executor = 'flux'
process.terminal_output = true
flux.terminalOutput = true
}

slurm {
Expand Down

0 comments on commit a23d4e4

Please sign in to comment.