Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [[PR #442](https://github.com/nf-core/proteinfold/pulls/442)] - Bump version 2.6.1 of nf-schema, Nextflow minimum version to 25.10.2 and update utils_nfschema_plugin subworkflow.
- [[PR #443](https://github.com/nf-core/proteinfold/pull/443)] - Add documentation guide for contributing new prediction modes.
- [[PR #446](https://github.com/nf-core/proteinfold/pulls/446)] - Fix warnings from Nextflow lint.
- [[#285](https://github.com/nf-core/proteinfold/issues/285)] - Adding contributors to manifest.

### Parameters

Expand Down
74 changes: 67 additions & 7 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -460,27 +460,87 @@ manifest {
[
name: 'Athanasios Baltzis',
affiliation: 'Centre for Genomic Regulation, Spain',
email: '',
github: 'athbaltzis',
contribution: ['author', 'maintainer'], // List of contribution types ('author', 'maintainer' or 'contributor')
orcid: '0000-0002-7495-1218'
],
[
name: ' Jose Espinosa-Carrasco',
affiliation: 'Centre for Genomic Regulation, Spain',
email: 'espinosacarrascoj@gmail.com',
github: 'joseespinosa',
contribution: ['author', 'maintainer'], // List of contribution types ('author', 'maintainer' or 'contributor')
orcid: '0000-0002-1541-042X'
],
[
name: ' Harshil Patel',
affiliation: '',
email: '',
github: '',
contribution: [], // List of contribution types ('author', 'maintainer' or 'contributor')
name: 'Luisa Santus',
affiliation: 'Centre for Genomic Regulation, Spain',
github: 'luisas',
contribution: ['author', 'contributor'],
orcid: '0000-0002-5992-0771'
],
[
name: 'Leila Mansouri',
affiliation: 'Centre for Genomic Regulation, Spain',
github: 'l-mansouri',
contribution: ['author', 'contributor'],
orcid: '0000-0001-8442-9709'
],
[
name: 'Harshil Patel',
affiliation: 'Seqera',
github: 'drpatelh',
contribution: ['contributor'],
orcid: '0000-0003-2707-7940'
],
[
name: 'Joshua Caley',
affiliation: 'UNSW Structural Biology Facility, Australia',
github: 'jscgh',
contribution: ['maintainer', 'contributor'],
orcid: '0000-0002-9374-0969'
],
[
name: 'Keiran Rowell',
affiliation: 'UNSW Structural Biology Facility, Australia',
github: 'keiran-rowell-unsw',
contribution: ['maintainer', 'contributor'],
orcid: '0000-0001-6955-1167'
],
[
name: 'Patricia Bota',
affiliation: 'Pompeu Fabra University, Spain',
github: 'abotlp',
contribution: ['maintainer','contributor'],
orcid: '0000-0001-7034-3744'
],
[
name: 'Thomas Liftin',
affiliation: ['UNSW Structural Biology Facility, Australia', 'Australian BioCommons'],
github: 'tlitfin',
contribution: ['maintainer', 'contributor'],
orcid: '0000-0002-4863-3865'
],
[
name: 'Ziad Al-Bkhetan',
affiliation: 'Australian BioCommons',
github: 'ziadbkh',
contribution: ['contributor'],
orcid: '0000-0002-4032-5331'
],
[
name: 'Nathan Glades',
affiliation: 'UNSW Structural Biology Facility, Australia',
github: 'nbtm-sh',
contribution: ['contributor'],
orcid: ''
],
[
name: 'Evangelos Karatzas',
affiliation: 'EMBL-EBI, UK',
github: 'vagkaratzas',
contribution: ['contributor'],
orcid: '0000-0001-9132-8981'
],
]
homePage = 'https://github.com/nf-core/proteinfold'
description = """Protein 3D structure prediction pipeline"""
Expand Down
Loading