Skip to content

Commit

Permalink
Version 2.4 (#67)
Browse files Browse the repository at this point in the history
* kipoiseq version and use_strand

* Bump version: 2.3.0 → 2.4.0

* cyvcf2 version

* pyranges version
  • Loading branch information
MuhammedHasan committed May 23, 2023
1 parent 3bef33d commit 31513da
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion mmsplice/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Jun Cheng & M.Hasan Celik"""
__email__ = 'chengju@in.tum.de'
__version__ = '2.3.0'
__version__ = '2.4.0'

from tensorflow.keras.models import load_model
from mmsplice.mmsplice import MMSplice, \
Expand Down
2 changes: 1 addition & 1 deletion mmsplice/exon_dataloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def _next(self, exon, variant, overhang=None, mask_module=None):
inputs = {
'seq': self.fasta.extract(Interval(
exon.chrom, exon.start - overhang[0],
exon.end + overhang[1], strand=exon.strand)).upper(),
exon.end + overhang[1], strand=exon.strand), use_strand=True).upper(),
'mut_seq': self.vseq_extractor.extract(
exon, [variant], overhang=overhang).upper()
}
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.3.0
current_version = 2.4.0
commit = True
tag = True

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,16 @@

requirements = [
'setuptools',
'kipoiseq>=0.7,<0.8',
'kipoiseq',
'cyvcf2',
'tensorflow',
'scipy',
'pandas',
'pyfaidx',
'tqdm',
'click',
'pyranges>=0.0.71'
'cyvcf2<=0.30.15',
'pyranges>=0.0.71,<0.0.126',
]

setup_requirements = ['pytest-runner', ]
Expand Down Expand Up @@ -57,6 +58,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/gagneurlab/mmsplice',
version='2.3.0',
version='2.4.0',
zip_safe=False
)

0 comments on commit 31513da

Please sign in to comment.