2024-10-17 17:56:12 +00:00
|
|
|
#!/bin/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"
|
|
|
|
|
|
2024-11-15 14:37:33 +00:00
|
|
|
nextflow \
|
|
|
|
|
run . \
|
2024-10-17 17:56:12 +00:00
|
|
|
-main-script src/workflows/rna/rna_multisample/test.nf \
|
|
|
|
|
-entry test_wf \
|
2024-11-15 14:37:33 +00:00
|
|
|
-profile docker,no_publish \
|
2024-10-17 17:56:12 +00:00
|
|
|
-c src/workflows/utils/labels_ci.config \
|
|
|
|
|
-c src/workflows/utils/integration_tests.config
|