-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
57 changed files
with
6,538 additions
and
1,809 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
name: Publish to PyPI and TestPyPI | ||
|
||
on: push | ||
on: | ||
push: | ||
branches: [master] | ||
|
||
jobs: | ||
build-n-publish: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Binomial | ||
======== | ||
|
||
Methods for calculating P-value for cytosine residues or genomic regions. | ||
|
||
.. currentmodule:: bismarkplot | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
:toctree: _Binom | ||
:template: class.rst | ||
|
||
RegionStat | ||
BinomialData |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
Genome | ||
====== | ||
|
||
Genome class | ||
|
||
.. currentmodule:: bismarkplot | ||
|
||
.. class:: Genome | ||
|
||
.. rubric:: Methods | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
:toctree: _Genome/_method | ||
:template: method.rst | ||
|
||
~Genome.all | ||
|
||
|
||
~Genome.cds | ||
|
||
|
||
~Genome.exon | ||
|
||
|
||
~Genome.from_custom | ||
|
||
|
||
~Genome.from_gff | ||
|
||
|
||
~Genome.gene_body | ||
|
||
|
||
~Genome.near_TES | ||
|
||
|
||
~Genome.near_TSS | ||
|
||
|
||
~Genome.other |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Metagene | ||
======== | ||
|
||
Metagene calculation and plotting related methods. | ||
|
||
.. currentmodule:: bismarkplot | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
:toctree: _Metagene | ||
:template: class.rst | ||
|
||
Metagene | ||
MetageneFiles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Plots | ||
===== | ||
|
||
Reference for plotting classes. | ||
|
||
.. currentmodule:: bismarkplot | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
:toctree: _Plots | ||
:template: class.rst | ||
|
||
LinePlot | ||
LinePlotFiles | ||
HeatMap | ||
HeatMapFiles |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{{ fullname }} | ||
{{ underline }} | ||
|
||
.. currentmodule:: {{ module }} | ||
|
||
.. class:: {{ objname }} | ||
|
||
{% block methods %} | ||
|
||
{% if methods %} | ||
.. rubric:: {{ _('Methods') }} | ||
|
||
.. autosummary:: | ||
:nosignatures: | ||
:toctree: _method | ||
:template: method.rst | ||
{% for item in methods %} | ||
{% if item != "__init__" %} | ||
{%- if item not in inherited_members %} | ||
~{{ name }}.{{ item }} | ||
{% endif %} | ||
{% endif %} | ||
{%- endfor %} | ||
{% endif %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{{ fullname | escape | underline}} | ||
|
||
.. currentmodule:: {{ module }} | ||
|
||
.. autoclass:: {{ objname }} | ||
|
||
{% block methods %} | ||
.. automethod:: __init__ | ||
|
||
{% if methods %} | ||
.. rubric:: {{ _('Methods') }} | ||
|
||
.. autosummary:: | ||
{% for item in methods %} | ||
~{{ name }}.{{ item }} | ||
{%- endfor %} | ||
{% endif %} | ||
{% endblock %} | ||
|
||
{% block attributes %} | ||
{% if attributes %} | ||
.. rubric:: {{ _('Attributes') }} | ||
|
||
.. autosummary:: | ||
{% for item in attributes %} | ||
~{{ name }}.{{ item }} | ||
{%- endfor %} | ||
{% endif %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{{ fullname }} | ||
{{ underline }} | ||
|
||
.. automethod:: {{ fullname }} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.