Skip to content

Commit

Permalink
Updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
LucaCappelletti94 committed Jul 31, 2020
1 parent bed6669 commit a37a1e0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
Binary file added dist/keras_bed_sequence-1.1.6.tar.gz
Binary file not shown.
3 changes: 2 additions & 1 deletion keras_bed_sequence.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: keras-bed-sequence
Version: 1.1.5
Version: 1.1.6
Summary: Lazily one-hot encoding bed sequences using Keras Sequence.
Home-page: https://github.com/LucaCappelletti94/keras_bed_sequence
Author: Luca Cappelletti
Expand Down Expand Up @@ -74,4 +74,5 @@ Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >3.5.2
Provides-Extra: test
6 changes: 3 additions & 3 deletions keras_bed_sequence.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
numpy
numba
numba>=0.50
pandas
tensorflow
keras_mixed_sequence>=1.0.5
ucsc_genomes_downloader>=1.1.13
keras_mixed_sequence>=1.0.19
ucsc_genomes_downloader>=1.1.25

[test]
pytest
Expand Down
7 changes: 6 additions & 1 deletion tests/test_determinism.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@ def test_genomic_sequence_determinism():
y=VectorSequence(y, batch_size)
)
reference_mixed_sequence = MixedSequence(
x=BedSequence(genome, region, batch_size=len(region), shuffle=False),
x=BedSequence(
genome,
region,
batch_size=len(region),
shuffle=False
),
y=VectorSequence(y, batch_size=len(region), shuffle=False)
)
X, _ = reference_mixed_sequence[0]
Expand Down

0 comments on commit a37a1e0

Please sign in to comment.