-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
36 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
## 0.1.0 | ||
|
||
Initial release of nft-geotiff | ||
Initial release of nft-tiff |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
@@ -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" | ||
} | ||
} | ||
``` | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "${@}" |