Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Nicolas MAILLET
rpg
Commits
54c61dd0
Commit
54c61dd0
authored
Mar 07, 2019
by
Nicolas MAILLET
Browse files
v 1.0.9
parent
251bc767
Pipeline
#10894
passed with stages
in 1 minute and 2 seconds
Changes
4
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.rst
View file @
54c61dd0
=========
CHANGELOG
=========
- 1.0.9
Correct a bug of random dict in the creation of new enzyme
Modifying auto repr of a rule and argument name
Fixing typo
- 1.0.8
Adding doc for -p option
...
...
docs/conf.py
View file @
54c61dd0
...
...
@@ -26,7 +26,7 @@ author = 'Nicolas Maillet'
# The short X.Y version
version
=
''
# The full version, including alpha/beta/rc tags
release
=
'1.0.
8
'
release
=
'1.0.
9
'
# -- General configuration ---------------------------------------------------
...
...
rpg/RapidPeptidesGenerator.py
View file @
54c61dd0
...
...
@@ -29,9 +29,9 @@
necessary functions
"""
__version_info__
=
(
'1'
,
'0'
,
'
8
'
)
__version_info__
=
(
'1'
,
'0'
,
'
9
'
)
__version__
=
'.'
.
join
(
__version_info__
)
__revision_date__
=
"2019-0
1-21
"
__revision_date__
=
"2019-0
3-07
"
__author__
=
"Nicolas Maillet"
import
argparse
...
...
setup.py
View file @
54c61dd0
...
...
@@ -4,7 +4,7 @@ from setuptools import setup, find_packages
_MAJOR
=
1
_MINOR
=
0
_MICRO
=
8
_MICRO
=
9
version
=
'%d.%d.%d'
%
(
_MAJOR
,
_MINOR
,
_MICRO
)
release
=
'%d.%d'
%
(
_MAJOR
,
_MINOR
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment