Build pipeline: viash-hub.demultiplex.package-config-dist-dbp75
Source commit: 04d0102777
Source message: Merge branch 'runner-returns-output' into package-config-dist
17 lines
359 B
Bash
Executable File
17 lines
359 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# get the root of the directory
|
|
REPO_ROOT=$(git rev-parse --show-toplevel)
|
|
|
|
# ensure that the command below is run from the root of the repository
|
|
cd "$REPO_ROOT"
|
|
|
|
viash ns build --setup cb -q runner
|
|
|
|
nextflow run . \
|
|
-main-script src/runner/test.nf \
|
|
-entry test \
|
|
-profile docker,local \
|
|
-c src/config/labels.config \
|
|
-resume
|