17 lines
359 B
Bash
17 lines
359 B
Bash
|
|
#!/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
|