Skip to content

Commit

Permalink
Release v1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
valentynbez committed Apr 1, 2024
1 parent 3120d24 commit 4c80e37
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 7 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
[Unreleased]: https://github.com/bioinf-MCB/Metagenomic-DeepFRI/compare/v1.1.4...HEAD
[Unreleased]: https://github.com/bioinf-MCB/Metagenomic-DeepFRI/compare/v1.1.5...HEAD

## [1.1.5] - 2024-04-01
[1.1.5]: https://github.com/bioinf-MCB/Metagenomic-DeepFRI/compare/v1.1.4...v1.1.5

### Added
- improved logging
- support for ESM databases (closes #80)

### Changed
- retrieval of structures from PDB & FoldComp databases
- optimized contact map alignment via Cython - improved search in large databases (ESM)


## [v1.1.4] - 2024-03-23
[v1.1.4]: https://github.com/bioinf-MCB/Metagenomic-DeepFRI/compare/v1.1.3...v1.1.4
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,18 @@ Metagenomic-DeepFRI addresses such need, building upon efficient libraries. It i

## 🔧 Installation

1. Clone repo locally
1. Download environment YAML.
```{code-block} bash
git clone https://github.com/bioinf-mcb/Metagenomic-DeepFRI
cd Metagenomic-DeepFRI
wget https://raw.githubusercontent.com/bioinf-mcb/Metagenomic-DeepFRI/main/environment.yml
```
2. Setup conda environment
2. Setup conda environment and actiate it.
```{code-block} bash
conda env create --name deepfri --file environment.yml
conda activate deepfri
# Optional cleanup
rm environment.yml
```
3. Show help message
3. Run and view the help message.
```{code-block} bash
mDeepFRI --help
```
Expand Down
2 changes: 1 addition & 1 deletion mDeepFRI/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

__version__ = "1.1.4"
__version__ = "1.1.5"

repo_url = "https://huggingface.co/valentynbez/mDeepFRI/resolve/main/"

Expand Down
2 changes: 2 additions & 0 deletions mDeepFRI/predict.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import json

import numpy as np

cimport numpy as np
Expand Down

0 comments on commit 4c80e37

Please sign in to comment.