Skip to content

Commit

Permalink
geotiff -> tiff
Browse files Browse the repository at this point in the history
  • Loading branch information
nvnieuwk committed Oct 8, 2024
1 parent 571df31 commit 1958cfc
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 36 deletions.
10 changes: 5 additions & 5 deletions .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
"checkout": null,
"context": {
"cookiecutter": {
"plugin_name": "nft-geotiff",
"plugin_slug": "nft-geotiff",
"description": "An nf-test plugin to test nft-geotiff files",
"plugin_name": "nft-tiff",
"plugin_slug": "nft-tiff",
"description": "An nf-test plugin to test nft-tiff files",
"github_username": "nf-core",
"github_url": "https://github.com/nf-core/nft-geotiff",
"github_url": "https://github.com/nf-core/nft-tiff",
"github_default_branch": "master",
"version": "0.1.0",
"license": "MIT",
"mkdocs": true,
"docsite_url": "https://nf-core.github.io/nft-geotiff",
"docsite_url": "https://nf-core.github.io/nft-tiff",
"author_name": "nf-core",
"release_date": "2024-10-08",
"year": "2024",
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

## 0.1.0

Initial release of nft-geotiff
Initial release of nft-tiff
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# nft-geotiff
# nft-tiff

An nf-test plugin to test nft-geotiff files
An nf-test plugin to test nft-tiff files


Please read the [documentation](https://nf-core.github.io/nft-geotiff) for more information.
Please read the [documentation](https://nf-core.github.io/nft-tiff) for more information.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

mvn package && \
echo "Built $(readlink -f target/nft-geotiff*.jar)"
echo "Built $(readlink -f target/nft-tiff*.jar)"
2 changes: 1 addition & 1 deletion bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sed -i -e "s/moduleVersion=.*/moduleVersion=$version/" ./src/main/resources/META

if [[ $version != *dev ]]
then
sed -i -e "s/load \"nft-geotiff@.*\"/load \"nft-geotiff@$version\"/" ./docs/index.md
sed -i -e "s/load \"nft-tiff@.*\"/load \"nft-tiff@$version\"/" ./docs/index.md
fi

./build.sh
12 changes: 6 additions & 6 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# nft-geotiff
# nft-tiff

An nf-test plugin to test nft-geotiff files
An nf-test plugin to test nft-tiff files

## Start using the plugin

Expand All @@ -9,7 +9,7 @@ To start using the plugin please add it to your `nf-test.config` file:
```groovy title="nf-test.config"
config {
plugins {
load "nft-geotiff@0.1.0"
load "nft-tiff@0.1.0"
}
}
```
Expand All @@ -18,18 +18,18 @@ config {

To use the development version, please do the following steps:

- Clone the [nft-geotiff repository](https://github.com/nf-core/nft-geotiff)
- Clone the [nft-tiff repository](https://github.com/nf-core/nft-tiff)

=== "HTTPS"

```bash
git clone https://github.com/nf-core/nft-geotiff.git
git clone https://github.com/nf-core/nft-tiff.git
```

=== "SSH"

```bash
git clone [email protected]:nf-core/nft-geotiff.git
git clone [email protected]:nf-core/nft-tiff.git
```

- Run the build script
Expand Down
8 changes: 4 additions & 4 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
site_name: nf-core/nft-geotiff
repo_name: nf-core/nft-geotiff
repo_url: https://github.com/nf-core/nft-geotiff
site_url: https://nf-core.github.io/nft-geotiff
site_name: nf-core/nft-tiff
repo_name: nf-core/nft-tiff
repo_url: https://github.com/nf-core/nft-tiff
site_url: https://nf-core.github.io/nft-tiff

nav:
- Home: index.md
Expand Down
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.nf-core</groupId>
<artifactId>nft-geotiff</artifactId>
<artifactId>nft-tiff</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>

<name>nft-geotiff</name>
<description>An nf-test plugin to test nft-geotiff files</description>
<url>https://github.com/nf-core/nft-geotiff</url>
<name>nft-tiff</name>
<description>An nf-test plugin to test nft-tiff files</description>
<url>https://github.com/nf-core/nft-tiff</url>

<licenses>
<license>
Expand All @@ -20,9 +20,9 @@
</licenses>

<scm>
<url>https://github.com/nf-core/nft-geotiff/tree/master</url>
<connection>scm:git:https://github.com/nf-core/nft-geotiff</connection>
<developerConnection>scm:git:ssh://github.com:nf-core/nft-geotiff.git</developerConnection>
<url>https://github.com/nf-core/nft-tiff/tree/master</url>
<connection>scm:git:https://github.com/nf-core/nft-tiff</connection>
<developerConnection>scm:git:ssh://github.com:nf-core/nft-tiff.git</developerConnection>
</scm>

<properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nf-core.nf.test.geotiff;
package nf-core.nf.test.tiff;

/*
* Add your custom methods to nf-test
Expand All @@ -9,7 +9,7 @@
public class Methods {

public static void hello() {
System.out.println("Hello from nft-geotiff");
System.out.println("Hello from nft-tiff");
}

}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nf-core.nf.test.geotiff;
package nf-core.nf.test.tiff;

/*
* Add your custom extensions to the path() method
Expand All @@ -9,7 +9,7 @@
public class PathExtension {

public static void hello() {
System.out.println("Hello from nft-geotiff");
System.out.println("Hello from nft-tiff");
}

}
6 changes: 3 additions & 3 deletions src/main/resources/META-INF/nf-test-plugin
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
moduleName=nft-geotiff
moduleName=nft-tiff
moduleVersion=0.1.0
moduleAuthors=nf-core
extensionMethods=nf-core.nf.test.geotiff.Methods
extensionClasses=nf-core.nf.test.geotiff.PathExtension
extensionMethods=nf-core.nf.test.tiff.Methods
extensionClasses=nf-core.nf.test.tiff.PathExtension
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/bin/bash
nf-test test tests/**/*.nf.test --plugins target/nft-geotiff-*.jar "${@}"
nf-test test tests/**/*.nf.test --plugins target/nft-tiff-*.jar "${@}"

0 comments on commit 1958cfc

Please sign in to comment.