Skip to content

Commit

Permalink
bump version: v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alondmnt committed Oct 28, 2022
1 parent c3ab5d6 commit 9bf647e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
14 changes: 11 additions & 3 deletions codonbias/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,30 @@
- Directional Codon Bias Score (DCBS)
- Codon Usage Frequency Similarity (CUFS)
The package contains 4 submodules:
This package also includes tools for sequence optimization based on these
codon usage models, and generators of random sequence permutations that
can be used to compute empirical p-values and z-scores.
The package contains 6 submodules:
- codonbias.stats: Classes for basepair / codon statistics.
- codonbias.scores: Models / scores that operate on individual sequences
independently.
- codonbias.pairwise: Models / scores that operate on pairs of sequences.
- codonbias.optimizers: Algorithms for score-based optimization of a sequence.
- codonbias.optimizers: Algorithms for score-based optimization of a
sequence.
- codonbias.random: Random sequence permutations for empirical z-scores
and p-values.
- codonbias.utils: Helper functions for the other submodules.
"""

__version__ = "0.2.0"
__version__ = "0.3.0"
__author__ = 'Alon Diament'

import codonbias.utils
import codonbias.stats
import codonbias.scores
import codonbias.pairwise
import codonbias.optimizers
import codonbias.random
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
install_requires=['numpy',
'scipy',
'pandas',
'pandarallel'
],

classifiers=[
Expand Down

0 comments on commit 9bf647e

Please sign in to comment.