Skip to content

Commit b8f62f1

Browse files
committed
full test correct input samplesheet path, typos fix, zenodo doi added to nextflow.config
1 parent f02fbba commit b8f62f1

4 files changed

Lines changed: 14 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## v1.1.0dev - [date]
77

8+
### `Added`
9+
10+
- [85](https://github.com/nf-core/proteinannotator/pull/85) - Added zenodo doi in `nextflow.config`. (by @vagkaratzas)
11+
12+
### `Changed`
13+
14+
- [85](https://github.com/nf-core/proteinannotator/pull/85) - `test_full.config` input samplesheet path is now set properly. (by @vagkaratzas)
15+
816
## v1.0.0 - Yellow Saiga - [2026/02/09]
917

1018
Initial release of nf-core/proteinannotator, created with the [nf-core](https://nf-co.re/) template.

conf/test_full.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ params {
1515
config_profile_description = 'Full test dataset to check pipeline function'
1616

1717
// Input data for full size test
18-
input = params.pipelines_testdata_base_path + 'proteinannotator/testdata/samplesheet.csv'
18+
input = params.pipelines_testdata_base_path + 'proteinannotator/samplesheet/samplesheet.csv'
1919
// Domain annotation
2020
pfam_latest_link = params.pipelines_testdata_base_path + 'proteinannotator/testdata/pfam/Pfam-A_test.hmm.gz'
2121
funfam_latest_link = params.pipelines_testdata_base_path + 'proteinannotator/testdata/funfam/funfam-hmm3-v4_3_0_test.lib.gz'

docs/usage.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@
66
77
## Introduction
88

9-
<!-- TODO nf-core: Add documentation about anything specific to running your pipeline. For general topics, please point to (and add to) the main nf-core website. -->
9+
**nf-core/proteinannotator** is a bioinformatics pipeline that computes statistics and generates sequence-level annotations for amino acid sequences.
10+
It takes a protein FASTA file as input and performs conserved domain annotation (using Pfam and FunFam HMM databases), functional annotation (using InterProScan), and secondary structure prediction (using s4pred).
11+
Optionally, paths to pre-downloaded databases can be provided to skip the automatic download steps and speed up repeated runs.
1012

1113
## Samplesheet input
1214

13-
You will need to create a samplesheet with information about the samples you would like to analyse before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 3 columns, and a header row as shown in the examples below.
15+
You will need to create a samplesheet with information about the samples you would like to analyse before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 2 columns, and a header row as shown in the examples below.
1416

1517
```bash
1618
--input '[path to samplesheet file]'

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ manifest {
287287
defaultBranch = 'master'
288288
nextflowVersion = '!>=25.10.0'
289289
version = '1.1.0dev'
290-
doi = ''
290+
doi = '10.5281/zenodo.18547735'
291291
}
292292

293293
// Nextflow plugins

0 commit comments

Comments
 (0)