Skip to content

Commit

Permalink
Version increment due to bioconda/pypi support
Browse files Browse the repository at this point in the history
  • Loading branch information
khb7840 committed Jan 6, 2024
1 parent 4178b10 commit f868b95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="foldcomp",
version="0.0.6",
version="0.0.7",
description="Foldcomp compresses protein structures with torsion angles effectively. It compresses the backbone atoms to 8 bytes and the side chain to additionally 4-5 byes per residue, an averaged-sized protein of 350 residues requires ~4.2kb. Foldcomp is a C++ library with Python bindings.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* foldcomp compress input.pdb output.fcz
* foldcomp decompress input.fcz output.pdb
* ---
* Last Modified: 2023-12-29 12:29:26
* Last Modified: 2024-01-06 22:10:08
* Modified By: Hyunbin Kim ([email protected])
* ---
* Copyright © 2021 Hyunbin Kim, All rights reserved
Expand Down Expand Up @@ -58,7 +58,7 @@ static int ext_merge = 1;
static int overwrite = 0;

// version
#define FOLDCOMP_VERSION "0.0.6"
#define FOLDCOMP_VERSION "0.0.7"

int print_usage(void) {
std::cout << "Usage: foldcomp compress <pdb|cif> [<fcz>]" << std::endl;
Expand Down

0 comments on commit f868b95

Please sign in to comment.