Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
maxulysse authored Oct 14, 2024
1 parent 125009b commit 7b224c6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ nextflow run nf-core/fetchngs -profile docker -params-file params.yaml
with:

```yaml title="params.yaml"
input: './samplesheet.csv'
input: './ids.csv'
outdir: './results/'
<...>
```
Expand Down
2 changes: 1 addition & 1 deletion nf-test.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ config {
testsDir "."

// nf-test directory including temporary files for each test
workDir ".nf-test"
workDir System.getenv("NFT_WORKDIR") ?: ".nf-test"

// Run all test with defined profile(s) from the main nextflow.config
profile "test"
Expand Down
2 changes: 1 addition & 1 deletion subworkflows/local/utils_nfcore_fetchngs_pipeline/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ workflow PIPELINE_INITIALISATION {
nextflow_cli_args // array: List of positional nextflow CLI args
outdir // string: The output directory where the results will be saved
input // string: File containing SRA/ENA/GEO/DDBJ identifiers one per line to download their associated metadata and FastQ files
ena_metadata_fields // string: Comma-separated list of ENA metadata fields to fetch before downloading data
ena_metadata_fields // string: Comma-separated list of ENA metadata fields to fetch before downloading data

main:

Expand Down

0 comments on commit 7b224c6

Please sign in to comment.