Skip to content

Commit 3f35366

Browse files
authored
Merge pull request #90 from compgenomicslab/dev-repo
update dev repo to main
2 parents 2dd4798 + 7653387 commit 3f35366

File tree

106 files changed

+39070
-44473
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+39070
-44473
lines changed

.cache/v/cache/lastfailed

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"tests/test_alignment.py": true,
3+
"tests/test_annotate.py": true,
4+
"tests/test_emapper.py": true,
5+
"tests/test_plot.py": true,
6+
"tests/test_prune.py": true,
7+
"tests/test_taxonomic.py": true
8+
}

.github/workflows/deploy.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Deploy Sphinx docs to GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Check out the code
14+
uses: actions/checkout@v2
15+
16+
- name: Set up Python
17+
uses: actions/setup-python@v2
18+
with:
19+
python-version: '3.x'
20+
21+
- name: Install dependencies
22+
run: |
23+
python -m pip install --upgrade pip
24+
pip install sphinx sphinx-rtd-theme
25+
26+
- name: Build the documentation
27+
run: make html
28+
working-directory: ./docs
29+
30+
- name: Post-process HTML files
31+
run: python post_process_html.py
32+
working-directory: ./docs
33+
34+
- name: Deploy to GitHub Pages
35+
env:
36+
ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }}
37+
run: |
38+
cd docs/build/html
39+
git init
40+
git config user.name 'github-actions[bot]'
41+
git config user.email 'github-actions[bot]@users.noreply.github.com'
42+
git add .
43+
git commit -m "Deploy documentation"
44+
git push --force --quiet "https://${{ secrets.ACTIONS_DEPLOY_KEY }}@github.com/${{ github.repository }}.git" master:gh-pages

.gitignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
*.pyc
22
dist/
33
dist/*
4-
build/
5-
build/*
4+
# Ignore build artifacts
5+
/build/
6+
/build/*
7+
/docs/build/
8+
/docs/build/*
9+
# Ignore Sphinx static files (if necessary)
10+
docs/source/_static/
11+
docs/source/_templates/
612
*.egg-info/
713
__pycache__/
814
__pycache__/*

README.md

Lines changed: 1109 additions & 459 deletions
Large diffs are not rendered by default.

docs/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = source
9+
BUILDDIR = build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
534 KB
Binary file not shown.
729 KB
Binary file not shown.

docs/build/doctrees/index.doctree

4.95 KB
Binary file not shown.

docs/build/html/.buildinfo

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Sphinx build info version 1
2+
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3+
config: 71c3667afe7096ee3bfc9c1417ac3e30
4+
tags: 645f666f9bcd5a90fca523b33c5a78b7

0 commit comments

Comments
 (0)