Skip to content

Commit e35688c

Browse files
committed
fix hardcoded MAJIQ param bug
1 parent b743654 commit e35688c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[![PyPI version](https://badge.fury.io/py/nease.svg)](https://badge.fury.io/py/nease)
2+
3+
4+
15
# NEASE
26
NEASE (Network Enrichment method for Alternative Splicing Events) a tool for functional enrichment of alternative splicing exons/events.
37

nease/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def process_MAJIQ(data,
323323
if len(targets)==len(junc_confid[j]):
324324

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

328328
#save
329329
jun_to_target[j]=targets

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

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

0 commit comments

Comments
 (0)