Skip to content

Commit

Permalink
apply black to ppanggolin python code
Browse files Browse the repository at this point in the history
  • Loading branch information
JeanMainguy committed Oct 29, 2024
1 parent 1fd1092 commit 70155bd
Show file tree
Hide file tree
Showing 67 changed files with 22,933 additions and 6,411 deletions.
24 changes: 12 additions & 12 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,14 @@

# -- Project information -----------------------------------------------------

project = 'PPanGGOLiN'
copyright = '2023, LABGeM'
author = 'Jérôme Arnoux'
project = "PPanGGOLiN"
copyright = "2023, LABGeM"
author = "Jérôme Arnoux"

# The full version, including alpha/beta/rc tags
release = open(Path(__file__).resolve().parents[1]/"VERSION").read().rstrip() # Get release number in the VERSION file
release = (
open(Path(__file__).resolve().parents[1] / "VERSION").read().rstrip()
) # Get release number in the VERSION file


# -- General configuration ---------------------------------------------------
Expand All @@ -33,21 +35,19 @@
"sphinx.ext.duration",
"sphinx.ext.autosectionlabel",
"sphinx.ext.autodoc",
'sphinx_search.extension',
'sphinxcontrib.mermaid'
"sphinx_search.extension",
"sphinxcontrib.mermaid",
]


source_suffix = {
'.md': 'markdown'
}
source_suffix = {".md": "markdown"}

# Prefix document path to section labels, to use:
# `path/to/file:heading` instead of just `heading`
autosectionlabel_prefix_document = True

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
Expand All @@ -60,9 +60,9 @@
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'
html_theme = "sphinx_rtd_theme"

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ["_static"]
2 changes: 1 addition & 1 deletion ppanggolin/RGP/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .genomicIsland import subparser, launch
from .spot import *
from . import rgp_cluster
from . import rgp_cluster
Loading

0 comments on commit 70155bd

Please sign in to comment.