From 6d4df8ff0052d3e8c8b46a26ff63f43fae78e41b Mon Sep 17 00:00:00 2001 From: Ben Sherman Date: Thu, 6 Feb 2025 09:28:35 -0600 Subject: [PATCH] Rename test pipeline Signed-off-by: Ben Sherman --- README.md | 6 +++--- tests/test.nf => nf-prov-test/main.nf | 0 {tests => nf-prov-test}/nextflow.config | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename tests/test.nf => nf-prov-test/main.nf (100%) rename {tests => nf-prov-test}/nextflow.config (97%) diff --git a/README.md b/README.md index 9ae5ebf..fa719c4 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ prov { } ``` -See [nextflow.config](./nextflow.config) for a full example of each provenance format. +See the [nf-prov-test](./nf-prov-test) directory for an example pipeline that produces every provenance format. `prov.patterns` @@ -92,7 +92,7 @@ mv -f settings.gradle.bkp settings.gradle ./gradlew assemble # Launch -./launch.sh run tests/test.nf +./launch.sh run nf-prov-test ``` An alternative method to build and test the plugin for development purposes: @@ -103,7 +103,7 @@ An alternative method to build and test the plugin for development purposes: make install # run with regular nextflow install -nextflow run tests/test.nf -plugins nf-prov@ +nextflow run nf-prov-test -plugins nf-prov@ ``` ## Package, Upload, and Publish diff --git a/tests/test.nf b/nf-prov-test/main.nf similarity index 100% rename from tests/test.nf rename to nf-prov-test/main.nf diff --git a/tests/nextflow.config b/nf-prov-test/nextflow.config similarity index 97% rename from tests/nextflow.config rename to nf-prov-test/nextflow.config index 213540d..8a27267 100644 --- a/tests/nextflow.config +++ b/nf-prov-test/nextflow.config @@ -37,7 +37,7 @@ manifest { ] homePage = "https://github.com/nextflow-io/nf-prov" description = "Test pipeline for nf-prov" - mainScript = "test.nf" + mainScript = "main.nf" nextflowVersion = "!>=24.10.0" version = "0.3.0" license = "https://spdx.org/licenses/Apache-2.0"