-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added hierarchy to user and developer api (#779)
* Added further collapsable sections * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Removed classes from docs as in #778 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * lint fix attempt * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fixing linting 2 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
41c57a1
commit 2acb484
Showing
28 changed files
with
207 additions
and
215 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 |
---|---|---|
|
@@ -22,3 +22,4 @@ help: | |
clean: | ||
@rm -rf $(BUILDDIR)/* | ||
@rm -rf $(SOURCEDIR)/genapi/ | ||
@rm -rf $(SOURCEDIR)/**/genapi/ |
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,13 @@ | ||
Backends | ||
~~~~~~~~ | ||
.. module:: moscot.backends | ||
.. currentmodule:: moscot | ||
.. autosummary:: | ||
:toctree: genapi | ||
|
||
backends.ott.SinkhornSolver | ||
backends.ott.GWSolver | ||
backends.ott.OTTOutput | ||
backends.ott.GraphOTTOutput | ||
backends.utils.get_solver | ||
backends.utils.get_available_backends |
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,35 @@ | ||
Base | ||
~~~~ | ||
.. module:: moscot.base | ||
.. currentmodule:: moscot.base | ||
.. autosummary:: | ||
:toctree: genapi | ||
|
||
problems.BaseProblem | ||
problems.OTProblem | ||
problems.BirthDeathProblem | ||
problems.BaseCompoundProblem | ||
problems.CompoundProblem | ||
cost.BaseCost | ||
problems.AnalysisMixin | ||
problems.BirthDeathMixin | ||
problems.birth_death.beta | ||
problems.birth_death.delta | ||
|
||
.. module:: moscot.solvers | ||
.. currentmodule:: moscot.base | ||
.. autosummary:: | ||
:toctree: genapi | ||
|
||
solver.BaseSolver | ||
solver.OTSolver | ||
|
||
.. autosummary:: | ||
:toctree: genapi | ||
|
||
output.BaseDiscreteSolverOutput | ||
output.MatrixSolverOutput | ||
solver.BaseSolver | ||
solver.OTSolver | ||
output.BaseDiscreteSolverOutput | ||
output.MatrixSolverOutput |
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,12 @@ | ||
Costs | ||
~~~~~ | ||
.. module:: moscot.costs | ||
.. currentmodule:: moscot | ||
.. autosummary:: | ||
:toctree: genapi | ||
|
||
costs.BarcodeDistance | ||
costs.LeafDistance | ||
costs.get_cost | ||
costs.get_available_costs | ||
costs.register_cost |
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,12 @@ | ||
Developer API | ||
############# | ||
|
||
.. module:: moscot.dev | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
backends | ||
costs | ||
base | ||
utils |
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,21 @@ | ||
Utils | ||
~~~~~ | ||
.. module:: moscot.utils | ||
.. currentmodule:: moscot.utils | ||
.. autosummary:: | ||
:toctree: genapi | ||
|
||
subset_policy.SubsetPolicy | ||
subset_policy.OrderedPolicy | ||
subset_policy.StarPolicy | ||
subset_policy.ExternalStarPolicy | ||
subset_policy.SequentialPolicy | ||
subset_policy.TriangularPolicy | ||
subset_policy.ExplicitPolicy | ||
data.transcription_factors | ||
data.proliferation_markers | ||
data.apoptosis_markers | ||
tagged_array.TaggedArray | ||
tagged_array.Tag | ||
tagged_array.DistributionCollection | ||
tagged_array.DistributionContainer |
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 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,18 @@ | ||
Datasets | ||
~~~~~~~~ | ||
.. module:: moscot.datasets | ||
.. currentmodule:: moscot | ||
.. autosummary:: | ||
:toctree: genapi | ||
|
||
datasets.bone_marrow | ||
datasets.c_elegans | ||
datasets.drosophila | ||
datasets.hspc | ||
datasets.mosta | ||
datasets.pancreas_multiome | ||
datasets.sciplex | ||
datasets.sim_align | ||
datasets.simulate_data | ||
datasets.tedsim | ||
datasets.zebrafish |
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,15 @@ | ||
User API | ||
######## | ||
|
||
.. module:: moscot.user | ||
|
||
Import :mod:`moscot` as:: | ||
|
||
import moscot as mt | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
problems | ||
plotting | ||
datasets |
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,11 @@ | ||
Plotting | ||
~~~~~~~~ | ||
.. module:: moscot.plotting | ||
.. currentmodule:: moscot | ||
.. autosummary:: | ||
:toctree: genapi | ||
|
||
plotting.cell_transition | ||
plotting.sankey | ||
plotting.push | ||
plotting.pull |
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,24 @@ | ||
Biological Problems | ||
~~~~~~~~~~~~~~~~~~~ | ||
.. module:: moscot.problems | ||
.. currentmodule:: moscot.problems | ||
.. autosummary:: | ||
:toctree: genapi | ||
|
||
time.TemporalProblem | ||
time.LineageProblem | ||
space.AlignmentProblem | ||
space.MappingProblem | ||
spatiotemporal.SpatioTemporalProblem | ||
cross_modality.TranslationProblem | ||
|
||
Generic Problems | ||
~~~~~~~~~~~~~~~~ | ||
.. module:: moscot.generic | ||
.. currentmodule:: moscot.problems | ||
.. autosummary:: | ||
:toctree: genapi | ||
|
||
generic.SinkhornProblem | ||
generic.GWProblem | ||
generic.FGWProblem |
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
Oops, something went wrong.