Skip to content

Commit

Permalink
fix hardcoded MAJIQ param bug
Browse files Browse the repository at this point in the history
  • Loading branch information
louadi committed Apr 21, 2022
1 parent b743654 commit e35688c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[![PyPI version](https://badge.fury.io/py/nease.svg)](https://badge.fury.io/py/nease)



# NEASE
NEASE (Network Enrichment method for Alternative Splicing Events) a tool for functional enrichment of alternative splicing exons/events.

Expand Down
2 changes: 1 addition & 1 deletion nease/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def process_MAJIQ(data,
if len(targets)==len(junc_confid[j]):

#filter low confident diff used event
targets=[ x for x,y in zip(targets, junc_confid[j]) if y>= 0.95]
targets=[ x for x,y in zip(targets, junc_confid[j]) if y>= Majiq_confidence]

#save
jun_to_target[j]=targets
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


setup(name='nease',
version='1.2',
version='1.2.2',
description='NEASE: A network-based approach for the enrichment of alternative splicing events',
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit e35688c

Please sign in to comment.