Skip to content
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,23 +148,23 @@ pip install aspect
Install chemistry support if you want SMILES featurisation via `schemist`:

```bash
pip install "aspect[chem]"
pip install "aspect-data[chem]"
```

### Chemprop support

Install Chemprop support if you want to prepare Chemprop-style molecular data:

```bash
pip install "aspect[chemprop]"
pip install "aspect-data[chemprop]"
```

### Taxonomic features

Install taxonomy support if you want species or taxon-ID features via `vectome`:

```bash
pip install "aspect[bio]"
pip install "aspect-data[bio]"
```

### Deep-learning features
Expand Down
2 changes: 1 addition & 1 deletion aspect/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from importlib.metadata import version

app_name = "aspect"
app_name = "aspect-data"
__author__ = "Eachan Johnson"
__version__ = version(app_name)
2 changes: 1 addition & 1 deletion aspect/transform/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ColumnTransform:
'affinity'
>>> ct.name
'log'
>>> ct.output_column.startswith("aspect/")
>>> ct.output_column.startswith("aspect-data/")
True

Output column is deterministic:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
name = "aspect"
name = "aspect-data"
version = "0.0.1"
authors = [
{ name="Eachan Johnson", email="eachan.johnson@crick.ac.uk" },
Expand Down Expand Up @@ -47,7 +47,7 @@ chem = ["schemist>=0.0.6"]
chemprop = ["chemprop>=2.1.0"]
deep = ["transformers"]
bio = ["vectome>=0.0.4"]
dev = ["aspect[chem,bio]", "pytest>=7.4", "flake8"]
dev = ["aspect-data[chem,bio]", "pytest>=7.4", "flake8"]

[project.urls]
"Homepage" = "https://github.com/scbirlab/aspect"
Expand All @@ -69,4 +69,4 @@ requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[test]
deps = ["pytest-cov", "aspect[dev]"]
deps = ["pytest-cov", "aspect-data[dev]"]
Loading