-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* mv from readthedocs to mkdocs * update docs
- Loading branch information
Showing
95 changed files
with
790 additions
and
454 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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,40 @@ | ||
name: documentation | ||
on: | ||
push: | ||
paths: | ||
- 'docs/**' | ||
- mkdocs.yml | ||
pull_request: | ||
branches: [main, master] | ||
paths: | ||
- 'docs/**' | ||
- mkdocs.yml | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
permissions: | ||
contents: write | ||
jobs: | ||
deploy: | ||
# avoid to run twice push and PR | ||
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.x | ||
- uses: actions/cache@v2 | ||
with: | ||
key: ${{ github.ref }} | ||
path: .cache | ||
- run: pip install mkdocs-material | ||
- run: pip install pymdown-extensions | ||
- run: pip install mkdocs-minify-plugin | ||
- run: pip install mkdocs-macros-plugin | ||
- run: pip install mkdocs-embed-external-markdown | ||
- run: pip install mkdocs-table-reader-plugin | ||
- run: mkdocs gh-deploy --force |
This file was deleted.
Oops, something went wrong.
This file contains 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,52 @@ | ||
### Mkdocs | ||
|
||
#### Welcome to MkDocs | ||
|
||
For full documentation visit [mkdocs.org](https://www.mkdocs.org). | ||
For full documentation about the [material mkdocs theme](https://squidfunk.github.io/mkdocs-material/). | ||
|
||
#### Installation | ||
|
||
##### Manual | ||
|
||
As prerequisite you need python >=3.8 and pip. | ||
|
||
Install Mkdocs: | ||
|
||
`pip install mkdocs` | ||
|
||
For the theme: | ||
`pip install mkdocs-material` | ||
|
||
For the extensions: | ||
`pip install pymdown-extensions` | ||
|
||
For the plugins: | ||
`pip install mkdocs-minify-plugin` | ||
`pip install mkdocs-macros-plugin` | ||
`pip install mkdocs-embed-external-markdown` | ||
|
||
##### Conda | ||
|
||
Clone the repository and move in it. | ||
Then install all dependencies using conda and the `conda_env.yml` shipped with this repo: | ||
|
||
``` | ||
conda env create -f conda_env.yml | ||
``` | ||
|
||
Activate the environment and you are good: | ||
|
||
``` | ||
conda activate education | ||
``` | ||
|
||
#### Testing and building the website | ||
|
||
|
||
* `mkdocs serve` - Start the live-reloading docs server, to test the site locally (http://127.0.0.1:8000/). | ||
* `mkdocs gh-deploy` - Deploys the site on github pages. | ||
|
||
* `mkdocs build` - Build the documentation site. | ||
* `mkdocs new [dir-name]` - Create a new project. | ||
* `mkdocs -h` - Print help message and exit. |
This file contains 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
This file contains 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
This file contains 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
This file contains 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,7 @@ | ||
# How to aggregate several annotations? | ||
|
||
There are two scripts in AGAT in order to aggregate annotations. They do not behave the same way. Find below some explanation on their behaviors. | ||
|
||
![](../img/aggregate_annotations.png "example") | ||
|
||
|
This file contains 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,7 @@ | ||
# How to extract sequences? | ||
|
||
You can use the script agat_sp_extract_sequences.pl. Find below exmaples on how to use this script. | ||
|
||
![](../img/agat_sp_extract_sequences_2.png "gff_example") | ||
|
||
![](../img/agat_sp_extract_sequences_1.png "extraction_example") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains 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,16 @@ | ||
Welcome to AGAT's documentation! | ||
================================ | ||
|
||
AGAT: Another GTF/GFF Analysis Toolkit | ||
---------------------------------------- | ||
|
||
**A GFF/GTF toolkit allowing you to perform almost everything you might want to achieve ^^** | ||
|
||
The GTF/GFF formats are 9-column text formats used to describe and represent genomic features. | ||
The formats have quite evolved since 1997, and despite well-defined specifications existing nowadays they have a great flexibility allowing holding wide variety of information. | ||
This flexibility has a drawback aspect, there is an incredible amount of flavor of the formats: GFF / GFF1 / GFF2 / GFF2.5 / GFF3 / GTF / GTF2 / GTF2.1 / GTF2.2 / GTF2.5 / GTF3 | ||
|
||
It's often hard to understand and differentiate all GFF/GTF formats/flavors. Many tools using GTF/GFF formats fails due to specific expectations. | ||
AGAT is a suite of tools able to deal with any GTF/GFF formats and perform most of the possible tasks you would need. | ||
|
||
![](img/wordcloud.png){ width=600px } |
Oops, something went wrong.