-
Notifications
You must be signed in to change notification settings - Fork 12
Add folder description #489
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
Open
lionelkusch
wants to merge
11
commits into
mind-inria:main
Choose a base branch
from
lionelkusch:PR_doc_dev_org
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 2 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
f562c2b
add folder description
lionelkusch 746811c
fix spelling
lionelkusch cafecab
Update tools/documentation_developer/folder_organization.rst
lionelkusch 0f1dfc3
Update tools/documentation_developer/folder_organization.rst
lionelkusch 7802a69
Update tools/documentation_developer/folder_organization.rst
lionelkusch 1ae09cd
Update tools/documentation_developer/folder_organization.rst
lionelkusch 9c4892c
Update tools/documentation_developer/folder_organization.rst
lionelkusch f77608e
Update tools/documentation_developer/folder_organization.rst
lionelkusch 6a405d1
Update tools/documentation_developer/folder_organization.rst
lionelkusch 07c2168
improve documentation
lionelkusch d3543bc
Merge branch 'main' into PR_doc_dev_org
lionelkusch 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 hidden or 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,96 @@ | ||
| .. _folder_organization: | ||
|
|
||
| =================== | ||
| Folder Organization | ||
| =================== | ||
|
|
||
| 📦hidimstat | ||
| ┣ 📜.gitignore (file to ignore in the git) | ||
| ┣ 📜CONTRIBUTING.rst (page guide for your project's contributors) | ||
| ┣ 📜LICENSE (license detail) | ||
| ┣ 📜README.rst (page for introducing and explaining the project) | ||
| ┣ 📜codecov.yml (configuration file for CodeCov) | ||
| ┗ 📜pyproject.toml (configuration file for python project) | ||
| ┣ 📂.circleci (folder for circleci) | ||
lionelkusch marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ┃ ┗ 📜config.yml (configuration file for circleci) | ||
lionelkusch marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ┣ 📂.github (folder for github) | ||
lionelkusch marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ┃ ┣ 📂workflows (folder for define the github action) | ||
lionelkusch marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ┃ ┃ ┣ 📜call_linter.yml (workflow for running the linter) | ||
| ┃ ┃ ┣ 📜call_publish_result.yml(workflow for sending the results to CodeCov and CircleCi) | ||
lionelkusch marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ┃ ┃ ┣ 📜call_test_minimal.yml (workflow for running test with minimal version) | ||
| ┃ ┃ ┣ 📜call_test_package.yml (workflow for running tests) | ||
| ┃ ┃ ┣ 📜ci.yml (Action for run all the workflow from main) | ||
| ┃ ┃ ┣ 📜ci_test.yml (Action for testing a modification of CI) | ||
| ┃ ┃ ┗ 📜circleci-artifact.yml (Action for getting the link to CircleCI) | ||
| ┃ ┗ 📜dependabot.yml (configuration of dependabot) | ||
| ┣ 📂docs (folder for the documentation) | ||
| ┃ ┣ 📂(T)_build (folder which contains the generated documentation) | ||
| ┃ ┃ ┣ 📂(T)doctrees (contains the generated tree) | ||
| ┃ ┃ ┗ 📂(T)html (contains the generated HTML) | ||
| ┃ ┣ 📂src (folder with the documentation page) | ||
| ┃ ┃ ┣ 📂dev (redirection to tools/documentation_developer) | ||
| ┃ ┃ ┣ 📂(T)generated (contains the geneterated file for API and examples) | ||
| ┃ ┃ ┣ 📜api.rst (page for API) | ||
| ┃ ┃ ┣ 📜index.rst (page for the index) | ||
| ┃ ┃ ┣ 📜user_guide.rst (page of the user guide) | ||
| ┃ ┃ ┗ 📜.....rst (other pages of the documentation) | ||
| ┃ ┣ 📂tools (folder for configuration of Sphinx) | ||
| ┃ ┃ ┣ 📂_static (folder for static part of html) | ||
| ┃ ┃ ┃ ┣ 📜logo.png (logo of HiDimStat) | ||
| ┃ ┃ ┃ ┗ 📜style.css (css for the library) | ||
| ┃ ┃ ┣ 📂_templates (Folder of template for autodoc Sphinx) | ||
| ┃ ┃ ┃ ┣ 📜class.rst (Template for classes) | ||
| ┃ ┃ ┃ ┗ 📜function.rst (Template for function) | ||
| ┃ ┃ ┣ 📜conf.py (configuration of Sphinx) | ||
| ┃ ┃ ┣ 📜references.bib (reference for the citation) | ||
| ┃ ┃ ┗ 📜utils.py (functions use in the configuration file) | ||
| ┃ ┗ 📜Makefile (Makefile for generated the documentation) | ||
| ┣ 📂examples (Folder contains all the examples) | ||
| ┃ ┣ 📜README.txt (index of examples for sphinx-gallery) | ||
| ┃ ┗ 📜plot_....py () (examples) | ||
| ┣ 📂src (folder containing the source code) | ||
| ┃ ┗ 📂hidimstat (code of the library) | ||
| ┃ ┃ ┣ 📂_utils (folder for private functions) | ||
| ┃ ┃ ┃ ┣ 📜__init__.py | ||
| ┃ ┃ ┃ ┣ 📜bootstrap.py (function for bootstrap) | ||
lionelkusch marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| ┃ ┃ ┃ ┣ 📜docstring.py (function for docstring) | ||
| ┃ ┃ ┃ ┣ 📜exception.py (function for the exceptions) | ||
| ┃ ┃ ┃ ┣ 📜regression.py (function for Lasso regression) | ||
| ┃ ┃ ┃ ┣ 📜scenario.py (function for generating data) | ||
| ┃ ┃ ┃ ┗ 📜utils.py (support functions) | ||
| ┃ ┃ ┣ 📂statistical_tools (folder which contains the statistical function: | ||
| ┃ ┃ ┃ ┣ 📜__init__.py test, sampler, aggregation, fdr) | ||
| ┃ ┃ ┃ ┣ 📜aggregation.py | ||
| ┃ ┃ ┃ ┣ 📜multiple_testing.py | ||
| ┃ ┃ ┃ ┣ 📜sampler.....py | ||
| ┃ ┃ ┃ ┗ 📜p_values.py | ||
| ┃ ┃ ┣ 📜__init__.py (definition of functions and classes) | ||
| ┃ ┃ ┣ 📜(T)_version.py (version of the library) | ||
| ┃ ┃ ┣ 📜base_....py (Abstract and Mixin classes) | ||
| ┃ ┃ ┗ 📜.........py (Conditional feature importance) | ||
| ┣ 📂test (folder for the tests) | ||
| ┃ ┣ 📂_utils (test for function in utils) | ||
| ┃ ┃ ┗ 📜test_.....py | ||
| ┃ ┣ 📂baseline_plots (image of references) | ||
| ┃ ┃ ┗ 📜test_.......png | ||
| ┃ ┣ 📂statistical_tools (test for function in statistical_tools) | ||
| ┃ ┃ ┗ 📜test_........py | ||
| ┃ ┣ 📜__init__.py | ||
| ┃ ┣ 📜conftest.py (configuration tests) | ||
| ┃ ┗ 📜test_..........py | ||
| ┣ 📂tools (folder for develloper tools) | ||
| ┃ ┣ 📂documentation (tools for generatring and debug documentation) | ||
| ┃ ┃ ┣ 📂circleci (script used by circleci for the documentation) | ||
| ┃ ┃ ┃ ┣ 📜build_doc.sh (create the documentation) | ||
| ┃ ┃ ┃ ┣ 📜checkout_merge_commit.sh (checkout to right commit) | ||
| ┃ ┃ ┃ ┣ 📜push_doc.sh (push the documentation in git repository) | ||
| ┃ ┃ ┃ ┗ 📜setup_virtual_environment.sh (setup the environment for the generation) | ||
| ┃ ┃ ┗ 📂debugger_script (folder with script for helping debugging) | ||
| ┃ ┃ ┃ ┗ 📜.....py | ||
| ┃ ┣ 📂documentation_developer (Documentation for develloper) | ||
| ┃ ┃ ┣ 📜index.rst (index of documentation) | ||
| ┃ ┃ ┗ 📜.......rst | ||
| ┃ ┗ 📂examples (Script for debugging the generation of examples) | ||
| ┃ ┃ ┗ 📂debugger_script | ||
| ┃ ┃ ┃ ┗ 📜try_reproducibility.py | ||
|
|
||
This file contains hidden or 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
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.
Uh oh!
There was an error while loading. Please reload this page.