https://github.com/lucacappelletti94/keras_biological_gaps_sequences
Python package to generate on-hot encoded biological gaps to use for training and prediction.
https://github.com/lucacappelletti94/keras_biological_gaps_sequences
Last synced: 3 months ago
JSON representation
Python package to generate on-hot encoded biological gaps to use for training and prediction.
- Host: GitHub
- URL: https://github.com/lucacappelletti94/keras_biological_gaps_sequences
- Owner: LucaCappelletti94
- License: mit
- Created: 2020-03-03T09:25:43.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-29T21:12:24.000Z (about 5 years ago)
- Last Synced: 2025-02-08T13:13:52.651Z (4 months ago)
- Language: Python
- Size: 67.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
keras_biological_gaps_sequencess
=========================================================================================
|travis| |sonar_quality| |sonar_maintainability| |codacy|
|code_climate_maintainability| |pip| |downloads|Python package to generate on-hot encoded biological gaps to use for training and prediction.
How do I install this package?
----------------------------------------------
As usual, just download it using pip:.. code:: shell
pip install keras_biological_gaps_sequencess
Tests Coverage
----------------------------------------------
Since some software handling coverages sometimes
get slightly different results, here's three of them:|coveralls| |sonar_coverage| |code_climate_coverage|
Available datasets
-----------------------------------------------
Currently, there is only a dataset of gaps available
within the package: the mapping of known gaps from hg19
to hg38. In the future, we will be adding more mapping.Usage example
-----------------------------------------------
To use the sequence you can do as follows:.. code:: Python
biological_gap_sequence = BiologicalGapsSequence(
source="hg19",
target="hg38",
source_window_size=1000,
target_window_size=1000,
batch_size=32
)model = build_my_denoiser()
model.fit_generator(
biological_gap_sequence,
steps_per_epoch=biological_gap_sequence.steps_per_epoch,
epochs=2,
shuffle=True
).. |travis| image:: https://travis-ci.org/LucaCappelletti94/keras_biological_gaps_sequencess.png
:target: https://travis-ci.org/LucaCappelletti94/keras_biological_gaps_sequencess
:alt: Travis CI build.. |sonar_quality| image:: https://sonarcloud.io/api/project_badges/measure?project=LucaCappelletti94_keras_biological_gaps_sequencess&metric=alert_status
:target: https://sonarcloud.io/dashboard/index/LucaCappelletti94_keras_biological_gaps_sequencess
:alt: SonarCloud Quality.. |sonar_maintainability| image:: https://sonarcloud.io/api/project_badges/measure?project=LucaCappelletti94_keras_biological_gaps_sequencess&metric=sqale_rating
:target: https://sonarcloud.io/dashboard/index/LucaCappelletti94_keras_biological_gaps_sequencess
:alt: SonarCloud Maintainability.. |sonar_coverage| image:: https://sonarcloud.io/api/project_badges/measure?project=LucaCappelletti94_keras_biological_gaps_sequencess&metric=coverage
:target: https://sonarcloud.io/dashboard/index/LucaCappelletti94_keras_biological_gaps_sequencess
:alt: SonarCloud Coverage.. |coveralls| image:: https://coveralls.io/repos/github/LucaCappelletti94/keras_biological_gaps_sequencess/badge.svg?branch=master
:target: https://coveralls.io/github/LucaCappelletti94/keras_biological_gaps_sequencess?branch=master
:alt: Coveralls Coverage.. |pip| image:: https://badge.fury.io/py/keras-biological-gaps-sequence.svg
:target: https://badge.fury.io/py/keras-biological-gaps-sequence
:alt: Pypi project.. |downloads| image:: https://pepy.tech/badge/keras-biological-gaps-sequence
:target: https://pepy.tech/badge/keras-biological-gaps-sequence
:alt: Pypi total project downloads.. |codacy| image:: https://api.codacy.com/project/badge/Grade/90f25e6d3ab3448d9da0401f441dff79
:target: https://www.codacy.com/manual/LucaCappelletti94/keras_biological_gaps_sequencess?utm_source=github.com&utm_medium=referral&utm_content=LucaCappelletti94/keras_biological_gaps_sequencess&utm_campaign=Badge_Grade
:alt: Codacy Maintainability.. |code_climate_maintainability| image:: https://api.codeclimate.com/v1/badges/0bc73c94073503d4d54a/maintainability
:target: https://codeclimate.com/github/LucaCappelletti94/keras_biological_gaps_sequencess/maintainability
:alt: Maintainability.. |code_climate_coverage| image:: https://api.codeclimate.com/v1/badges/0bc73c94073503d4d54a/test_coverage
:target: https://codeclimate.com/github/LucaCappelletti94/keras_biological_gaps_sequencess/test_coverage
:alt: Code Climate Coverate