Skip to content

Commit

Permalink
change tags for the update 1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
junioreif committed Aug 6, 2024
1 parent 9a423e4 commit cb6c7ce
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion OpenMiChroM/ChromDynamics.py
Original file line number Diff line number Diff line change
Expand Up @@ -2276,7 +2276,7 @@ def printForces(self):

def printHeader(self):
print('{:^96s}'.format("***************************************************************************************"))
print('{:^96s}'.format("**** **** *** *** *** *** *** *** OpenMiChroM-1.0.8 *** *** *** *** *** *** **** ****"))
print('{:^96s}'.format("**** **** *** *** *** *** *** *** OpenMiChroM-1.0.9 *** *** *** *** *** *** **** ****"))
print('')
print('{:^96s}'.format("OpenMiChroM is a Python library for performing chromatin dynamics simulations."))
print('{:^96s}'.format("OpenMiChroM uses the OpenMM Python API,"))
Expand All @@ -2294,6 +2294,9 @@ def printHeader(self):
print('{:^96s}'.format("Oliveira Junior, A. B. et al."))
print('{:^96s}'.format("Chromosome Modeling on Downsampled Hi-C Maps Enhances the Compartmentalization Signal."))
print('{:^96s}'.format("J. Phys. Chem. B, doi:10.1021/acs.jpcb.1c04174."))
print('{:^96s}'.format("We also thank the polychrom <https://github.com/open2c/polychrom>"))
print('{:^96s}'.format("where part of this code was inspired."))
print('{:^96s}'.format("10.5281/zenodo.3579472."))
print('')
print('{:^96s}'.format("Copyright (c) 2024, The OpenMiChroM development team at"))
print('{:^96s}'.format("Rice University"))
Expand Down
2 changes: 1 addition & 1 deletion OpenMiChroM/CndbTools.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020-2023 The Center for Theoretical Biological Physics (CTBP) - Rice University
# Copyright (c) 2020-2024 The Center for Theoretical Biological Physics (CTBP) - Rice University
# This file is from the Open-MiChroM project, released under the MIT License.

R"""
Expand Down
2 changes: 1 addition & 1 deletion OpenMiChroM/Integrators.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020-2023 The Center for Theoretical Biological Physics (CTBP) - Rice University
# Copyright (c) 2020-2024 The Center for Theoretical Biological Physics (CTBP) - Rice University
# This file is from the Open-MiChroM project, released under the MIT License.

R"""
Expand Down
2 changes: 1 addition & 1 deletion OpenMiChroM/Optimization.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2020-2023 The Center for Theoretical Biological Physics (CTBP) - Rice University
# Copyright (c) 2020-2024 The Center for Theoretical Biological Physics (CTBP) - Rice University
# This file is from the Open-MiChroM project, released under the MIT License.

R"""
Expand Down
2 changes: 1 addition & 1 deletion OpenMiChroM/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.0.8'
__version__ = '1.0.9'

from .ChromDynamics import MiChroM
from .Optimization import FullTraining, CustomMiChroMTraining
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
with open(path.join(this_dir, "README.rst")) as f:
long_description = f.read()

__version__ = "1.0.8"
__version__ = "1.0.9"
for line in open(path.join("OpenMiChroM", "__init__.py")):
if line.startswith("__version__"):
exec(line.strip())
Expand Down

0 comments on commit cb6c7ce

Please sign in to comment.