Skip to content

Commit

Permalink
Merge pull request #9 from sage-home/dev
Browse files Browse the repository at this point in the history
Pulling in latest dev branch
  • Loading branch information
jacobseiler authored Aug 10, 2020
2 parents 594e2dc + 39b1b6c commit dd0adda
Show file tree
Hide file tree
Showing 51 changed files with 5,359 additions and 2,426 deletions.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,20 @@ __pycache__
*egg-info*
build/
dist/
.DS_store

# Documentation with Sphinx #
docs/build
docs/make.bat

# Test data
sage_analysis/tests/test_data/generated_plots/
sage_analysis/tests/test_data/*_0
sage_analysis/tests/test_data/*.hdf5
sage_analysis/tests/test_data/*.tar
sage_analysis/tests/test_data/*.par
sage_analysis/tests/test_data/*.a_list
.hypothesis/

.mypy_cache
.coverage*
5 changes: 5 additions & 0 deletions docs/source/api/galaxy_analysis.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
sage_analysis.GalaxyAnalysis
============================

.. autoclass:: sage_analysis.GalaxyAnalysis
:members:
6 changes: 4 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,10 @@
'h5py': ('https://h5py.readthedocs.io/en/stable', None)}

# Autodoc configuration
autodoc_default_options = {'members': None,
'private-members': None}
autodoc_default_options = {
'members': None,
"special-members": "__init__",
}
autodoc_member_order = 'groupwise'
autodoc_inherit_docstrings = False

Expand Down
10 changes: 5 additions & 5 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ Maintainers

introduction
user/setting_up_sage
user/analysing_sage
user/history
user/multiple_models
user/custom_calculations
user/custom_data_classes
user/analyzing_sage
user/defining_custom_properties
user/analyzing_custom_properties
user/analyzing_custom_data

.. _api-docs:

.. toctree::
:maxdepth: 2
:caption: API Reference

api/galaxy_analysis
api/model
api/sage_hdf5
api/sage_binary
Expand Down
279 changes: 0 additions & 279 deletions docs/source/user/analysing_sage.rst

This file was deleted.

2 changes: 2 additions & 0 deletions docs/source/user/analyzing_custom_data.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Analyzing Custom Data
=====================
Loading

0 comments on commit dd0adda

Please sign in to comment.