Skip to content

Commit e9cdbee

Browse files
authored
Merge pull request #1 from mlf-core/release/2.0.0
Release/2.0.0
2 parents 74f7241 + 003a855 commit e9cdbee

File tree

11 files changed

+558
-8246
lines changed

11 files changed

+558
-8246
lines changed

.cookietemple.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ full_name: Lukas Heumos
1313
email: lukas.heumos@posteo.net
1414
project_name: lcep-package
1515
project_short_description: Python package for lcep.
16-
version: 1.2.0
16+
version: 2.0.0
1717
license: MIT
1818
command_line_interface: Click
1919
testing_library: pytest

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,6 @@ dmypy.json
134134
# Coala
135135
*.orig
136136

137+
# Mac OS generated files
138+
.DS_Store
139+
.DS_Store?

CHANGELOG.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ Changelog
44

55
This project adheres to `Semantic Versioning <https://semver.org/>`_.
66

7+
2.0.0 (2021-04-08)
8+
------------------
9+
10+
**Added**
11+
12+
* Added model (v2) trained on recount2 TCGA/GTEx liver(cancer) data obtained from mlf-core/lcep
13+
* Replaced test data
14+
15+
**Fixed**
16+
17+
**Dependencies**
18+
19+
**Deprecated**
20+
21+
722
1.2.0 (2020-08-28)
823
------------------
924

cookietemple.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.2.0
2+
current_version = 2.0.0
33

44
[bumpversion_files_whitelisted]
55
setup_file = setup.py

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
# the built documents.
5454
#
5555
# The short X.Y version.
56-
version = '1.2.0'
56+
version = '2.0.0'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '1.2.0'
58+
release = '2.0.0'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

lcep_package/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = """Lukas Heumos"""
44
__email__ = 'lukas.heumos@posteo.net'
5-
__version__ = '1.2.0'
5+
__version__ = '2.0.0'

lcep_package/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def main(input: str, model: str, cuda: bool, output: str):
3030

3131
print('[bold blue]Run [green]lcep-package --help [blue]for an overview of all commands\n')
3232
if not model:
33-
model = get_xgboost_model(f'{WD}/models/model_28.08.2020_v1.xgb')
33+
model = get_xgboost_model(f'{WD}/models/model_08.04.2021_v2.xgb')
3434
else:
3535
model = get_xgboost_model(model)
3636
if cuda:

lcep_package/data/test.tsv

Lines changed: 531 additions & 8237 deletions
Large diffs are not rendered by default.
195 KB
Binary file not shown.

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rich==6.0.0
1+
rich==9.1.0
22
click==7.1.2
3-
xgboost==1.2.0
3+
xgboost==1.2.1
44
numpy==1.19.1

0 commit comments

Comments
 (0)