Skip to content

Commit

Permalink
Merge pull request #98 from rasbt/v0.3
Browse files Browse the repository at this point in the history
v0.3.0
  • Loading branch information
rasbt committed Apr 7, 2022
2 parents 410403a + 40cdffc commit d543323
Show file tree
Hide file tree
Showing 21 changed files with 292 additions and 1,046 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
site

docs/api_subpackages/
docs/api_modules
docs/py-docstring-parser/
docs/site/
docs/sources/api_modules/
Expand Down
2 changes: 1 addition & 1 deletion biopandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#

__version__ = '0.3.0dev0'
__version__ = '0.3.0'
__author__ = "Sebastian Raschka <[email protected]>"
25 changes: 15 additions & 10 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,29 @@
The CHANGELOG for the current development version is available at
[https://github.com/rasbt/biopandas/blob/main/docs/sources/CHANGELOG.md](https://github.com/rasbt/biopandas/blob/main/docs/sources/CHANGELOG.md).

### 0.3.0dev0 (TBD)
### 0.3.0 (04-06-2022)

##### Downloads

-

- [Source code (zip)](https://github.com/rasbt/biopandas/archive/v0.3.0.zip)
- [Source code (tar.gz)](https://github.com/rasbt/biopandas/archive/v0.3.0.tar.gz)



##### New Features

- Adds support for parsing mmCIF protein structure files (via PR [94](https://github.com/rasbt/biopandas/pull/94/files))
- Adds support for parsing mmCIF protein structure files (via [Arian Jamasb](https://github.com/a-r-j), PR #[94](https://github.com/rasbt/biopandas/pull/94/files))

##### Changes

-
- -

##### Bug Fixes

- Fixes a bug where coordinates with more than 4 digits before the decimal point caused a column shift when saving a PDB file. (via PR #[90](https://github.com/rasbt/biopandas/pull/90/files))
- Fixes a bug where the invert parameter in get_carbon was selecting the wrong case. (via PR #[96](https://github.com/rasbt/biopandas/pull/96/files))
- Fixes a bug where coordinates with more than 4 digits before the decimal point caused a column shift when saving a PDB file. (via PR #[90](https://github.com/rasbt/biopandas/pull/90/files))
- Fixes a bug where the invert parameter in get_carbon was selecting the wrong case. (via [Arian Jamasb](https://github.com/a-r-j) PR #[96](https://github.com/rasbt/biopandas/pull/96/files))



### 0.2.9 (08-30-2021)
Expand All @@ -36,8 +41,8 @@ The CHANGELOG for the current development version is available at

##### Changes

- Now also allow `.ent` and `.ent.gz` file endings for PDB files. (via PR [82](https://github.com/rasbt/biopandas/pull/82/files)
- Added Python 3.8 and 3.9 to setup.py in order to support these versions via conda-forge. (via PR [87](https://github.com/rasbt/biopandas/pull/87/files)
- Now also allow `.ent` and `.ent.gz` file endings for PDB files. (via PR #[82](https://github.com/rasbt/biopandas/pull/82/files)
- Added Python 3.8 and 3.9 to setup.py in order to support these versions via conda-forge. (via PR #[87](https://github.com/rasbt/biopandas/pull/87/files)

##### Bug Fixes

Expand All @@ -52,11 +57,11 @@ The CHANGELOG for the current development version is available at

##### New Features

- A `PandasPdb.read_pdb_from_list` method was added analogous to the existing `PandasMol2.read_mol2_from_list` (via PR [72](https://github.com/rasbt/biopandas/pull/72/files) by [dominiquesydow](https://github.com/dominiquesydow))
- A `PandasPdb.read_pdb_from_list` method was added analogous to the existing `PandasMol2.read_mol2_from_list` (via PR #[72](https://github.com/rasbt/biopandas/pull/72/files) by [dominiquesydow](https://github.com/dominiquesydow))

##### Changes

- `ValueError` raising and improved file format error messages for `read_pdb` and `read_mol2` functionality. (via PR [73](https://github.com/rasbt/biopandas/pull/73/files) by [dominiquesydow](https://github.com/dominiquesydow))
- `ValueError` raising and improved file format error messages for `read_pdb` and `read_mol2` functionality. (via PR #[73](https://github.com/rasbt/biopandas/pull/73/files) by [dominiquesydow](https://github.com/dominiquesydow))

##### Bug Fixes

Expand Down
6 changes: 3 additions & 3 deletions docs/api_modules/biopandas.mmcif/PandasMMCIF.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## PandasMMCIF
## PandasMmcif

*PandasMMCIF(use_auth: bool = True)*
*PandasMmcif(use_auth: bool = True)*

None

Expand Down Expand Up @@ -99,7 +99,7 @@ Computes Euclidean distance between atoms and a 3D point.

*fetch_mmcif(pdb_code: str)*

Fetches mmcif file contents from the Protein Databank at rcsb.org.
Fetches mmCIF file contents from the Protein Databank at rcsb.org.

**Parameters**

Expand Down
8 changes: 4 additions & 4 deletions docs/api_subpackages/biopandas.mmcif.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
biopandas version: 0.3.0dev0
## PandasMMCIF
biopandas version: 0.3.0
## PandasMmcif

*PandasMMCIF(use_auth: bool = True)*
*PandasMmcif(use_auth: bool = True)*

None

Expand Down Expand Up @@ -100,7 +100,7 @@ Computes Euclidean distance between atoms and a 3D point.

*fetch_mmcif(pdb_code: str)*

Fetches mmcif file contents from the Protein Databank at rcsb.org.
Fetches mmCIF file contents from the Protein Databank at rcsb.org.

**Parameters**

Expand Down
2 changes: 1 addition & 1 deletion docs/api_subpackages/biopandas.mol2.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
biopandas version: 0.3.0dev0
biopandas version: 0.3.0
## PandasMol2

*PandasMol2()*
Expand Down
2 changes: 1 addition & 1 deletion docs/api_subpackages/biopandas.pdb.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
biopandas version: 0.3.0dev0
biopandas version: 0.3.0
## PandasPdb

*PandasPdb()*
Expand Down
2 changes: 1 addition & 1 deletion docs/api_subpackages/biopandas.testutils.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
biopandas version: 0.3.0dev0
biopandas version: 0.3.0
## assert_raises

*assert_raises(exception_type, message, func, *args, **kwargs)*
Expand Down
231 changes: 0 additions & 231 deletions docs/sources/api_subpackages/biopandas.mmcif.md

This file was deleted.

Loading

0 comments on commit d543323

Please sign in to comment.