Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .nf-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ template:
outdir: .
skip_features:
- igenomes
- fastqc
version: 1.0.0
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v1.0.0 - [date]
## v1.0.0 - [2025-01-17]

First release of `nf-core/rangeland`.
This work is a continuation, and nf-core port, of the [original version of this pipeline](https://github.com/CRC-FONDA/FORCE2NXF-Rangeland).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ The pipeline processes satellite imagery alongside auxiliary data in multiple st
## Usage

> [!NOTE]
> If you are new to Nextflow and nf-core, please refer to [this page](https://nf-co.re/docs/usage/installation) on how to set-up Nextflow.Make sure to [test your setup](https://nf-co.re/docs/usage/introduction#how-to-run-a-pipeline) with `-profile test` before running the workflow on actual data.
> If you are new to Nextflow and nf-core, please refer to [this page](https://nf-co.re/docs/usage/installation) on how to set-up Nextflow. Make sure to [test your setup](https://nf-co.re/docs/usage/introduction#how-to-run-a-pipeline) with `-profile test` before running the workflow on actual data.

To run, satellite imagery, water vapor data, a digital elevation model, endmember definitions, a datacube specification, and a area-of-interest specification are required as input data.
Please refer to the [usage documentation](https://nf-co.re/rangeland/usage) for details on the input structure.
Expand Down
4 changes: 4 additions & 0 deletions docs/images/rangeland_diagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 8 additions & 5 deletions docs/output.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This document describes the output produced by the pipeline.
The directories listed below will be created in the results directory after the pipeline has finished.
All paths are relative to the top-level results directory.

Note that running this pipeline with `--publish_dir_enabled false` will prevent any module from publishing its output. See [Usage](usage.md#module-output-publishing) for details
Note that running this pipeline with `--publish_dir_enabled false` will prevent any module from publishing its output. See [Usage](./usage.md#module-output-publishing) for details.

## Pipeline overview

Expand All @@ -27,13 +27,13 @@ The pipeline is built using [Nextflow](https://www.nextflow.io/) and processes d
<summary>Output files</summary>

- `untar/`
- `<digital_elevation_dir>`: directory containing symlinks to decompressed digital elevation input data.
- `<digital_elevation_dir>/`: directory containing symlinks to decompressed digital elevation input data.
Only present if a tar archive was provided for the digital elevation model.
Name of the directory derived from archive contents.
- `<water_vapor_dir>`: directory containing symlinks to decompressed water vapor input data.
- `<water_vapor_dir>/`: directory containing symlinks to decompressed water vapor input data.
Only present if a tar archive was provided for water vapor data.
Name of the directory derived from archive contents.
- `<satellite_data_dir>`: directory containing symlinks to decompressed satellite imagery input data.
- `<satellite_data_dir>/`: directory containing symlinks to decompressed satellite imagery input data.
Only present if a tar archive was provided for satellite data.
Name of the directory derived from archive contents.

Expand Down Expand Up @@ -90,7 +90,10 @@ Logs and analysis-ready-data (ARD) are generated using the [force-l2ps](https://
Logs can be consulted for debugging purposes.
ARD may be collected as a basis for other remote sensing workflows.
The ARD in `level2_ard/` consist two `.tif` files per initial input image, a quality data file and the atmospherically corrected satellite data.
Note that the `.tif` files are only published when the `--save_ard` parameter is set to `true` to avoid bloating the storage.

:::note
The `.tif` files are only published when the `--save_ard` parameter is set to `true` to avoid bloating the storage.
:::

### Higher-level-Processing

Expand Down
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ manifest {
email: '[email protected]',
github: 'https://github.com/Felix-Kummer',
contribution: ['author', 'maintainer'], // List of contribution types ('author', 'maintainer' or 'contributor')
orcid: ''
orcid: 'https://orcid.org/0009-0007-1154-6980'
],
]
homePage = 'https://github.com/nf-core/rangeland'
Expand Down
2 changes: 1 addition & 1 deletion workflows/rangeland.nf
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ workflow RANGELAND {
}

data.ifEmpty {
error "No directories found!"
error "[nf-core/rangeland] ERROR: No directories found in input path or .tar file!"
}

// Determine type of params.dem and extract when neccessary
Expand Down
Loading