Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 3.4.0 #97

Merged
merged 7 commits into from
Dec 15, 2023
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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
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).

## v3.4.0 - 2023-12-12

### `Added`

- [#93](https://github.com/KohlbacherLab/epytope/pull/93) Added NetMHCIIpan version 4.2 interface [#92](https://github.com/KohlbacherLab/epytope/issues/92)
- [#96](https://github.com/KohlbacherLab/epytope/pull/96) Added NetMHCIIpan version 4.3 interface [#95](https://github.com/KohlbacherLab/epytope/issues/95)

### `Changed`

### `Fixed`

- [#93](https://github.com/KohlbacherLab/epytope/pull/93) Fixed length restriction of NetMHCIIpan interfaces [#91](https://github.com/KohlbacherLab/epytope/issues/91)

## v3.3.1 - 2023-04-25

### `Added`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Currently **epytope** provides implementations of several prediction methods or
- [NetMHC](https://pubmed.ncbi.nlm.nih.gov/26515819/) 3.0, 3.4, 4.0
- [NetMHCII](https://pubmed.ncbi.nlm.nih.gov/29315598/) 2.2, 2.3
- [NetMHCpan](https://pubmed.ncbi.nlm.nih.gov/28978689/) 2.4, 2.8, 3.0, 4.0, 4.1
- [NetMHCIIpan](https://pubmed.ncbi.nlm.nih.gov/32406916/) 3.0, 3.1, 4.0, 4.1
- [NetMHCIIpan](https://pubmed.ncbi.nlm.nih.gov/38000035/) 3.0, 3.1, 4.0, 4.1, 4.2, 4.3
- [PickPocket](https://pubmed.ncbi.nlm.nih.gov/19297351/) 1.1
- [NetCTLpan](https://pubmed.ncbi.nlm.nih.gov/20379710/) 1.1
- Epitope Selection
Expand Down
6 changes: 3 additions & 3 deletions epytope/tutorials/EpitopePrediction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,10 @@
"output_type": "stream",
"text": [
"netmhc 3.0a,3.4,4.0\n",
"netmhcpan 2.4,2.8,3.0,4.0\n",
"netmhcpan 2.4,2.8,3.0,4.0,4.1\n",
"netmhcstabpan 1.0\n",
"netmhcii 2.2\n",
"netmhciipan 3.0,3.1\n",
"netmhciipan 3.0,3.1,4.0,4.1,4.2,4.3\n",
"pickpocket 1.1\n",
"netctlpan 1.1\n",
"syfpeithi 1.0\n",
Expand Down Expand Up @@ -1085,7 +1085,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.13"
"version": "3.7.12"
}
},
"nbformat": 4,
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
name='epytope',

# Version:
version='3.3.1',
version='3.4.0',

description='A Framework for Epitope Detection and Vaccine Design',
long_description=long_description,
Expand All @@ -32,11 +32,11 @@

# Author details
author='Benjamin Schubert, Mathias Walzer, Christopher Mohr, Leon Kuchenbecker',
author_email='[email protected], [email protected], [email protected], [email protected] ',
author_email='[email protected], [email protected], [email protected], [email protected] ',

# maintainer details
maintainer='Christopher Mohr',
maintainer_email='christopher.mohr@uni-tuebingen.de',
maintainer='Christopher Mohr, Jonas Scheid',
maintainer_email='[email protected], jonas.scheid@uni-tuebingen.de',

# Choose your license
license='BSD',
Expand Down
Loading