Skip to content

Commit

Permalink
Merge pull request #27 from raufs/main
Browse files Browse the repository at this point in the history
update to v1.3.6
  • Loading branch information
raufs authored Jul 10, 2023
2 parents 3006cf5 + 9245a19 commit aa538d3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,9 +273,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

## Updates

### version 1.3.6

- Fix conditional statement in determination of 'consensus directionality' in zol - should be flipped.

### version 1.3.5

- Fix mis-spelling of "Oomolog Group" to "Ortholog Group".
- Fix mis-spelling of "Oomolog Group" to "Ortholog Group" in consolidated zol report.

### version 1.3.4

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os

setup(name='zol',
version='1.3.5',
version='1.3.6',
description='',
url='http://github.com/Kalan-Lab/zol/',
author='Rauf Salamzade',
Expand Down
4 changes: 2 additions & 2 deletions zol/zol.py
Original file line number Diff line number Diff line change
Expand Up @@ -1317,8 +1317,8 @@ def determineConsensusOrderOfHGs(genbanks, ortho_matrix_file, logObject):
i = 1
for hg in ordered_hgs_list:
if not hg in set(['start', 'end']):
consensus_direction = '+'
if direction_forward_support[hg] >= direction_reverse_support[hg]: consensus_direction = '-'
consensus_direction = '-'
if direction_forward_support[hg] >= direction_reverse_support[hg]: consensus_direction = '+'
hg_order_scores[hg] = [i, consensus_direction]
i += 1
return hg_order_scores
Expand Down

0 comments on commit aa538d3

Please sign in to comment.