Skip to content

Commit 05b3b54

Browse files
Release and docs (#85)
1 parent 578cce9 commit 05b3b54

File tree

5 files changed

+19
-18
lines changed

5 files changed

+19
-18
lines changed

README.md

+14-13
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,20 @@
2626

2727
--------------------------------------------------------------------------------
2828

29+
**Citing**
30+
31+
32+
If you find *ChemicalX* and the new datasets useful in your research, please consider adding the following citation:
33+
34+
```bibtex
35+
@inproceedings{chemicalx,
36+
author = {Benedek Rozemberczki and Charles Tapley Hoyt and Anna Gogleva and Piotr Grabowski and Klas Karis and Andrej Lamov and Andriy Nikolov and Sebastian Nilsson and Michael Ughetto and Yu Wang and Tyler Derr and Benjamin Gyori},
37+
title = {{ChemicalX: A Deep Learning Library fo Drug Pair Scoring}},
38+
year = {2022},
39+
}
40+
```
41+
--------------------------------------------------------------------------------
42+
2943
**Drug Pair Scoring Explained**
3044

3145
Our framework solves the [drug pair scoring task](https://arxiv.org/abs/2111.02916) of computational chemistry. In this task a machine learning model has to predict the outcome of administering two drugs together in a biological or chemical context. Deep learning models which solve this task have an architecture with two distinctive parts:
@@ -80,19 +94,6 @@ We provide in-depth case study like tutorials in the [Documentation](https://ch
8094

8195
--------------------------------------------------------------------------------
8296

83-
**Citing**
84-
85-
86-
If you find *ChemicalX* and the new datasets useful in your research, please consider adding the following citation:
87-
88-
```bibtex
89-
@inproceedings{chemicalx,
90-
author = {Benedek Rozemberczki and Charles Tapley Hoyt and Benjamin Gyori},
91-
title = {{ChemicalX: A Deep Learning Library fo Drug Pair Scoring}},
92-
year = {2022},
93-
}
94-
```
95-
9697
**Methods Included**
9798

9899
In detail, the following drug pair scoring models were implemented.

chemicalx/models/deepsynergy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313

1414
class DeepSynergy(Model):
15-
r"""The DeepSynergy model from [preuer2018]_.
15+
r"""An implementation of the DeepSynergy model from [preuer2018]_.
1616
1717
.. seealso:: This model was suggested in https://github.com/AstraZeneca/chemicalx/issues/16
1818

chemicalx/models/epgcnds.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
class EPGCNDS(Model):
19-
r"""The EPGCN-DS model from [sun2020]_.
19+
r"""An implementation of the EPGCN-DS model from [sun2020]_.
2020
2121
.. seealso:: This model was suggested in https://github.com/AstraZeneca/chemicalx/issues/22
2222

chemicalx/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Contains the version of ChemicalX."""
22

3-
__version__ = "0.0.9"
3+
__version__ = "0.1.0"

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@
5454
setup(
5555
name="chemicalx",
5656
packages=find_packages(),
57-
version="0.0.8",
57+
version="0.1.0",
5858
license="Apache License, Version 2.0",
5959
description="A Deep Learning Library for Drug Pair Scoring.",
6060
author="Benedek Rozemberczki and Charles Hoyt",
6161
author_email="[email protected]",
6262
url="https://github.com/AstraZeneca/chemicalx",
63-
download_url="https://github.com/AstraZeneca/chemicalx/archive/v0.0.8.tar.gz",
63+
download_url="https://github.com/AstraZeneca/chemicalx/archive/v0.1.0.tar.gz",
6464
keywords=keywords,
6565
install_requires=install_requires,
6666
setup_requires=setup_requires,

0 commit comments

Comments
 (0)