-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docs][python] Add autosummary #1392
Merged
Merged
Changes from 2 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
122e7d1
autosummary
ebezzi 89e833b
more files
ebezzi b71d7f6
Update doc/source/python-tiledbsoma-io.rst
ebezzi 839a34b
Update doc/source/python-tiledbsoma-logging.rst
ebezzi c28d9c9
Update doc/source/python-tiledbsoma.rst
ebezzi d9b975f
Update doc/source/python-tiledbsoma.rst
ebezzi 3cc91a9
remove private function
ebezzi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -18,17 +18,10 @@ Features: | |
* Enables out-of-core access to data aggregations much larger than single-host main memory | ||
* Enables distributed computation over datasets | ||
|
||
The tiledbsoma module | ||
--------------------- | ||
.. automodule:: tiledbsoma | ||
:members: | ||
|
||
The tiledbsoma.io module | ||
------------------------ | ||
.. automodule:: tiledbsoma.io | ||
:members: | ||
|
||
The tiledbsoma.logging module | ||
----------------------------- | ||
.. automodule:: tiledbsoma.logging | ||
:members: | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can be set to 1 if we don't want this toctree to include the subsections. |
||
|
||
python-tiledbsoma | ||
python-tiledbsoma-io | ||
python-tiledbsoma-logging |
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,22 @@ | ||
The tiledbsoma.io module | ||
===================== | ||
|
||
.. currentmodule:: tiledbsoma.io | ||
|
||
.. automodule:: tiledbsoma.io | ||
|
||
|
||
Functions | ||
------- | ||
|
||
.. autosummary:: | ||
:toctree: _autosummary/ | ||
:nosignatures: | ||
|
||
tiledbsoma.io.add_X_layer | ||
tiledbsoma.io.add_matrix_to_collection | ||
tiledbsoma.io.create_from_matrix | ||
tiledbsoma.io.from_anndata | ||
tiledbsoma.io.from_h5ad | ||
tiledbsoma.io.to_anndata | ||
tiledbsoma.io.to_h5ad | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let's go "top down"
ebezzi marked this conversation as resolved.
Show resolved
Hide resolved
|
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,19 @@ | ||
The tiledbsoma.logging module | ||
===================== | ||
|
||
.. currentmodule:: tiledbsoma.logging | ||
|
||
.. automodule:: tiledbsoma.logging | ||
|
||
|
||
Functions | ||
------- | ||
|
||
.. autosummary:: | ||
:toctree: _autosummary/ | ||
:nosignatures: | ||
|
||
tiledbsoma.logging.debug | ||
tiledbsoma.logging.info | ||
tiledbsoma.logging.log_io | ||
tiledbsoma.logging.warning | ||
ebezzi marked this conversation as resolved.
Show resolved
Hide resolved
|
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,52 @@ | ||
The tiledbsoma module | ||
===================== | ||
|
||
.. currentmodule:: tiledbsoma | ||
|
||
.. automodule:: tiledbsoma | ||
|
||
Classes | ||
------- | ||
|
||
.. autosummary:: | ||
:toctree: _autosummary/ | ||
:nosignatures: | ||
|
||
tiledbsoma.AxisColumnNames | ||
tiledbsoma.AxisQuery | ||
tiledbsoma.Collection | ||
tiledbsoma.DataFrame | ||
tiledbsoma.DenseNDArray | ||
tiledbsoma.Experiment | ||
tiledbsoma.ExperimentAxisQuery | ||
tiledbsoma.Measurement | ||
tiledbsoma.ResultOrder | ||
tiledbsoma.SOMATileDBContext | ||
tiledbsoma.SparseNDArray | ||
ebezzi marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
Exceptions | ||
---------- | ||
|
||
.. autosummary:: | ||
:toctree: _autosummary/ | ||
:nosignatures: | ||
|
||
tiledbsoma.DoesNotExistError | ||
tiledbsoma.SOMAError | ||
|
||
Functions | ||
--------- | ||
|
||
.. autosummary:: | ||
:toctree: _autosummary/ | ||
:nosignatures: | ||
|
||
tiledbsoma.get_implementation | ||
tiledbsoma.get_implementation_version | ||
tiledbsoma.get_storage_engine | ||
tiledbsoma.open | ||
tiledbsoma.show_package_versions | ||
tiledbsoma.tiledbsoma_stats_disable | ||
tiledbsoma.tiledbsoma_stats_dump | ||
tiledbsoma.tiledbsoma_stats_enable | ||
tiledbsoma.tiledbsoma_stats_reset | ||
ebezzi marked this conversation as resolved.
Show resolved
Hide resolved
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Colons should be removed as these end up into toctree entities.