Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesli124 committed Aug 11, 2024
1 parent a900fa2 commit a15a15e
Show file tree
Hide file tree
Showing 32 changed files with 542 additions and 480 deletions.
2 changes: 1 addition & 1 deletion _sources/documentation/user_guide/features.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Features
=========================================

**FinaleToolkit** has support for the following cell-free DNA features:
**FinaleToolkit** has support for the following cell-free DNA fragmentomic features:


-----------------------
Expand Down
4 changes: 2 additions & 2 deletions _sources/documentation/user_guide/quickstart.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ FinaleToolkit has the following modules:
* `cli` - command line interface
* `utils` - utilities that simplify feature generation

You can load *all* of the functions by using the following command::
You can load *all* fragmentomics functions by using the following command::

>>> import finaletoolkit as ft
>>> import finaletoolkit.frag as ft
If you want to load a *specific* function, you can do so by using the following:

Expand Down
1 change: 1 addition & 0 deletions _sources/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ FinaleToolkit (FragmentatIoN AnaLysis of cEll-free DNA Toolkit) is a package and
- **PyPI:** https://pypi.org/project/finaletoolkit/
- **Documentation:** https://epifluidlab.github.io/finaletoolkit-docs/documentation
- **Source code:** https://github.com/epifluidlab/finaletoolkit
- **Changelog:** https://github.com/epifluidlab/FinaleToolkit/blob/main/CHANGELOG.md
- **Bug reports:** https://github.com/epifluidlab/finaletoolkit/issues


Expand Down
24 changes: 23 additions & 1 deletion _static/basic.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Sphinx stylesheet -- basic theme.
*
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down Expand Up @@ -237,6 +237,10 @@ a.headerlink {
visibility: hidden;
}

a:visited {
color: #551A8B;
}

h1:hover > a.headerlink,
h2:hover > a.headerlink,
h3:hover > a.headerlink,
Expand Down Expand Up @@ -670,6 +674,16 @@ dd {
margin-left: 30px;
}

.sig dd {
margin-top: 0px;
margin-bottom: 0px;
}

.sig dl {
margin-top: 0px;
margin-bottom: 0px;
}

dl > dd:last-child,
dl > dd:last-child > :last-child {
margin-bottom: 0;
Expand Down Expand Up @@ -738,6 +752,14 @@ abbr, acronym {
cursor: help;
}

.translated {
background-color: rgba(207, 255, 207, 0.2)
}

.untranslated {
background-color: rgba(255, 207, 207, 0.2)
}

/* -- code displays --------------------------------------------------------- */

pre {
Expand Down
2 changes: 1 addition & 1 deletion _static/doctools.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* Base JavaScript utilities for all Sphinx HTML documentation.
*
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
Expand Down
3 changes: 1 addition & 2 deletions _static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
const DOCUMENTATION_OPTIONS = {
VERSION: '',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
Expand Down
4 changes: 2 additions & 2 deletions _static/language_data.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
* This script contains the language-specific data used by searchtools.js,
* namely the list of stopwords, stemmer, scorer and splitter.
*
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/

var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];


/* Non-minified version is copied as a separate JS file, is available */
/* Non-minified version is copied as a separate JS file, if available */

/**
* Porter Stemmer
Expand Down
Loading

0 comments on commit a15a15e

Please sign in to comment.